當(dāng)參數(shù)越來越多,使用命令行就會越來越麻煩迹淌。
為避免反復(fù)輸入命令行參數(shù),我們可以創(chuàng)建一個配置文件保存參數(shù)。配置文件用 JavaScript 編寫巢钓,比命令行參數(shù)更靈活。
在項目根目錄創(chuàng)建 rollup.config.js
文件疗垛,增加如下代碼:
export default {
entry: 'src/main.js',
format: 'cjs',
dest: 'bundle.js'
};
為了使用這個配置文件症汹,我們需要使用 --config
或者 -c
選項:
rm bundle.js
rollup -c
也可以使用命令行參數(shù)覆蓋配置文件的對應(yīng)選項:
rollup -c -o bundle-2.js
還可以指定不同的配置文件:
rollup --config rollup.config.dev.js
rollup --config rollup.config.prod.js
下一篇:npm run build