diff --git a/rollup.config.js b/rollup.config.js index b722185..130bac9 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -4,7 +4,12 @@ import terser from '@rollup/plugin-terser' export default [ { - input: 'scripts/module.js', + input: { + include: [ + 'scripts/*.js', + 'scripts/*/*.js' + ] + }, plugins: [ commonjs(), resolve({ browser: true }) @@ -19,4 +24,4 @@ export default [ sourcemap: true } } -] \ No newline at end of file +]