forked from galacean/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrollup.config.js
More file actions
262 lines (234 loc) · 6.81 KB
/
Copy pathrollup.config.js
File metadata and controls
262 lines (234 loc) · 6.81 KB
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
const fs = require("fs");
const path = require("path");
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import { shaderCompiler } from "@galacean/engine-shader-compiler/bundler/rollup";
import serve from "rollup-plugin-serve";
import replace from "@rollup/plugin-replace";
import { swc, defineRollupSwcOption, minify } from "rollup-plugin-swc3";
import jscc from "rollup-plugin-jscc";
const { BUILD_TYPE, NODE_ENV } = process.env;
const pkgsRoot = path.join(__dirname, "packages");
const pkgs = fs
.readdirSync(pkgsRoot)
.filter((dir) => dir !== "design")
.map((dir) => path.join(pkgsRoot, dir))
.filter((dir) => fs.statSync(dir).isDirectory())
.map((location) => {
return {
location: location,
pkgJson: require(path.resolve(location, "package.json"))
};
});
const shaderCompilerPkg = pkgs.find((item) => item.pkgJson.name === "@galacean/engine-shader-compiler");
pkgs.push({ ...shaderCompilerPkg, verboseMode: true });
// toGlobalName
const extensions = [".js", ".jsx", ".ts", ".tsx"];
const mainFields = NODE_ENV === "development" ? ["debug", "module", "main"] : undefined;
const shaderCompilerPlugin = shaderCompiler({
precompile: {
input: path.join(__dirname, "packages/shader/src/Shaders"),
output: path.join(__dirname, "packages/shader/compiledShaders")
}
});
const commonPlugins = [
resolve({ extensions, preferBuiltins: true, mainFields }),
shaderCompilerPlugin,
swc(
defineRollupSwcOption({
include: /\.[mc]?[jt]sx?$/,
exclude: /node_modules/,
jsc: {
loose: true,
externalHelpers: true,
target: "es5"
},
sourceMaps: true
})
),
commonjs(),
NODE_ENV === "development"
? serve({
contentBase: "packages",
port: 9999
})
: null
];
function config({ location, pkgJson, verboseMode }) {
const input = path.join(location, "src", "index.ts");
const dependencies = Object.assign({}, pkgJson.dependencies ?? {}, pkgJson.peerDependencies ?? {});
const curPlugins = Array.from(commonPlugins);
curPlugins.push(
jscc({
values: { _VERBOSE: verboseMode }
})
);
const external = Object.keys(dependencies);
curPlugins.push(
replace({
preventAssignment: true,
__buildVersion: pkgJson.version
})
);
return {
umd: (compress) => {
const umdConfig = pkgJson.umd;
let file = path.join(location, "dist", "browser.js");
if (compress) {
curPlugins.push(minify({ sourceMap: true }));
}
if (verboseMode) {
file = path.join(location, "dist", compress ? "browser.verbose.min.js" : "browser.verbose.js");
} else {
file = path.join(location, "dist", compress ? "browser.min.js" : "browser.js");
}
const umdExternal = Object.keys(umdConfig.globals ?? {});
return {
input,
external: umdExternal,
output: [
{
file,
name: umdConfig.name,
format: "umd",
sourcemap: true,
globals: umdConfig.globals
}
],
plugins: curPlugins
};
},
module: () => {
let esFile = path.join(location, pkgJson.module);
let mainFile = path.join(location, pkgJson.main);
if (verboseMode) {
esFile = path.join(location, "dist", "module.verbose.js");
mainFile = path.join(location, "dist", "main.verbose.js");
}
return {
input,
external,
output: [
{
file: esFile,
format: "es",
sourcemap: true
},
{
file: mainFile,
sourcemap: true,
format: "commonjs"
}
],
plugins: curPlugins
};
},
sources: () => {
// Build the "sources" subpath entry for @galacean/engine-shader.
// Exports raw .shader source strings (for editor use).
const sourcesInput = path.join(location, "src", "sources.ts");
return {
input: sourcesInput,
external,
output: [
{
file: path.join(location, "dist", "sources.module.js"),
format: "es",
sourcemap: true
},
{
file: path.join(location, "dist", "sources.main.js"),
format: "commonjs",
sourcemap: true
}
],
plugins: curPlugins
};
},
bundled: (compress) => {
// ES module format with no external dependencies (bundled)
const bundledFile = path.join(location, "dist", compress ? "bundled.module.min.js" : "bundled.module.js");
const bundledPlugins = Array.from(curPlugins);
if (compress) {
bundledPlugins.push(
minify({
sourceMap: true,
module: true // Indicate this is an ES module
})
);
}
return {
input,
external: [], // No external dependencies - bundle everything
output: [
{
file: bundledFile,
format: "es",
sourcemap: true
}
],
plugins: bundledPlugins
};
}
};
}
async function makeRollupConfig({ type, compress = true, visualizer = true, ..._ }) {
return config({ ..._ })[type](compress, visualizer);
}
let promises = [];
switch (BUILD_TYPE) {
case "UMD":
promises.push(...getUMD());
break;
case "MODULE":
promises.push(...getModule());
break;
case "BUNDLED":
promises.push(...getBundled());
break;
case "ALL":
promises.push(...getAll());
break;
default:
break;
}
function getUMD() {
const configs = pkgs.filter((pkg) => pkg.pkgJson.umd);
return configs
.map((config) => makeRollupConfig({ ...config, type: "umd" }))
.concat(
configs.map((config) =>
makeRollupConfig({
...config,
type: "umd",
compress: false,
visualizer: false
})
)
);
}
function getModule() {
const configs = [...pkgs];
const result = configs.map((config) => makeRollupConfig({ ...config, type: "module" }));
// Build shader package "sources" subpath entry (raw .shader strings for editor)
const shaderPkg = pkgs.find((pkg) => pkg.pkgJson.name === "@galacean/engine-shader");
if (shaderPkg) {
result.push(makeRollupConfig({ ...shaderPkg, type: "sources" }));
}
return result;
}
function getBundled() {
// Only build bundled version for @galacean/engine package
const galaceanConfig = pkgs.find((pkg) => pkg.pkgJson.name === "@galacean/engine");
if (galaceanConfig) {
return [
makeRollupConfig({ ...galaceanConfig, type: "bundled", compress: false }),
makeRollupConfig({ ...galaceanConfig, type: "bundled", compress: true })
];
}
return [];
}
function getAll() {
return [...getModule(), ...getUMD(), ...getBundled()];
}
export default Promise.all(promises);