-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathrollup.config.js
More file actions
47 lines (44 loc) · 1.23 KB
/
rollup.config.js
File metadata and controls
47 lines (44 loc) · 1.23 KB
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
import peerDepsExternal from "rollup-plugin-peer-deps-external";
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import typescript from "rollup-plugin-typescript2";
import postcss from "rollup-plugin-postcss";
import json from '@rollup/plugin-json';
import { readFileSync, copyFileSync, mkdirSync } from 'fs';
import { dirname } from 'path';
const packageJson = JSON.parse(readFileSync('./package.json', 'utf-8'));
// Plugin to copy CSS file after build
const copyCssPlugin = () => ({
name: 'copy-css',
buildEnd() {
const src = 'src/lib/cron-builder.css';
const dest = 'build/cron-builder.css';
try {
mkdirSync(dirname(dest), { recursive: true });
copyFileSync(src, dest);
console.log(`✓ Copied ${src} to ${dest}`);
} catch (err) {
console.error(`Failed to copy CSS: ${err.message}`);
}
}
});
export default {
input: "src/lib/index.ts",
output: [
{
file: packageJson.main,
format: 'es',
sourcemap: true
}
],
plugins: [
peerDepsExternal(),
resolve(),
commonjs(),
typescript({ useTsconfigDeclarationDir: true }),
postcss(),
json(),
copyCssPlugin()
],
external: ["react", "react-dom"]
};