-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
71 lines (64 loc) · 1.74 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
import typescript from "rollup-plugin-typescript2";
import commonjs from "rollup-plugin-commonjs";
import { uglify } from "rollup-plugin-uglify";
import resolve from "rollup-plugin-node-resolve";
import replace from "rollup-plugin-replace";
import autoExternal from "rollup-plugin-auto-external";
const typescriptConfig = { cacheRoot: "tmp/.rpt2_cache" };
const noDeclarationConfig = Object.assign({}, typescriptConfig, {
tsconfigOverride: { compilerOptions: { declaration: false } }
});
const config = {
input: "src/index.ts"
};
const umd = Object.assign({}, config, {
output: {
file: "dist/react-styled-mediaquery.dev.js",
format: "umd",
name: "pose",
exports: "named",
globals: { react: "React" }
},
external: ["react", "react-dom", "styled-components"],
plugins: [
commonjs(),
typescript(noDeclarationConfig),
resolve(),
replace({
"process.env.NODE_ENV": JSON.stringify("development")
})
]
});
const umdProd = Object.assign({}, umd, {
input: "src/index.ts",
output: Object.assign({}, umd.output, {
file: "dist/react-styled-mediaquery.js"
}),
plugins: [
autoExternal(),
commonjs(),
typescript(noDeclarationConfig),
resolve(),
replace({
"process.env.NODE_ENV": JSON.stringify("production")
}),
uglify()
]
});
const es = Object.assign({}, config, {
output: {
file: "dist/react-styled-mediaquery.es.js",
format: "es",
exports: "named"
},
plugins: [autoExternal(), commonjs(), typescript(noDeclarationConfig)]
});
const cjs = Object.assign({}, config, {
output: {
file: "lib/index.js",
format: "cjs",
exports: "named"
},
plugins: [autoExternal(), commonjs(), typescript(typescriptConfig)]
});
export default [umd, umdProd, es, cjs];