...
|
...
|
@@ -53,13 +53,13 @@ const getEntries = () => { |
|
|
|
|
|
// 构建各模块子页面JS
|
|
|
// 新的生成规则 module/page/index.js
|
|
|
// shelljs.ls(path.join(__dirname, '../public/js/**/index.js')).forEach((f) => {
|
|
|
// const dir = _.slice(f.split('/'), -3); // [modulename, page, index.js]
|
|
|
shelljs.ls(path.join(__dirname, '../public/js/**/index.js')).forEach((f) => {
|
|
|
const dir = _.slice(f.split('/'), -3); // [modulename, page, index.js]
|
|
|
|
|
|
// // Important
|
|
|
// // 生成规则:module.page: './js/module/page/index.js'
|
|
|
// entries[`${dir[0]}.${dir[1]}`] = path.join(__dirname, `../public/js/${dir.join('/')}`);
|
|
|
// });
|
|
|
// Important
|
|
|
// 生成规则:module.page: './js/module/page/index.js'
|
|
|
entries[`${dir[0]}.${dir[1]}`] = path.join(__dirname, `../public/js/${dir.join('/')}`);
|
|
|
});
|
|
|
|
|
|
// 老的生成规则module.page.js
|
|
|
shelljs.ls(path.join(__dirname, '../public/js/**/*.page.js')).forEach((f) => {
|
...
|
...
|
|