-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
77 lines (71 loc) · 1.54 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
// server
import serve from 'rollup-plugin-serve'
import livereload from 'rollup-plugin-livereload'
import copy from 'rollup-plugin-copy'
// modules
import commonjs from 'rollup-plugin-commonjs'
import resolve from 'rollup-plugin-node-resolve'
import path from 'path'
import alias from 'rollup-plugin-alias';
// js
import babel from 'rollup-plugin-babel'
import replace from 'rollup-plugin-replace'
// style
import stylModule from 'rollup-plugin-stylus'
// other static
import json from 'rollup-plugin-json'
export default {
name: 'caramel',
input: 'src/index.js',
output: {
file: 'dist/bundle.js',
format: 'iife'
},
watch: {
include: 'src/**',
},
plugins:[
replace({
'process.env.NODE_ENV': JSON.stringify('development')
}),
alias({
resolve: ['.jsx', '.js'],
'~components': path.resolve(__dirname, 'src/components/'),
}),
json(),
copy({
"src/index.html": "dist/index.html",
}),
resolve({
jsnext: true,
main: true,
extensions: [ '.js', '.jsx' ],
}),
commonjs({
namedExports: {
'./node_modules/react/react.js' :
[
'cloneElement',
'createElement',
'PropTypes',
'Children',
'Component'
],
}
}),
babel({
include: ['**/*.js', '**/*.jsx'],
exclude: 'node_modules/**'
}),
stylModule({
output: 'dist/bundle.css'
}),
serve({
contentBase: 'dist',
historyApiFallback: true,
}),
livereload({
watch: 'dist',
}),
]
}