-
Notifications
You must be signed in to change notification settings - Fork 109
/
rollup.config.js
254 lines (228 loc) · 6.96 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
import fs from 'fs';
import path from 'path';
import replace from 'rollup-plugin-replace';
import json from '@rollup/plugin-json';
import typescript from 'rollup-plugin-typescript2';
import { terser } from 'rollup-plugin-terser';
import { miniprogramPlugins1, miniprogramPlugins2 } from './rollup.miniprogram.plugin';
import { getBabelOutputPlugin } from '@rollup/plugin-babel';
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 packages = fs
.readdirSync(path.resolve(__dirname, 'packages'))
.filter(p => !p.endsWith('.ts') && !p.startsWith('.'));
const IIFE_PREFIX = '_EVA_IIFE_';
const split = (str) => {
return str.split('.')
}
const getInsert = (str) => {
const arr = split(str)
const footers = []
const banners = []
let lastFooter = 'window'
arr.forEach((name, i) => {
lastFooter += `.${name}`
let footer
if (i === arr.length - 1) {
footer = `${lastFooter} = ${lastFooter} || ${IIFE_PREFIX + name}`
footers.push(footer)
} else {
footer = `${lastFooter} = ${lastFooter} || {}`
banners.push(footer)
}
})
return [banners.join(`;\n`), footers.join(`;\n`)]
}
const sliteName = split(pkg.bundle)
const iifeName = IIFE_PREFIX + sliteName[sliteName.length - 1]
const insert = getInsert(pkg.bundle)
const outputConfigs = {
esm: {
file: resolve(`dist/${name}.esm.js`),
format: 'es',
},
cjs: {
file: resolve(`dist/${name}.cjs.js`),
format: 'cjs',
},
iife: {
name: iifeName,
file: resolve(`dist/${pkg.bundle}.js`),
format: 'iife',
banner: insert[0],
footer: insert[1]
},
miniprogram: {
file: resolve(`dist/miniprogram.js`),
format: 'es',
},
};
// ts检查优化
let hasTypesChecked = false;
// 开发环境 esm,cjs 打包
const inlineFormats = process.env.FORMATS && process.env.FORMATS.split('-');
let packageFormats;
const packageConfigs = [];
if (!process.env.PROD_ONLY) {
packageFormats = packageOptions.formats || inlineFormats || ['esm', 'cjs', 'iife'];
packageFormats.forEach(format => {
if (!outputConfigs[format]) return;
if (format === 'esm' || format === 'cjs' || (format === 'iife' && pkg.bundle)) {
packageConfigs.push(createConfig(format, outputConfigs[format]));
}
});
}
// 为生产环境创建rollup配置
if (process.env.NODE_ENV === 'production') {
packageFormats = packageOptions.formats || inlineFormats || ['cjs', 'iife', 'miniprogram'];
packageFormats.forEach(format => {
if (!outputConfigs[format]) return;
if (format === 'cjs') {
packageConfigs.push(createCjsProductionConfig(format));
}
if (format === 'iife' && pkg.bundle) {
packageConfigs.push(createMinifiedConfig(format));
}
if (format === 'miniprogram') {
packageConfigs.push(createMiniProgramConfig(format));
}
});
}
function createConfig(format, output, plugins1 = [], plugins2 = []) {
if (!output) {
console.log(require('chalk').yellow(`invalid format: "${format}"`));
process.exit(1);
}
output.exports = 'auto';
output.sourcemap = !!process.env.SOURCE_MAP;
output.externalLiveBindings = false;
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;
let nodePlugins = [];
if (format === 'iife') {
nodePlugins = [
require('@rollup/plugin-node-resolve').nodeResolve(),
require('rollup-plugin-polyfill-node')(),
require('@rollup/plugin-commonjs')({ sourceMap: false, ignore: ['lodash-es'] }),
];
} else if (format === 'miniprogram') {
nodePlugins = [
require('@rollup/plugin-node-resolve').nodeResolve({
resolveOnly: ['resource-loader', 'type-signals', 'parse-uri']
}),
require('@rollup/plugin-commonjs')({ sourceMap: false, ignore: ['lodash-es'] }),
]
}
let external = [];
let internal = ['@eva/spine-base']
if (format === 'esm' || format === 'cjs') {
external = [...Object.keys(pkg.dependencies || {}), ...Object.keys(pkg.peerDependencies || {})];
} else {
const evaDependencies = Array.from(Object.keys(pkg.dependencies || {})).filter(dep => {
return dep.startsWith('@eva') && packages.indexOf(dep.substring(5)) > -1 && internal.indexOf(dep) === -1;
});
external = ['pixi.js', ...evaDependencies];
output.plugins = [
getBabelOutputPlugin({
configFile: path.resolve(__dirname, 'babel.config.js'),
allowAllFormats: 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,
plugins: [
...plugins1,
json({ preferConst: true }),
replace({
__TEST__: false,
__DEV__: process.env.NODE_ENV === 'development',
__VERSION__: pkg.version,
}),
...nodePlugins,
tsPlugin,
...plugins2
],
onwarn: (msg, warn) => {
if (!/Circular/.test(msg)) {
warn(msg);
}
},
treeshake: {
moduleSideEffects: false,
},
};
}
function createCjsProductionConfig(format) {
return createConfig(
format,
{
file: resolve(`dist/${name}.${format}.prod.js`),
format: outputConfigs[format].format,
},
[
terser({
toplevel: true, // 开启最高级压缩
mangle: { reserved: ['_extends'] }, // 不压缩 _extends
compress: true, // 压缩整体代码
}),
],
);
}
function createMinifiedConfig(format) {
const { file, name, banner, footer } = outputConfigs[format];
const destFilename = file.replace(/\.js$/, '.min.js');
return createConfig(
format,
{
name,
format,
file: destFilename,
banner,
footer
},
[
terser({
// toplevel: true, // 开启最高级压缩
mangle: { reserved: ['_extends'] }, // 不压缩 _extends
compress: true, // 压缩整体代码
}),
],
);
}
function createMiniProgramConfig(format) {
return createConfig(format, outputConfigs[format], miniprogramPlugins1, miniprogramPlugins2);
}
export default packageConfigs;