mirror of
https://github.com/openzim/warc2zim.git
synced 2025-10-19 22:43:16 +00:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
import path from 'path';
|
|
import url from 'url';
|
|
|
|
import { nodeResolve } from '@rollup/plugin-node-resolve'; // used to bundle node_modules code
|
|
import commonjs from '@rollup/plugin-commonjs'; // used to bundle CommonJS node_modules
|
|
import terser from '@rollup/plugin-terser'; // used to minify JS code
|
|
|
|
const __filename = url.fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const outputDir =
|
|
process.env.OUTPUT_DIR || path.join(__dirname, '../src/warc2zim/statics');
|
|
|
|
const noStrict = {
|
|
renderChunk(code) {
|
|
return code.replace("'use strict';", '');
|
|
},
|
|
};
|
|
|
|
const watchOptions = {
|
|
exclude: 'node_modules/**',
|
|
chokidar: {
|
|
alwaysStat: true,
|
|
usePolling: true,
|
|
},
|
|
};
|
|
|
|
const plugins = [nodeResolve({ preferBuiltins: false }), commonjs(), noStrict];
|
|
if (!process.env.DEV) {
|
|
plugins.push(terser());
|
|
}
|
|
|
|
export default {
|
|
input: 'src/wombatSetup.js',
|
|
output: {
|
|
name: 'wombatSetup',
|
|
file: path.join(outputDir, 'wombatSetup.js'),
|
|
sourcemap: false,
|
|
format: 'iife',
|
|
exports: 'named',
|
|
},
|
|
watch: watchOptions,
|
|
plugins: plugins,
|
|
};
|