-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.mjs
151 lines (128 loc) · 4.66 KB
/
build.mjs
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
import commonjs from "@rollup/plugin-commonjs";
import nodeResolve from "@rollup/plugin-node-resolve";
import { createHash } from "crypto";
import { readFile, readdir, writeFile } from "fs/promises";
import { argv } from "process";
import { rollup, watch } from "rollup";
import swc from "@swc/core";
import esbuild from "rollup-plugin-esbuild";
const args = argv.slice(2);
console.clear();
const inputPlugins = args.filter(x => !x.startsWith("-"));
const flags = args.map(x => x.toLowerCase()).filter(x => x.startsWith("-"));
const isWatch = flags.includes("--watch") || flags.includes("-w");
const toBuild = inputPlugins.length ? inputPlugins : await readdir("./plugins");
console.log(`Building ${toBuild.length} plugin(s)...`);
let failed = 0;
for (const plugin of toBuild) {
try {
await buildPlugin(plugin);
} catch (e) {
console.error(e.stack || e);
failed++;
}
}
console.log("\n" + (
failed
? "\x1b[31m" + `Failed to build ${failed} plugin(s)` + "\x1b[0m"
: "\x1b[32m" + "All plugin(s) built successfully!" + "\x1b[0m"
));
isWatch && console.log("\nWatching for changes...");
async function buildPlugin(plugin) {
if (plugin.endsWith(".ts")) return;
const manifest = Object.assign(
JSON.parse(await readFile("./base_manifest.json")),
JSON.parse(await readFile(`./plugins/${plugin}/manifest.json`))
);
const entry = "index.js";
const outPath = `./dist/${plugin}/${entry}`;
/** @type {import("rollup").RollupOptions} */
const options = {
input: `./plugins/${plugin}/${manifest.main}`,
output: {
file: outPath,
globals(id) {
if (id.startsWith("@vendetta"))
return id.substring(1).replace(/\//g, ".");
const map = {
"react": "window.React",
"react-native": "vendetta.metro.common.ReactNative"
};
return map[id] || null;
},
format: "iife",
compact: true,
exports: "named",
inlineDynamicImports: true,
},
onwarn: (warning) => {
![
"UNRESOLVED_IMPORT",
"MISSING_NAME_OPTION_FOR_IIFE_EXPORT",
"CIRCULAR_DEPENDENCY"
].includes(warning.code) && console.warn(warning);
},
plugins: [
nodeResolve({
resolveOnly: (id) => !["react", "react-native"].includes(id)
}),
commonjs(),
{
name: "swc",
transform(code, id) {
return swc.transform(code, {
filename: id,
jsc: {
parser: {
syntax: "typescript",
tsx: true,
},
externalHelpers: true,
},
env: {
targets: "defaults",
include: [
"transform-classes",
"transform-arrow-functions",
],
},
});
},
},
esbuild({ minify: true }),
]
};
const applyHash = async () => Object.assign(manifest, {
hash: createHash("sha256").update(await readFile(outPath)).digest("hex"),
main: entry
});
if (!isWatch) {
const bundle = await rollup(options);
await bundle.write(options.output);
await bundle.close();
await applyHash();
await writeFile(`./dist/${plugin}/manifest.json`, JSON.stringify(manifest));
console.log(`${plugin}: ` + "\x1b[32m" + "Build succeed!" + "\x1b[0m");
return;
}
const watcher = watch(options);
return await new Promise((resolve, reject) => {
watcher.on("event", async (event) => {
switch (event.code) {
case "BUNDLE_END": {
event.result.close();
await applyHash();
await writeFile(`./dist/${plugin}/manifest.json`, JSON.stringify(manifest));
console.log(`${plugin}: ` + "\x1b[32m" + `Build succeed! (${event.duration}ms)` + "\x1b[0m");
resolve();
break;
}
case "ERROR":
case "FATAL":
console.error(`${plugin}: ` + "\x1b[31m", "Failed! :(", "\x1b[0m");
reject(event.error);
break;
}
});
});
}