-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrollup.config.mjs
76 lines (72 loc) · 2.16 KB
/
rollup.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// @ts-check
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import typescript from "@rollup/plugin-typescript";
import terser from "@rollup/plugin-terser";
import json from "@rollup/plugin-json";
import external from "rollup-plugin-peer-deps-external";
import dts from "rollup-plugin-dts";
import replace from "@rollup/plugin-replace";
import serve from "rollup-plugin-serve";
import postcss from "rollup-plugin-postcss";
import packageJson from "./package.json" assert { type: "json" };
import tailwindcss from "tailwindcss";
import autoprefixer from "autoprefixer";
const isProd = process.env.NODE_ENV === "production";
export default [
{
input: "src/index.tsx",
output: [
{
file: packageJson.module,
format: "esm",
sourcemap: true,
inlineDynamicImports: true,
},
isProd && {
file: packageJson.main,
format: "cjs",
sourcemap: true,
inlineDynamicImports: true,
},
isProd && {
file: packageJson.browser,
format: "umd",
sourcemap: true,
name: "SaleorGraphqlPlayground",
inlineDynamicImports: true,
},
].filter((x) => x),
external: [],
plugins: [
replace({
preventAssignment: true,
values: {
"process.env.NODE_ENV": JSON.stringify("production"),
"_globalThis$process.env.NODE_ENV": JSON.stringify("production"),
"globalThis.process.env.NODE_ENV": JSON.stringify("production"),
"globalThis.process": JSON.stringify({ env: { NODE_ENV: "production" } }),
},
}),
external(),
resolve({
browser: true,
preferBuiltins: false,
}),
commonjs(),
typescript({ tsconfig: "./tsconfig.json" }),
isProd && terser(),
json(),
postcss({
extract: true,
plugins: [tailwindcss(), autoprefixer()],
}),
process.env.ROLLUP_WATCH && serve({ contentBase: "", verbose: true, open: false }),
].filter((x) => x),
},
{
input: "./dist/esm/types/index.d.ts",
output: [{ file: "dist/index.d.ts", format: "esm" }],
plugins: [dts()],
},
];