o2team / athena2

Build tool based on Webpack
MIT License
214 stars 38 forks source link

app.config.js 的 moduleList 修改建议 #11

Open leeenx opened 6 years ago

leeenx commented 6 years ago

在使用过程中发现,app.config.js 文件下的 「muduleList」项仍然采用 athena1 的方式,把所有的模块放在一行,这不利于团队Git管理。希望一个模块占一行,如下:

moduleList: ['common','m1'],

改成:

moduleList: [
    'common',
    'm1', 
],