forked from rematch/rematch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
84 lines (75 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
import { mkdirSync, writeFileSync } from 'fs'
import { join } from 'path'
import replace from 'rollup-plugin-replace'
import uglify from 'rollup-plugin-uglify'
import commonJs from 'rollup-plugin-commonjs'
import resolve from 'rollup-plugin-node-resolve'
import { minify } from 'uglify-es'
// experimental minifier for ES modules
// https://github.com/TrySound/rollup-plugin-uglify#warning
const pkg = require('./package.json')
// minified production builds
const production = {
input: 'lib/index.js',
output: [
{ name: 'Rematch', file: pkg.browser, format: 'umd', exports: 'named', sourcemap: true }, // Universal Modules
{ file: `${pkg.main}/rematch.prod.min.js`, format: 'cjs', exports: 'named', sourcemap: true }, // CommonJS Modules
{ file: pkg.module, format: 'es', exports: 'named', sourcemap: true } // ES Modules
],
plugins: [
replace({
'process.env.NODE_ENV': '"production"',
}),
resolve({
jsnext: true,
browser: true,
}),
commonJs(),
uglify({
compress: {
pure_getters: true,
unsafe: true,
},
output: {
comments: false,
semicolons: false,
},
}, minify)
],
}
// full source development builds
const development = {
input: 'lib/index.js',
output: [
{ file: `${pkg.main}/rematch.dev.js`, format: 'cjs', exports: 'named' }, // CommonJS Modules
// { file: `${pkg.module}/rematch.dev.js`, format: 'es', exports: 'named', sourcemap: true } // ES Modules
],
plugins: [
replace({
'process.env.NODE_ENV': '"development"',
}),
commonJs(),
resolve({
jsnext: true,
browser: true,
}),
],
}
// point user to needed build
const root = `'use strict'
if (process.env.NODE_ENV === 'production') {
module.exports = require('./rematch.prod.min.js')
} else {
module.exports = require('./rematch.dev.js')
}
`
const rootFile = (folder) => {
mkdirSync(join('dist', folder))
writeFileSync(join('dist', folder, 'index.js'), root)
}
export default (() => {
// generate root mapping files
mkdirSync('dist')
rootFile('cjs')
return [development, production]
})()