160 lines
3.7 KiB
JavaScript
160 lines
3.7 KiB
JavaScript
/*
|
|
This configuration was taken from stefanonepa's project template
|
|
Copyright (c) 2021 stefanonepa, MIT License
|
|
https://github.com/stefanonepa/svelte-component-ts
|
|
*/
|
|
|
|
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 replace from "@rollup/plugin-replace";
|
|
import babel from "@rollup/plugin-babel";
|
|
import brotli from "rollup-plugin-brotli";
|
|
|
|
import css from ".rollup/css-only";
|
|
import { serve } from ".rollup/serve";
|
|
import includeSass from ".rollup/includeSass";
|
|
import htmlMinifier from ".rollup/htmlMinifier";
|
|
|
|
const production = !process.env.ROLLUP_WATCH;
|
|
const version = process.env.VERSION || "INDEV";
|
|
|
|
const bundleName = "talon";
|
|
const bundleFile = `${bundleName}.js`;
|
|
const bundleDir = production ? "dist" : "public";
|
|
|
|
const appFile = "src/App.svelte";
|
|
const styleFile = "src/style/main.sass";
|
|
const extensions = [".svelte", ".ts", ".js", ".mjs"];
|
|
|
|
function includeCss(styles, bundle) {
|
|
const match = production ? `.shadowRoot.innerHTML="` : `.shadowRoot.innerHTML = "`;
|
|
|
|
const currentBundle = bundle[bundleFile];
|
|
currentBundle.code = currentBundle.code.replace(
|
|
match,
|
|
`${match}<style>${styles}</style>`
|
|
);
|
|
}
|
|
|
|
export default {
|
|
input: "src/index.ts",
|
|
output: [
|
|
{
|
|
sourcemap: !production,
|
|
format: "iife",
|
|
name: bundleName,
|
|
file: `${bundleDir}/${bundleFile}`,
|
|
plugins: [production && terser()],
|
|
},
|
|
],
|
|
plugins: [
|
|
htmlMinifier({
|
|
include: "*.svelte",
|
|
options: {
|
|
stripCarriageReturns: true,
|
|
trimLines: true,
|
|
trimElements: true,
|
|
normalizeWhiteSpace: true,
|
|
stripComments: false,
|
|
},
|
|
}),
|
|
|
|
svelte({
|
|
preprocess: sveltePreprocess({ sourceMap: !production }),
|
|
compilerOptions: {
|
|
dev: !production,
|
|
customElement: true,
|
|
tag: "talon-sidebar",
|
|
preserveWhitespace: false,
|
|
},
|
|
emitCss: false,
|
|
include: appFile,
|
|
}),
|
|
|
|
svelte({
|
|
preprocess: sveltePreprocess({ sourceMap: !production }),
|
|
compilerOptions: {
|
|
dev: !production,
|
|
preserveWhitespace: false,
|
|
},
|
|
emitCss: true,
|
|
exclude: appFile,
|
|
}),
|
|
|
|
css({
|
|
output(styles, styleNodes, bundle) {
|
|
includeCss(styles, bundle);
|
|
},
|
|
}),
|
|
|
|
includeSass({
|
|
file: styleFile,
|
|
outputStyle: "compressed",
|
|
output: includeCss,
|
|
}),
|
|
|
|
resolve({
|
|
browser: true,
|
|
dedupe: ["svelte"],
|
|
extensions,
|
|
}),
|
|
commonjs(),
|
|
typescript({
|
|
sourceMap: !production,
|
|
inlineSources: !production,
|
|
}),
|
|
|
|
!production && serve(),
|
|
|
|
!production && livereload(bundleDir),
|
|
|
|
// add transition into shadow dom
|
|
replace({
|
|
".ownerDocument": ".getRootNode()",
|
|
delimiters: ["", ""],
|
|
preventAssignment: true,
|
|
}),
|
|
replace({
|
|
".head.appendChild": ".appendChild",
|
|
delimiters: ["", ""],
|
|
preventAssignment: true,
|
|
}),
|
|
|
|
// replace version placeholder
|
|
replace({
|
|
__VERSION__: version,
|
|
preventAssignment: true,
|
|
}),
|
|
|
|
babel({
|
|
extensions,
|
|
exclude: "node_modules/**",
|
|
plugins: ["@babel/plugin-proposal-class-properties"],
|
|
presets: [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
modules: false,
|
|
targets: {
|
|
esmodules: true,
|
|
},
|
|
},
|
|
],
|
|
"@babel/preset-typescript",
|
|
],
|
|
babelHelpers: "bundled",
|
|
}),
|
|
|
|
brotli(),
|
|
],
|
|
watch: {
|
|
chokidar: true,
|
|
clearScreen: false,
|
|
},
|
|
external: ["./src/style/test.css"],
|
|
};
|