-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrollup.module.config.js
More file actions
41 lines (39 loc) · 1012 Bytes
/
rollup.module.config.js
File metadata and controls
41 lines (39 loc) · 1012 Bytes
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
import commonjs from '@rollup/plugin-commonjs'
import globals from './rollup.globals.js'
import replace from '@rollup/plugin-replace'
import resolve from '@rollup/plugin-node-resolve'
import sucrase from '@rollup/plugin-sucrase'
import { nodeResolve } from '@rollup/plugin-node-resolve'
import { readFileSync } from 'node:fs'
const pkg = JSON.parse(readFileSync(new URL('./package.json', import.meta.url)))
export default {
input: 'src/index.jsx',
output: [
{
format: 'es',
globals: globals,
file: 'dist/index.js'
}
],
external: [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
],
plugins: [
sucrase({
exclude: ['node_modules/**'],
transforms: ['jsx']
}),
resolve({
extensions: ['.js', '.jsx']
}),
nodeResolve(),
commonjs({
include: 'node_modules/**'
}),
replace({
'process.env.NODE_ENV': JSON.stringify( 'production' ),
preventAssignment: true
})
]
}