forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
206 lines (195 loc) · 6.98 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
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 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 TERSER_OPTIONS = {
sourcemap: false,
compress: {
drop_console: true,
drop_debugger: true,
ecma: 8, // Use "5" to support older browsers
module: true,
warnings: true,
passes: 2,
global_defs: {
ENV: JSON.stringify(process.env.BUILD),
VERSION: JSON.stringify(pkg.version || '0.0'),
BUILD_ID: JSON.stringify(BUILD_ID),
GIT_VERSION: process.env.GIT_VERSION || '?.?.?',
},
},
output: {
preamble:
'/* MathLive ' + (process.env.GIT_VERSION || 'v?.?.?') + ' */',
},
};
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)}`
);
}
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: [
{
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);
}
);
}
},
},
PRODUCTION &&
eslint({
// fix: true,
// include: 'src/',
}),
resolve(),
typescript(TYPESCRIPT_OPTIONS),
PRODUCTION && terser(TERSER_OPTIONS),
],
output: PRODUCTION
? [
// 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: false,
},
// UMD file, suitable for import, <script> and require()
{
format: 'umd',
file: `${BUILD_DIRECTORY}/mathlive.js`,
sourcemap: false,
name: 'MathLive',
},
]
: [
{
format: 'es',
file: `${BUILD_DIRECTORY}/mathlive.mjs`,
sourcemap: true,
},
],
watch: {
clearScreen: true,
exclude: ['node_modules/**'],
},
},
];
// MathLive Vue-js adapter
if (PRODUCTION) {
ROLLUP.push({
input: 'src/vue-mathlive.js',
plugins: [terser(TERSER_OPTIONS)],
output: {
// JavaScript native module
sourcemap: false,
file: 'dist/vue-mathlive.mjs',
format: 'es',
},
});
}
export default ROLLUP;