Skip to content

Commit 001b370

Browse files
committed
feat: add rollup
1 parent d2d2945 commit 001b370

File tree

4 files changed

+322
-14
lines changed

4 files changed

+322
-14
lines changed

package.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"scripts": {
1010
"dev": "vite",
1111
"build": "tsc -b && vite build",
12+
"build:config": "rollup -c",
1213
"lint": "eslint .",
1314
"preview": "vite preview"
1415
},
@@ -20,8 +21,12 @@
2021
"@eslint/js": "^9.17.0",
2122
"@generouted/react-router": "^1.19.9",
2223
"@nousantx/tenoxui-styler": "^0.1.22",
24+
"@rollup/plugin-commonjs": "^28.0.2",
25+
"@rollup/plugin-node-resolve": "^16.0.0",
26+
"@rollup/plugin-terser": "^0.4.4",
27+
"@rollup/plugin-typescript": "^12.1.2",
2328
"@types/dompurify": "^3.2.0",
24-
"@types/node": "^22.10.2",
29+
"@types/node": "^22.10.5",
2530
"@types/react": "^18.3.18",
2631
"@types/react-dom": "^18.3.5",
2732
"@vitejs/plugin-react": "^4.3.4",
@@ -31,9 +36,11 @@
3136
"eslint-plugin-react-refresh": "^0.4.16",
3237
"globals": "^15.14.0",
3338
"react-router-dom": "^7.1.1",
39+
"rollup": "^4.29.1",
3440
"shiki": "^1.24.4",
3541
"tenoxui-plugin-utility": "^0.1.2",
36-
"typescript": "~5.6.2",
42+
"tslib": "^2.8.1",
43+
"typescript": "^5.7.2",
3744
"typescript-eslint": "^8.18.2",
3845
"vite": "^6.0.5"
3946
}

rollup.config.js

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
import fs from 'node:fs'
2+
import path from 'node:path'
3+
import typescript from '@rollup/plugin-typescript'
4+
import resolve from '@rollup/plugin-node-resolve'
5+
import commonjs from '@rollup/plugin-commonjs'
6+
import terser from '@rollup/plugin-terser'
7+
8+
const packageJson = JSON.parse(fs.readFileSync(path.resolve('package.json'), 'utf-8'))
9+
const name = '__nsx_styler'
10+
const banner = `/*!
11+
* ${packageJson.name.slice(10)} v${packageJson.version} | ${packageJson.license} License
12+
* Copyright (c) 2024-present NOuSantx
13+
*/`
14+
// const sourcemap = true //# PROD_TRUE
15+
16+
const config = {
17+
input: '.pkg/src/index.ts',
18+
output: [
19+
{
20+
file: '.pkg/dist/index.umd.js',
21+
format: 'umd',
22+
exports: 'named',
23+
24+
name,
25+
banner
26+
},
27+
{
28+
file: '.pkg/dist/index.umd.min.js',
29+
format: 'umd',
30+
exports: 'named',
31+
32+
name,
33+
plugins: [
34+
terser({
35+
format: {
36+
comments: false,
37+
preamble: banner
38+
},
39+
mangle: false,
40+
mangle: true,
41+
compress: {
42+
defaults: true,
43+
passes: 2
44+
}
45+
})
46+
]
47+
},
48+
{
49+
file: '.pkg/dist/index.esm.js',
50+
format: 'es',
51+
banner
52+
},
53+
{
54+
file: '.pkg/dist/index.esm.min.js',
55+
56+
format: 'es',
57+
plugins: [
58+
terser({
59+
format: {
60+
comments: false,
61+
preamble: banner
62+
},
63+
mangle: true,
64+
compress: {
65+
defaults: true,
66+
passes: 2
67+
}
68+
})
69+
]
70+
}
71+
],
72+
plugins: [
73+
typescript({
74+
tsconfig: './tsconfig.rollup.json'
75+
}),
76+
resolve(),
77+
commonjs()
78+
]
79+
}
80+
81+
export default config

tsconfig.rollup.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2017",
4+
"module": "esnext",
5+
"rootDir": "./",
6+
"outDir": ".pkg/dist",
7+
"strict": true,
8+
"esModuleInterop": true,
9+
"noUnusedLocals": true
10+
},
11+
"include": [".pkg/src", "tenoxui.config.ts"],
12+
"exclude": ["node_modules", "dist", ".pkg/dist"]
13+
}

0 commit comments

Comments
 (0)