rate/www/rollup.config.js

96 lines
2.5 KiB
JavaScript
Raw Normal View History

2022-09-20 13:27:52 +00:00
import svelte from 'rollup-plugin-svelte';
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import livereload from 'rollup-plugin-livereload';
import { terser } from 'rollup-plugin-terser';
import sveltePreprocess from 'svelte-preprocess';
import typescript from '@rollup/plugin-typescript';
import css from 'rollup-plugin-css-only';
2022-10-17 22:28:19 +00:00
import replace from '@rollup/plugin-replace';
2022-09-20 13:27:52 +00:00
const production = !process.env.ROLLUP_WATCH;
function serve() {
2022-09-22 16:00:56 +00:00
let server;
2022-09-20 13:27:52 +00:00
2022-09-22 16:00:56 +00:00
function toExit() {
if (server) server.kill(0);
}
2022-09-20 13:27:52 +00:00
2022-09-22 16:00:56 +00:00
return {
writeBundle() {
if (server) return;
2022-10-10 15:01:31 +00:00
server = require('child_process').spawn(
'npm',
2022-10-17 17:15:38 +00:00
['run', 'start', '--', '--dev', '--single'],
2022-10-10 15:01:31 +00:00
{
stdio: ['ignore', 'inherit', 'inherit'],
shell: true,
},
);
2022-09-20 13:27:52 +00:00
2022-09-22 16:00:56 +00:00
process.on('SIGTERM', toExit);
process.on('exit', toExit);
2022-10-10 15:01:31 +00:00
},
2022-09-22 16:00:56 +00:00
};
2022-09-20 13:27:52 +00:00
}
export default {
2022-09-22 16:00:56 +00:00
input: 'src/main.ts',
output: {
sourcemap: true,
format: 'iife',
name: 'app',
2022-10-10 15:01:31 +00:00
file: 'public/build/bundle.js',
2022-09-22 16:00:56 +00:00
},
plugins: [
svelte({
preprocess: sveltePreprocess({ sourceMap: !production }),
compilerOptions: {
// enable run-time checks when not in production
2022-10-10 15:01:31 +00:00
dev: !production,
},
2022-09-22 16:00:56 +00:00
}),
2022-10-17 22:28:19 +00:00
typescript({
sourceMap: !production,
inlineSources: !production,
importsNotUsedAsValues: 'remove',
}),
2022-09-22 16:00:56 +00:00
// we'll extract any component CSS out into
// a separate file - better for performance
css({ output: 'bundle.css' }),
2022-09-20 13:27:52 +00:00
2022-09-22 16:00:56 +00:00
// If you have external dependencies installed from
// npm, you'll most likely need these plugins. In
// some cases you'll need additional configuration -
// consult the documentation for details:
// https://github.com/rollup/plugins/tree/master/packages/commonjs
resolve({
2022-09-29 08:50:52 +00:00
main: true,
2022-09-22 16:00:56 +00:00
browser: true,
2022-10-10 15:01:31 +00:00
dedupe: ['svelte'],
2022-09-22 16:00:56 +00:00
}),
2022-09-29 09:18:38 +00:00
commonjs(),
2022-10-17 22:28:19 +00:00
replace({
'process.env.APIURL': production ? '"/api"' : '"http://localhost:8000"',
'process.env.CORS': production ? 'false' : 'true',
2022-09-22 16:00:56 +00:00
}),
2022-09-20 13:27:52 +00:00
2022-09-22 16:00:56 +00:00
// In dev mode, call `npm run start` once
// the bundle has been generated
!production && serve(),
2022-09-20 13:27:52 +00:00
2022-09-22 16:00:56 +00:00
// Watch the `public` directory and refresh the
// browser on changes when not in production
!production && livereload('public'),
2022-09-20 13:27:52 +00:00
2022-09-22 16:00:56 +00:00
// If we're building for production (npm run build
// instead of npm run dev), minify
2022-10-10 15:01:31 +00:00
production && terser(),
2022-09-22 16:00:56 +00:00
],
watch: {
2022-10-10 15:01:31 +00:00
clearScreen: false,
},
2022-09-20 13:27:52 +00:00
};