2020-10-21 23:03:33 +01:00
|
|
|
import path from 'path';
|
|
|
|
import resolve from '@rollup/plugin-node-resolve';
|
|
|
|
import replace from '@rollup/plugin-replace';
|
|
|
|
import commonjs from '@rollup/plugin-commonjs';
|
|
|
|
import url from '@rollup/plugin-url';
|
|
|
|
import svelte from 'rollup-plugin-svelte';
|
|
|
|
import babel from '@rollup/plugin-babel';
|
|
|
|
import { terser } from 'rollup-plugin-terser';
|
2021-03-14 10:23:17 +00:00
|
|
|
import json from '@rollup/plugin-json';
|
2021-04-18 16:43:26 +01:00
|
|
|
import dynamicImportVars from '@rollup/plugin-dynamic-import-vars';
|
2021-03-14 10:23:17 +00:00
|
|
|
|
2020-10-21 23:03:33 +01:00
|
|
|
import config from 'sapper/config/rollup.js';
|
2020-11-04 04:29:45 +00:00
|
|
|
import { config as envConfig } from 'dotenv';
|
|
|
|
|
2020-10-21 23:03:33 +01:00
|
|
|
import pkg from './package.json';
|
|
|
|
|
|
|
|
const mode = process.env.NODE_ENV;
|
|
|
|
const dev = mode === 'development';
|
|
|
|
const legacy = !!process.env.SAPPER_LEGACY_BUILD;
|
|
|
|
const preprocess = require('./svelte.config').preprocess;
|
|
|
|
|
|
|
|
const onwarn = (warning, onwarn) =>
|
|
|
|
(warning.code === 'MISSING_EXPORT' && /'preload'/.test(warning.message)) ||
|
|
|
|
(warning.code === 'CIRCULAR_DEPENDENCY' && /[/\\]@sapper[/\\]/.test(warning.message)) ||
|
|
|
|
onwarn(warning);
|
|
|
|
|
2021-04-04 16:24:54 +01:00
|
|
|
const envData = {};
|
|
|
|
Object.entries(envConfig().parsed).forEach(([key, val]) => {
|
|
|
|
envData[`__paimon.env.${key}`] = `'${val}'`;
|
|
|
|
});
|
|
|
|
|
2020-10-21 23:03:33 +01:00
|
|
|
export default {
|
|
|
|
client: {
|
|
|
|
input: config.client.input(),
|
2021-03-27 10:07:16 +00:00
|
|
|
output: {
|
|
|
|
...config.client.output(),
|
|
|
|
sourcemap: dev ? 'inline' : true,
|
|
|
|
},
|
2020-10-21 23:03:33 +01:00
|
|
|
plugins: [
|
|
|
|
replace({
|
|
|
|
'process.browser': true,
|
|
|
|
'process.env.NODE_ENV': JSON.stringify(mode),
|
2021-04-04 16:24:54 +01:00
|
|
|
...envData,
|
2020-10-21 23:03:33 +01:00
|
|
|
}),
|
|
|
|
svelte({
|
2021-01-10 09:17:24 +00:00
|
|
|
compilerOptions: {
|
|
|
|
dev,
|
|
|
|
hydratable: true,
|
|
|
|
},
|
2020-10-21 23:03:33 +01:00
|
|
|
emitCss: true,
|
|
|
|
preprocess,
|
|
|
|
}),
|
|
|
|
url({
|
|
|
|
sourceDir: path.resolve(__dirname, 'src/node_modules/images'),
|
|
|
|
publicPath: '/client/',
|
|
|
|
}),
|
|
|
|
resolve({
|
|
|
|
browser: true,
|
|
|
|
dedupe: ['svelte'],
|
|
|
|
}),
|
|
|
|
commonjs(),
|
2021-03-14 10:23:17 +00:00
|
|
|
json(),
|
2021-04-18 16:43:26 +01:00
|
|
|
dynamicImportVars({
|
|
|
|
include: [
|
|
|
|
'**/*.svelte',
|
|
|
|
'**/*.json',
|
|
|
|
],
|
|
|
|
}),
|
2020-10-21 23:03:33 +01:00
|
|
|
|
|
|
|
legacy &&
|
|
|
|
babel({
|
|
|
|
extensions: ['.js', '.mjs', '.html', '.svelte'],
|
|
|
|
babelHelpers: 'runtime',
|
|
|
|
exclude: ['node_modules/@babel/**'],
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
'@babel/preset-env',
|
|
|
|
{
|
|
|
|
targets: '> 0.25%, not dead',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
|
|
|
plugins: [
|
|
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
|
|
[
|
|
|
|
'@babel/plugin-transform-runtime',
|
|
|
|
{
|
|
|
|
useESModules: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
|
|
|
|
!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),
|
2021-04-04 16:24:54 +01:00
|
|
|
...envData,
|
2020-10-21 23:03:33 +01:00
|
|
|
}),
|
|
|
|
svelte({
|
2021-01-10 09:17:24 +00:00
|
|
|
compilerOptions: {
|
|
|
|
generate: 'ssr',
|
|
|
|
hydratable: true,
|
|
|
|
dev,
|
|
|
|
},
|
2020-10-21 23:03:33 +01:00
|
|
|
preprocess,
|
|
|
|
}),
|
|
|
|
url({
|
|
|
|
sourceDir: path.resolve(__dirname, 'src/node_modules/images'),
|
|
|
|
publicPath: '/client/',
|
|
|
|
emitFiles: false, // already emitted by client build
|
|
|
|
}),
|
|
|
|
resolve({
|
|
|
|
dedupe: ['svelte'],
|
|
|
|
}),
|
|
|
|
commonjs(),
|
2021-03-14 10:23:17 +00:00
|
|
|
json(),
|
2021-04-18 16:43:26 +01:00
|
|
|
dynamicImportVars({
|
|
|
|
include: [
|
|
|
|
'**/*.svelte',
|
|
|
|
'**/*.json',
|
|
|
|
],
|
|
|
|
}),
|
2020-10-21 23:03:33 +01:00
|
|
|
],
|
|
|
|
external: Object.keys(pkg.dependencies).concat(require('module').builtinModules),
|
|
|
|
|
|
|
|
preserveEntrySignatures: 'strict',
|
|
|
|
onwarn,
|
|
|
|
},
|
|
|
|
|
2021-04-04 16:24:54 +01:00
|
|
|
serviceworker: {
|
|
|
|
input: config.serviceworker.input().replace('service-worker', 'firebase-messaging-sw'),
|
|
|
|
output: {
|
|
|
|
...config.serviceworker.output(),
|
|
|
|
file: config.serviceworker.output().file.replace('service-worker', 'firebase-messaging-sw'),
|
|
|
|
},
|
2021-04-18 16:43:26 +01:00
|
|
|
plugins: [replace(envData), resolve(), commonjs(), !dev && terser()],
|
2021-04-04 16:24:54 +01:00
|
|
|
|
|
|
|
preserveEntrySignatures: false,
|
|
|
|
onwarn,
|
|
|
|
},
|
|
|
|
|
2020-10-26 20:06:59 +00:00
|
|
|
// serviceworker: {
|
|
|
|
// input: config.serviceworker.input(),
|
|
|
|
// output: config.serviceworker.output(),
|
|
|
|
// plugins: [
|
|
|
|
// resolve(),
|
|
|
|
// replace({
|
|
|
|
// 'process.browser': true,
|
|
|
|
// 'process.env.NODE_ENV': JSON.stringify(mode),
|
|
|
|
// }),
|
|
|
|
// commonjs(),
|
|
|
|
// !dev && terser(),
|
|
|
|
// ],
|
2020-10-21 23:03:33 +01:00
|
|
|
|
2020-10-26 20:06:59 +00:00
|
|
|
// preserveEntrySignatures: false,
|
|
|
|
// onwarn,
|
|
|
|
// },
|
2020-10-21 23:03:33 +01:00
|
|
|
};
|