mirror of
https://github.com/cupcakearmy/nicco.io.git
synced 2024-11-10 21:34:10 +01:00
71 lines
1.6 KiB
JavaScript
71 lines
1.6 KiB
JavaScript
import resolve from '@rollup/plugin-node-resolve'
|
|
import replace from '@rollup/plugin-replace'
|
|
import commonjs from '@rollup/plugin-commonjs'
|
|
import svelte from 'rollup-plugin-svelte'
|
|
import { terser } from 'rollup-plugin-terser'
|
|
import config from 'sapper/config/rollup.js'
|
|
import pkg from './package.json'
|
|
|
|
const mode = process.env.NODE_ENV
|
|
const dev = mode === 'development'
|
|
|
|
const onwarn = (warning, onwarn) =>
|
|
(warning.code === 'MISSING_EXPORT' && /'preload'/.test(warning.message)) ||
|
|
(warning.code === 'CIRCULAR_DEPENDENCY' && /[/\\]@sapper[/\\]/.test(warning.message)) ||
|
|
onwarn(warning)
|
|
|
|
export default {
|
|
client: {
|
|
input: config.client.input(),
|
|
output: config.client.output(),
|
|
plugins: [
|
|
replace({
|
|
'process.browser': true,
|
|
'process.env.NODE_ENV': JSON.stringify(mode),
|
|
}),
|
|
svelte({
|
|
dev,
|
|
hydratable: true,
|
|
emitCss: true,
|
|
}),
|
|
resolve({
|
|
browser: true,
|
|
dedupe: ['svelte'],
|
|
}),
|
|
commonjs(),
|
|
|
|
!dev &&
|
|
terser({
|
|
module: true,
|
|
}),
|
|
],
|
|
|
|
preserveEntrySignatures: false,
|
|
onwarn,
|
|
},
|
|
|
|
server: {
|
|
input: config.server.input(),
|
|
output: config.server.output(),
|
|
plugins: [
|
|
replace({
|
|
'process.browser': false,
|
|
'process.env.NODE_ENV': JSON.stringify(mode),
|
|
}),
|
|
svelte({
|
|
generate: 'ssr',
|
|
hydratable: true,
|
|
dev,
|
|
}),
|
|
resolve({
|
|
dedupe: ['svelte'],
|
|
}),
|
|
commonjs(),
|
|
],
|
|
external: Object.keys(pkg.dependencies).concat(require('module').builtinModules),
|
|
|
|
preserveEntrySignatures: 'strict',
|
|
onwarn,
|
|
},
|
|
}
|