mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-10 15:32:27 +03:00
48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
const { rollupVirtual } = require('./plugins');
|
|
const rollupPluginClean = require('../plugins/clean');
|
|
const rollupPluginCopy = require('../plugins/copy');
|
|
const rollupPluginPackageJson = require('../plugins/packageJson');
|
|
|
|
module.exports = (_, options) => {
|
|
const { project, verbose, clean, copy, outDir, projectDir, extractPackageJson } = options;
|
|
|
|
return {
|
|
input: 'preBuild',
|
|
onwarn: (warning, warn) => {
|
|
if (warning.code !== 'EMPTY_BUNDLE') {
|
|
warn(warning);
|
|
}
|
|
},
|
|
output: {
|
|
dir: outDir,
|
|
},
|
|
plugins: [
|
|
verbose && {
|
|
name: 'PROJECT',
|
|
buildStart() {
|
|
// eslint-disable-next-line no-console
|
|
console.log('');
|
|
// eslint-disable-next-line no-console
|
|
console.log('PROJECT : ', project);
|
|
// eslint-disable-next-line no-console
|
|
console.log('OPTIONS : ', options);
|
|
},
|
|
},
|
|
clean && outDir !== projectDir && rollupPluginClean({ paths: [outDir], verbose }),
|
|
extractPackageJson && rollupPluginPackageJson(extractPackageJson),
|
|
copy && rollupPluginCopy({ paths: copy, verbose }),
|
|
rollupVirtual({
|
|
preBuild: '',
|
|
}),
|
|
{
|
|
generateBundle(__, bundle) {
|
|
const virtualEntry = Object.keys(bundle).find((key) => key.includes('virtual'));
|
|
if (virtualEntry) {
|
|
delete bundle[virtualEntry];
|
|
}
|
|
},
|
|
},
|
|
].filter(Boolean),
|
|
};
|
|
};
|