forked from eva-engine/eva.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
262 lines (234 loc) · 6.49 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
257
258
259
260
261
262
import path from 'path';
import commonjs from '@rollup/plugin-commonjs';
import nodeResolve from 'rollup-plugin-node-resolve';
import replace from 'rollup-plugin-replace';
import json from '@rollup/plugin-json';
import typescript from 'rollup-plugin-typescript2';
import builtins from 'rollup-plugin-node-builtins';
import globals from 'rollup-plugin-node-globals';
import {terser} from 'rollup-plugin-terser';
import miniProgramPlugin from './rollup.miniprogram.plugin';
import serve from 'rollup-plugin-serve';
import livereload from 'rollup-plugin-livereload';
import copy from 'rollup-plugin-copy';
if (!process.env.TARGET) {
throw new Error('TARGET package must be specified via --environment flag.');
}
const packagesDir = path.resolve(__dirname, 'packages');
const packageDir = path.resolve(packagesDir, process.env.TARGET);
const name = path.basename(packageDir);
const resolve = p => path.resolve(packageDir, p);
const entryFile = resolve('lib/index.ts');
const pkg = require(resolve(`package.json`));
const packageOptions = pkg.buildOptions || {};
const exampleDir = path.resolve(__dirname, 'examples');
const evajsCDNDir = path.resolve(__dirname, 'dist/cdn');
const outputConfigs = {
esm: {
file: resolve(`dist/${name}.esm.js`),
format: 'es',
},
cjs: {
file: resolve(`dist/${name}.cjs.js`),
format: 'cjs',
},
umd: {
name: pkg.bundle,
file: path.resolve(evajsCDNDir, `${pkg.bundle}.js`),
format: 'umd',
},
miniprogram: {
file: resolve(`dist/miniprogram.js`),
format: 'cjs',
},
};
// ts检查优化
let hasTypesChecked = false;
// 开发环境 esm,cjs 打包
const defaultFormats = ['esm', 'cjs'];
const inlineFormats = process.env.FORMATS && process.env.FORMATS.split('-');
const packageFormats = inlineFormats || packageOptions.formats || defaultFormats;
const packageConfigs = [];
if (!process.env.PROD_ONLY) {
packageFormats.forEach(format => {
if (!outputConfigs[format]) return;
if (format === 'esm') {
packageConfigs.push(createEsmDevelopConfig(format));
}
if (format === 'cjs') {
packageConfigs.push(createCjsDevelopConfig(format));
}
if (format === 'umd' && pkg.bundle) {
packageConfigs.push(createUmdDevelopConfig(format));
}
});
}
// 为生产环境创建rollup配置
if (process.env.NODE_ENV === 'production') {
packageFormats.forEach(format => {
if (!outputConfigs[format]) return;
if (format === 'cjs') {
packageConfigs.push(createCjsProductionConfig(format));
}
if (format === 'umd' && pkg.bundle) {
packageConfigs.push(createMinifiedConfig(format));
}
if (format === 'miniprogram') {
packageConfigs.push(createMiniProgramConfig(format));
}
});
}
function createConfig(format, output, plugins = []) {
if (!output) {
console.log(require('chalk').yellow(`invalid format: "${format}"`));
process.exit(1);
}
output.sourcemap = !!process.env.SOURCE_MAP;
const shouldEmitDeclaration = process.env.TYPES != null && !hasTypesChecked;
const tsPlugin = typescript({
check: process.env.NODE_ENV === 'production' && !hasTypesChecked,
tsconfig: path.resolve(__dirname, 'tsconfig.json'),
cacheRoot: path.resolve(__dirname, 'node_modules/.rts2_cache'),
objectHashIgnoreUnknownHack: true,
tsconfigOverride: {
compilerOptions: {
sourceMap: output.sourcemap,
declaration: shouldEmitDeclaration,
declarationMap: shouldEmitDeclaration,
},
exclude: ['**/__tests__'],
},
});
hasTypesChecked = true;
return {
input: entryFile,
output: {
...output,
globals: {
'pixi.js': 'PIXI',
'@eva/eva.js': 'EVA',
'@eva/plugin-renderer': 'EVA.plugin.renderer',
'@eva/renderer-adapter': 'EVA.rendererAdapter',
},
},
external: [
'pixi.js',
'@eva/eva.js',
'@eva/plugin-renderer',
'@eva/renderer-adapter',
'@eva/miniprogram-pixi',
'@eva/miniprogram-adapter',
],
plugins: [
...plugins,
globals(),
builtins(),
json({preferConst: true}),
commonjs(),
tsPlugin,
replace({
__DEV__: process.env.NODE_ENV === 'development',
__TEST__: false,
}),
],
onwarn: (msg, warn) => {
if (!/Circular/.test(msg)) {
warn(msg);
}
},
treeshake: {
moduleSideEffects: false,
},
};
}
function createCjsDevelopConfig(format) {
return createConfig(format, {
file: outputConfigs[format].file,
format: outputConfigs[format].format,
});
}
function createEsmDevelopConfig(format) {
return createConfig(format, {
file: outputConfigs[format].file,
format: outputConfigs[format].format,
});
}
function createUmdDevelopConfig(format) {
let plugins = [
nodeResolve({
browser: true,
mainFields: ['jsnext', 'esnext', 'module', 'main'],
rootDir: packageDir,
}),
copy({
targets: [{ src: outputConfigs[format].file, dest: resolve(`dist`)}],
hook: 'writeBundle',
copyOnce: true
})
];
if (process.env.ROLLUP_WATCH) {
plugins.push(
...[
serve({
open: true,
contentBase: [exampleDir, evajsCDNDir],
host: 'localhost',
port: 8080,
}),
livereload(evajsCDNDir),
],
);
}
return createConfig(format, outputConfigs[format], plugins);
}
function createCjsProductionConfig(format) {
return createConfig(
format,
{
file: resolve(`dist/${name}.${format}.prod.js`),
format: outputConfigs[format].format,
},
[
terser({
toplevel: true,
mangle: true,
output: {comments: false},
compress: true,
}),
],
);
}
function createMinifiedConfig(format) {
const {file, name} = outputConfigs[format];
const destFilename = file.replace('dist/cdn', 'dist/cdn/min').replace(/\.js$/, '.min.js');
return createConfig(
format,
{
name,
format,
file: destFilename,
},
[
nodeResolve({
browser: true,
mainFields: ['jsnext', 'esnext', 'module', 'main'],
rootDir: packageDir,
preferBuiltins: true,
}),
terser({
toplevel: true,
mangle: true,
output: {comments: false},
compress: true,
}),
copy({
targets: [{ src: destFilename, dest: resolve(`dist`)}],
hook: 'writeBundle'
})
],
);
}
function createMiniProgramConfig(format) {
return createConfig(format, outputConfigs[format], miniProgramPlugin);
}
export default packageConfigs;