链接指令到全局
npm link
在测试项目跟目录新建 xpack.config.js 配置文件
module.exports = {
entry: './src/index.js',
output: {
filename: 'xpack_bundle.js',
},
};
package.json
"scripts": {
"build": "xpack",
},
开始打包
npm run build
链接指令到全局
npm link
在测试项目跟目录新建 xpack.config.js 配置文件
module.exports = {
entry: './src/index.js',
output: {
filename: 'xpack_bundle.js',
},
};
package.json
"scripts": {
"build": "xpack",
},
开始打包
npm run build