forked from edmundhung/conform
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
83 lines (75 loc) · 1.62 KB
/
rollup.config.js
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
import path from 'node:path';
import babel from '@rollup/plugin-babel';
import nodeResolve from '@rollup/plugin-node-resolve';
import copy from 'rollup-plugin-copy';
/** @returns {import("rollup").RollupOptions[]} */
function configurePackage(name) {
let sourceDir = `packages/${name}`;
let outputDir = `${sourceDir}`;
/** @type {import("rollup").RollupOptions} */
let ESM = {
external(id) {
return !id.startsWith('.') && !path.isAbsolute(id);
},
input: `${sourceDir}/index.ts`,
output: {
dir: outputDir,
format: 'esm',
preserveModules: true,
entryFileNames: '[name].mjs',
},
plugins: [
babel({
babelHelpers: 'bundled',
exclude: /node_modules/,
extensions: ['.ts', '.tsx'],
}),
nodeResolve({
extensions: ['.ts', '.tsx'],
}),
copy({
targets: [
{ src: `README`, dest: sourceDir },
{ src: `LICENSE`, dest: sourceDir },
],
}),
],
};
/** @type {import("rollup").RollupOptions} */
let CJS = {
external(id) {
return !id.startsWith('.') && !path.isAbsolute(id);
},
input: `${sourceDir}/index.ts`,
output: {
dir: outputDir,
format: 'cjs',
preserveModules: true,
exports: 'auto',
},
plugins: [
babel({
babelHelpers: 'bundled',
exclude: /node_modules/,
extensions: ['.ts', '.tsx'],
}),
nodeResolve({
extensions: ['.ts', '.tsx'],
}),
],
};
return [ESM, CJS];
}
export default function rollup() {
const packages = [
// Base
'conform-dom',
'conform-validitystate',
// Schema resolver
'conform-zod',
'conform-yup',
// View adapter
'conform-react',
];
return packages.flatMap(configurePackage);
}