-
Notifications
You must be signed in to change notification settings - Fork 5
/
rollup.config.js
88 lines (84 loc) · 2.1 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
84
85
86
87
88
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import babel from '@rollup/plugin-babel';
import cleaner from 'rollup-plugin-cleaner';
import replace from '@rollup/plugin-replace';
import alias from '@rollup/plugin-alias';
import json from '@rollup/plugin-json';
import postcss from 'rollup-plugin-postcss';
import pkg from './package.json';
import { terser } from 'rollup-plugin-terser';
const path = require('path');
const postcssSVG = require('postcss-svg');
const NODE_ENV = 'production';
const projectRootDir = path.resolve(__dirname);
let productionRollup = {
input: 'src/main.js',
output: [
{
file: pkg.main,
format: 'cjs',
inlineDynamicImports: true,
},
{
file: pkg.main.replace(/\.js$/, '.min.js'),
format: 'cjs',
plugins: [terser()],
inlineDynamicImports: true,
},
{
file: pkg.module,
format: 'es',
inlineDynamicImports: true,
},
{
file: pkg.browser,
format: 'umd',
inlineDynamicImports: true,
name: 'nulibAdminUIComponents',
globals: {
react: 'React',
'react-dom': 'ReactDOM',
'manifesto.js': 'manifesto',
},
},
],
external: [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
],
plugins: [
alias({
entries: [
{
find: '@Components',
replacement: path.resolve(projectRootDir, 'src/components'),
},
{
find: '@TestData',
replacement: path.resolve(projectRootDir, 'src/test_data'),
},
{
find: '@Services',
replacement: path.resolve(projectRootDir, 'src/services'),
},
],
}),
babel({
babelHelpers: 'runtime',
babelrc: true,
exclude: 'node_modules/**',
}),
cleaner({
targets: ['./dist/'],
}),
postcss({ extract: path.resolve('dist/ramp.css') }),
replace({
'process.env.NODE_ENV': JSON.stringify(NODE_ENV),
}),
resolve(),
commonjs(),
json(),
],
};
export default productionRollup;