forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
256 lines (242 loc) · 8.08 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
import { terser } from 'rollup-plugin-terser';
import typescript from 'rollup-plugin-typescript2';
import resolve from 'rollup-plugin-node-resolve';
import { eslint } from 'rollup-plugin-eslint';
import postcss from 'rollup-plugin-postcss';
import pkg from './package.json';
import path from 'path';
import chalk from 'chalk';
const { exec } = require('child_process');
process.env.BUILD = process.env.BUILD || 'development';
const PRODUCTION = process.env.BUILD === 'production';
const BUILD_ID =
Date.now().toString(36).slice(-2) +
Math.floor(Math.random() * 0x186a0).toString(36);
const BUILD_DIRECTORY = 'dist';
const TYPESCRIPT_OPTIONS = {
// typescript: require('typescript'),
clean: PRODUCTION,
// verbosity: 3,
include: ['*.ts+(|x)', '**/*.ts+(|x)', '*.js+(|x)', '**/*.js+(|x)'],
tsconfigOverride: {
compilerOptions: {
// declaration: false,
},
},
};
const SDK_VERSION = pkg.version || 'v?.?.?';
const TERSER_OPTIONS = {
compress: {
drop_console: true,
drop_debugger: true,
ecma: 8, // Use "5" to support older browsers
module: true,
warnings: true,
passes: 4,
global_defs: {
ENV: JSON.stringify(process.env.BUILD),
SDK_VERSION: SDK_VERSION,
BUILD_ID: JSON.stringify(BUILD_ID),
GIT_VERSION: process.env.GIT_VERSION || '?.?.?',
},
},
output: {
preamble: '/* MathLive ' + SDK_VERSION + ' */',
},
};
function normalizePath(id) {
return path.relative(process.cwd(), id).split(path.sep).join('/');
}
function timestamp() {
const now = new Date();
return chalk.green(
`${now.getHours()}:${('0' + now.getMinutes()).slice(-2)}:${(
'0' + now.getSeconds()
).slice(-2)}`
);
}
// Rollup plugin to display build progress and launch server
function buildProgress() {
return {
name: 'rollup.config.js',
transform(_code, id) {
const file = normalizePath(id);
if (file.includes(':')) {
return;
}
if (
process.stdout.isTTY &&
typeof process.stdout.clearLine === 'function'
) {
process.stdout.clearLine();
process.stdout.cursorTo(0);
process.stdout.write('Building ' + chalk.grey(file));
} else {
console.log(chalk.grey(file));
}
},
buildEnd() {
if (
process.env.BUILD === 'watch' ||
process.env.BUILD === 'watching'
) {
if (
process.stdout.isTTY &&
typeof process.stdout.clearLine === 'function'
) {
process.stdout.clearLine();
process.stdout.cursorTo(0);
process.stdout.write(
timestamp() +
(process.env.BUILD === 'watching'
? ' Build updated'
: ' Build done')
);
}
} else {
if (
process.stdout.isTTY &&
typeof process.stdout.clearLine === 'function'
) {
process.stdout.clearLine();
process.stdout.cursorTo(0);
}
}
if (process.env.BUILD === 'watch') {
process.env.BUILD = 'watching';
if (
process.stdout.isTTY &&
typeof process.stdout.clearLine === 'function'
) {
process.stdout.clearLine();
process.stdout.cursorTo(0);
}
console.log(' 🚀 Launching server');
exec(
"npx http-server . -s -c-1 --cors='*' -o /examples/test-cases/index.html",
(error, stdout, stderr) => {
if (error) {
console.error(`http-server error: ${error}`);
return;
}
console.log(stdout);
console.error(stderr);
}
);
}
},
};
}
const ROLLUP = [
// MathLive main module
{
onwarn(warning, warn) {
// The use of #private class variables seem to trigger this warning.
if (warning.code === 'THIS_IS_UNDEFINED') return;
warn(warning);
},
// @todo: generate multiple flavors (i.e. no-editor, renderer only)
// by specifying multiple inputs:
// input: [ 'mathlive': 'src/mathlive.ts', 'mathlive-render': 'src/mathlive-render.ts' ]
input: 'src/mathlive.ts',
plugins: [
buildProgress(),
PRODUCTION && eslint({ exclude: ['**/*.less'] }),
postcss({
extract: false, // extract: path.resolve('dist/mathlive.css')
modules: false,
inject: false,
extensions: ['.css', '.less'],
plugins: [],
minimize: PRODUCTION,
}),
resolve(),
typescript(TYPESCRIPT_OPTIONS),
],
output: true
? [
// JavaScript native module
// (stricly speaking not necessary, since the UMD output is module
// compatible, but this gives us a "clean" module)
{
format: 'es',
file: `${BUILD_DIRECTORY}/mathlive.mjs`,
sourcemap: !PRODUCTION,
exports: 'named',
},
// UMD file, suitable for import, <script> and require()
{
format: 'umd',
name: 'MathLive',
file: `${BUILD_DIRECTORY}/mathlive.js`,
sourcemap: !PRODUCTION,
exports: 'named',
},
]
: [
{
format: 'es',
file: `${BUILD_DIRECTORY}/mathlive.mjs`,
sourcemap: !PRODUCTION,
},
],
watch: {
clearScreen: true,
exclude: ['node_modules/**'],
},
},
];
if (PRODUCTION) {
// MathLive Vue-js adapter
ROLLUP.push({
input: 'src/vue-mathlive.js',
plugins: [terser(TERSER_OPTIONS)],
output: {
// JavaScript native module
sourcemap: false,
file: 'dist/vue-mathlive.mjs',
format: 'es',
},
});
// Minified versions
ROLLUP.push({
onwarn(warning, warn) {
// The use of #private class variables seem to trigger this warning.
if (warning.code === 'THIS_IS_UNDEFINED') return;
warn(warning);
},
input: 'src/mathlive.ts',
plugins: [
buildProgress(),
postcss({
extract: false, // extract: path.resolve('dist/mathlive.css')
modules: false,
inject: false,
extensions: ['.css', '.less'],
plugins: [],
minimize: true,
}),
resolve(),
typescript(TYPESCRIPT_OPTIONS),
terser(TERSER_OPTIONS),
],
output: [
// JavaScript native module
// (stricly speaking not necessary, since the UMD output is module
// compatible, but this gives us a "clean" module)
{
format: 'es',
file: `${BUILD_DIRECTORY}/mathlive.min.mjs`,
sourcemap: false,
},
// UMD file, suitable for import, <script> and require()
{
format: 'umd',
name: 'MathLive',
file: `${BUILD_DIRECTORY}/mathlive.min.js`,
sourcemap: false,
},
],
});
}
export default ROLLUP;