我有一堆here中所述的webpack入口点:
module.exports = {
entry: {
pageOne: './src/pageOne.js’,
pageTwo: './src/pageTwo.js’,
pageThree: './src/pageThree.js’
}
}
条目本身导入各种模块。 例如。 pageOne.js 导入 module1.js
我还使用skeleton loader处理原始的javascript内容( pageOne.js,pageTwo.js ,…)
此加载程序回调函数的“ this”是指“loader context”
我的问题: 所以现在我在回调中有了文件内容(例如 module1.js 的文件)及其相应的加载器上下文。但是我需要知道 module1.js 的(原始/父)条目名称。因此,对于 module1.js ,它应该告诉我它是原始 pageOne 条目名称的一部分。有可能吗?