启动单模块:
npm run serve --moudle=index #index模块
启动所有模块:
npm run serve
打包单模块:
npm run build --moudle=index
打包所有模块:
npm run build:all
说明:在package.json
中添加需要打包的模块指令,vue-cli会根据指令顺序依次打包
npm install
npm run serve
npm run build
npm run test
npm run lint