mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
import { builtinModules } from "module";
|
|
|
|
import typescript from "@rollup/plugin-typescript";
|
|
import resolve from "@rollup/plugin-node-resolve";
|
|
// import terser from "@rollup/plugin-terser";
|
|
|
|
/**
|
|
* Create a base rollup config
|
|
* @param {Record<string,any>} pkg Imported package.json
|
|
* @param {string[]} external Imported package.json
|
|
* @returns {import('rollup').RollupOptions}
|
|
*/
|
|
export function createConfig({ input = "index.ts", pkg, external = [] }) {
|
|
return [
|
|
{
|
|
input,
|
|
external: Object.keys(pkg.dependencies || {})
|
|
.concat(Object.keys(pkg.peerDependencies || {}))
|
|
.concat(builtinModules)
|
|
.concat(external),
|
|
onwarn: (warning) => {
|
|
throw Object.assign(new Error(), warning);
|
|
},
|
|
strictDeprecations: true,
|
|
output: {
|
|
file: pkg.module,
|
|
format: "es",
|
|
sourcemap: true,
|
|
},
|
|
plugins: [typescript({ sourceMap: true })],
|
|
},
|
|
{
|
|
input,
|
|
onwarn: (warning) => {
|
|
throw Object.assign(new Error(), warning);
|
|
},
|
|
strictDeprecations: true,
|
|
output: {
|
|
file: pkg.browser,
|
|
format: "es",
|
|
sourcemap: true,
|
|
entryFileNames: "[name].min.js",
|
|
},
|
|
plugins: [
|
|
resolve(),
|
|
// terser(),
|
|
typescript({ sourceMap: true }),
|
|
],
|
|
},
|
|
];
|
|
}
|