generated from kickstartDS/ds-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.mjs
78 lines (76 loc) · 1.86 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
77
78
import path from "node:path";
import ts from "rollup-plugin-ts";
import copy from "rollup-plugin-copy";
import fg from "fast-glob";
import { paramCase } from "change-case";
import { nodeExternals } from "rollup-plugin-node-externals";
import postcssUrl from "postcss-url";
import scss from "./scripts/rollupPluginScss.js";
const componentFiles = fg.sync([
"src/components/**/*Component.(t|j)sx",
"src/components/Providers.(t|j)sx",
"src/components/cms/index.ts",
]);
const componentEntryPoints = Object.fromEntries(
componentFiles.map((fileName) => [
"components/" +
paramCase(
path.basename(fileName, path.extname(fileName)).replace("Component", "")
) +
"/index",
fileName,
])
);
const clientJsFiles = fg.sync(["src/**/*.client.(t|j)s"]);
const clientJsEntryPoints = Object.fromEntries(
clientJsFiles.map((fileName) => [
path.join(
path.relative("src", path.dirname(fileName)),
path.basename(fileName, path.extname(fileName))
),
fileName,
])
);
export default {
input: {
...componentEntryPoints,
...clientJsEntryPoints,
"tokens/themes.css": "src/themes/themes.scss",
},
output: {
dir: "dist",
format: "es",
},
plugins: [
nodeExternals(),
ts(),
scss({
postcssPlugins: [
postcssUrl({
url: "rebase",
assetsPath: process.cwd(),
}),
],
}),
copy({
targets: [
{
src: "src/components/*/*.schema?(.dereffed).json",
dest: "dist/components",
rename(name, extension) {
const componentName = name.split(".")[0];
return `${componentName}/${name}.${extension}`;
},
},
{
src: "src/token/*.{js,css,html}",
dest: "dist/tokens",
},
{
src: "static",
dest: "dist",
},
],
}),
],
};