forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
190 lines (177 loc) · 4.93 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
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';
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)'],
};
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 + ' */',
ascii_only: true, // The project has some characters (”) which can
// confuse Safari when the charset is not set to UTF-8 on the page.
// This workaround that.
},
};
function normalizePath(id) {
return path.relative(process.cwd(), id).split(path.sep).join('/');
}
function clearLine() {
if (process.stdout.isTTY && typeof process.stdout.clearLine === 'function') {
process.stdout.clearLine();
process.stdout.cursorTo(0);
}
}
// 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(
chalk.green(' ●') + ' Building ' + chalk.grey(file)
);
} else {
console.log(chalk.grey(file));
}
},
buildEnd() {
clearLine();
},
};
}
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);
},
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: [
// 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',
},
],
},
];
// MathLive Vue-js adapter
ROLLUP.push({
input: 'src/vue-mathlive.js',
plugins: [PRODUCTION && terser(TERSER_OPTIONS)],
output: {
// JavaScript native module
sourcemap: !PRODUCTION,
file: 'dist/vue-mathlive.mjs',
format: 'es',
},
});
if (PRODUCTION) {
// 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;