mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00

* chore: add extension templates * feat: add create-kunkun and cli package * fix: cli and create-kunkun package location * fix: cli package test * ci: run test for CI pipeline only on Linux The most important E2E test is run with docker, Linux anyways, no need to run on Mac and Windows
33 lines
809 B
JavaScript
33 lines
809 B
JavaScript
import commonjs from "@rollup/plugin-commonjs"
|
|
import json from "@rollup/plugin-json"
|
|
import resolve from "@rollup/plugin-node-resolve"
|
|
import replace from "@rollup/plugin-replace"
|
|
import terser from "@rollup/plugin-terser"
|
|
import typescript from "@rollup/plugin-typescript"
|
|
import { visualizer } from "rollup-plugin-visualizer"
|
|
|
|
/** @type {import('rollup').RollupOptions} */
|
|
const config = {
|
|
input: "index.ts", // Path to your worker file
|
|
output: {
|
|
file: "dist/index.cjs",
|
|
format: "cjs"
|
|
},
|
|
plugins: [
|
|
replace({
|
|
preventAssignment: true,
|
|
"process.env.NODE_ENV": JSON.stringify(process.env.NODE_ENV || "production")
|
|
}),
|
|
json(),
|
|
typescript(),
|
|
resolve({
|
|
preferBuiltins: true
|
|
}),
|
|
commonjs(),
|
|
terser(),
|
|
visualizer()
|
|
]
|
|
}
|
|
|
|
export default config
|