forked from basecamp/trix
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
111 lines (104 loc) · 2.2 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import json from "@rollup/plugin-json"
import includePaths from "rollup-plugin-includepaths"
import commonjs from "@rollup/plugin-commonjs"
import { babel } from "@rollup/plugin-babel"
import nodeResolve from "@rollup/plugin-node-resolve"
import { terser } from "rollup-plugin-terser"
import { version } from "./package.json"
const year = new Date().getFullYear()
const banner = `/*\nTrix ${version}\nCopyright © ${year} 37signals, LLC\n */`
const plugins = [
json(),
includePaths({
paths: [ "src" ],
extensions: [ ".js" ]
}),
nodeResolve({ extensions: [ ".js" ] }),
commonjs({
extensions: [ ".js" ]
}),
babel({ babelHelpers: "bundled" }),
]
const defaultConfig = {
context: "window",
treeshake: false,
plugins: plugins,
watch: {
include: "src/**"
}
}
const terserConfig = terser({
mangle: true,
compress: true,
format: {
comments: function (node, comment) {
const text = comment.value
const type = comment.type
if (type == "comment2") {
// multiline comment
return /Copyright/.test(text)
}
},
},
})
const compressedConfig = Object.assign({}, defaultConfig, { plugins: plugins.concat(terserConfig) })
export default [
{
input: "src/trix/trix.js",
output: [
{
name: "Trix",
file: "dist/trix.umd.js",
format: "umd",
banner
},
{
file: "dist/trix.esm.js",
format: "es",
banner
}
],
...defaultConfig,
},
{
input: "src/trix/trix.js",
output: [
{
name: "Trix",
file: "dist/trix.umd.min.js",
format: "umd",
banner,
sourcemap: true
},
{
file: "dist/trix.esm.min.js",
format: "es",
banner,
sourcemap: true
}
],
...compressedConfig,
},
{
input: "src/test/test.js",
output: {
name: "TrixTests",
file: "dist/test.js",
format: "es",
sourcemap: true,
banner
},
...defaultConfig,
},
{
input: "src/inspector/inspector.js",
output: {
name: "TrixInspector",
file: "dist/inspector.js",
format: "es",
sourcemap: true,
banner
},
...defaultConfig,
}
]