From: XhmikosR Date: Fri, 1 Mar 2019 22:50:31 +0000 (+0200) Subject: Tweak rollup.config.js X-Git-Tag: v5.0.0-alpha1~1223 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8684b55b8622473eca18b89d52cd1bc38bc7ef2;p=thirdparty%2Fbootstrap.git Tweak rollup.config.js --- diff --git a/build/rollup.config.js b/build/rollup.config.js index 9475844c92..e04e9d8047 100644 --- a/build/rollup.config.js +++ b/build/rollup.config.js @@ -8,8 +8,7 @@ const banner = require('./banner.js') const BUNDLE = process.env.BUNDLE === 'true' const ESM = process.env.ESM === 'true' -let fileDest = `bootstrap${ESM ? '.esm' : ''}.js` -const indexPath = ESM ? '../js/index.esm.js' : '../js/index.umd.js' +let fileDest = `bootstrap${ESM ? '.esm' : ''}` const external = ['popper.js'] const plugins = [ babel({ @@ -30,7 +29,7 @@ const globals = { } if (BUNDLE) { - fileDest = `bootstrap${ESM ? '.esm' : ''}.bundle.js` + fileDest += '.bundle' // Remove last entry in external array to bundle Popper external.pop() delete globals['popper.js'] @@ -38,10 +37,10 @@ if (BUNDLE) { } const rollupConfig = { - input: path.resolve(__dirname, indexPath), + input: path.resolve(__dirname, `../js/index.${ESM ? 'esm' : 'umd'}.js`), output: { banner, - file: path.resolve(__dirname, `../dist/js/${fileDest}`), + file: path.resolve(__dirname, `../dist/js/${fileDest}.js`), format: ESM ? 'esm' : 'umd', globals },