-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
65 lines (61 loc) · 1.55 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
import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
import json from 'rollup-plugin-json';
import resolve from 'rollup-plugin-node-resolve';
import { uglify } from 'rollup-plugin-uglify';
import pkg from './package.json';
import postcss from 'rollup-plugin-postcss';
import postcssModules from 'postcss-modules';
// import eslint from 'rollup-plugin-eslint';
const cssExportMap = {};
const config = {
input: 'src/index.js',
output: {
name: 'maps-google-react',
exports: 'named',
format: 'umd',
file: './index.js',
globals: {
'crypto': 'crypto',
'react': 'React',
'react-dom': 'ReactDOM',
},
banner: `/*! ${pkg.name} v${pkg.version} | (c) ${new Date().getFullYear()} Ryan Hefner | ${pkg.license} License | https://github.com/${pkg.repository} !*/`,
footer: '/* follow me on Facebook n.psk26 */',
},
external: [
'crypto',
'react',
'react-dom',
],
plugins: [
babel({
exclude: 'node_modules/**',
externalHelpers: process.env.BABEL_ENV === 'umd',
}),
resolve(),
commonjs({
include: /node_modules/,
}),
postcss({
modules: true,
plugins: [
postcssModules({
getJSON (id, exportTokens) {
cssExportMap[id] = exportTokens;
}
})
],
getExportNamed: false,
getExport (id) {
return cssExportMap[id];
},
extract: true
}),
json(),
],
};
if (process.env.NODE_ENV === 'production') {
config.plugins.push(uglify());
}
export default config;