-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
executable file
·97 lines (89 loc) · 2.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import babel from "@rollup/plugin-babel";
import commonjs from "@rollup/plugin-commonjs";
import json from "@rollup/plugin-json";
import nodeResolve from "@rollup/plugin-node-resolve";
import typescript from "@rollup/plugin-typescript";
import fs from "fs";
import { terser } from "rollup-plugin-terser";
import stylex from "@stylexjs/rollup-plugin";
import dts from 'rollup-plugin-dts';
import styleXPlugin from "@stylexjs/babel-plugin";
import path from "path";
import { fileURLToPath } from 'url';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const packageJson = JSON.parse(fs.readFileSync("./package.json", "utf-8"));
const extensions = [".js", ".jsx", ".ts", ".tsx", ".native.js"];
const treeshake = {
moduleSideEffects: false,
propertyReadSideEffects: false,
tryCatchDeoptimization: false,
};
const external = [
"react",
"react-dom",
"stylex",
"react-native-web",
"react-native"
];
const globals = {
react: "React",
"react-dom": "ReactDOM",
"react-native": "ReactNative",
"react-native-web": "ReactNativeWeb",
};
const makeExternalPredicate = externalArr => {
if (externalArr.length === 0) {
return () => false;
}
const pattern = new RegExp(`^(${externalArr.join("|")})($|/)`);
return id => pattern.test(id);
};
export default {
input: "src/index.tsx", // Your entry point
output: [
{
file: packageJson.main,
format: "umd",
name: "DevlanderHigherOrderComponents", // Replace with your library's name
globals: globals,
sourcemap: true,
},
{
file: packageJson.module,
format: "esm",
globals: globals,
sourcemap: true,
}
],
external: makeExternalPredicate(external),
plugins: [
nodeResolve({
extensions,
preferBuiltins: true,
}),
commonjs({
include: /node_modules/,
extensions,
}),
babel({
extensions,
babelHelpers: "bundled",
exclude: /node_modules/,
presets: [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript",
],
}),
typescript(),
json(),
terser(), // Use terser for minification
stylex(), // Add stylex plugin
{
treeshake,
input: packageJson.types,
output: [{ file: 'dist/index.d.ts', format: 'esm' }],
plugins: [dts()],
},
],
};