-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.config.js
38 lines (35 loc) · 893 Bytes
/
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
import path from 'path';
import fs from 'fs';
import babel from 'rollup-plugin-babel';
import postcss from 'rollup-plugin-postcss';
import discardComments from 'postcss-discard-comments';
let pkg = JSON.parse(fs.readFileSync('./package.json'));
let external = Object.keys(pkg.peerDependencies || {}).concat(Object.keys(pkg.dependencies || {}));
export default {
entry: 'src/index.js',
dest: pkg.main,
sourceMap: true,
moduleName: pkg.amdName,
format: 'umd',
external,
plugins: [
babel({
babelrc: false,
comments: false,
exclude: ['node_modules/**', '**/*.css'],
presets: [
['es2015', { modules: false, loose: true }]
],
plugins: [
['transform-es2015-classes', { loose: true }],
['transform-object-rest-spread'],
['transform-react-jsx', { pragma: 'h' }]
]
}),
postcss({
plugins: [
discardComments({ removeAll: true })
]
})
]
};