-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathbuildpackage.js
More file actions
213 lines (193 loc) · 8.12 KB
/
Copy pathbuildpackage.js
File metadata and controls
213 lines (193 loc) · 8.12 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
/**
* This is solely a build script, intended to prep the azure-devops-extension-api npm package for publishing.
*/
const { execSync } = require("child_process");
const fs = require("fs");
const glob = require("glob");
const path = require("path");
const copy = require("recursive-copy");
const shell = require("shelljs");
const UglifyES = require("uglify-es");
(async function() {
// Clean bin directory
console.log("# Cleaning bin. Running shelljs rm -rf ./bin");
shell.rm("-rf", "./bin");
// Compile typescript - CJS build
console.log("# Compiling TypeScript (CJS). Executing `node_modules\\.bin\\tsc -p ./tsconfig.json`.");
try {
execSync("node_modules\\.bin\\tsc -p ./tsconfig.json", {
stdio: [0, 1, 2],
shell: true,
cwd: __dirname,
});
} catch (error) {
console.log("ERROR: Failed to build TypeScript (CJS).");
process.exit(1);
}
// Compile typescript - ESM build
console.log("# Compiling TypeScript (ESM). Executing `node_modules\\.bin\\tsc -p ./tsconfig.esm.json`.");
try {
execSync("node_modules\\.bin\\tsc -p ./tsconfig.esm.json", {
stdio: [0, 1, 2],
shell: true,
cwd: __dirname,
});
} catch (error) {
console.log("ERROR: Failed to build TypeScript (ESM).");
process.exit(1);
}
// Copy ts files to bin
console.log("# Copy declare files to bin.");
try {
await copy(path.join(__dirname, "src"), path.join(__dirname, "bin"), {
filter: f => {
return f.endsWith(".d.ts");
},
});
} catch (e) {
console.log("Copy failed. " + e);
}
// Uglify JavaScript (CJS)
console.log("# Minifying CJS JS using the UglifyES API, replacing un-minified files.");
let cjsCount = 0;
const cjsFiles = await new Promise((resolve, reject) => {
glob("./bin/**/*.js", { ignore: "./bin/esm/**" }, (err, files) => {
if (err) {
reject(err);
} else {
resolve(files);
}
});
});
for (const file of cjsFiles) {
if (file.includes("node_modules/")) {
continue;
}
fs.writeFileSync(
file.substr(0, file.length - 2) + "min.js",
UglifyES.minify(fs.readFileSync(file, "utf-8"), { compress: true, mangle: true }).code,
"utf-8",
);
cjsCount++;
}
console.log(`-- Minified ${cjsCount} CJS files.`);
// Uglify JavaScript (ESM)
console.log("# Minifying ESM JS using the UglifyES API, replacing un-minified files.");
let esmCount = 0;
const esmFiles = await new Promise((resolve, reject) => {
glob("./bin/esm/**/*.js", (err, files) => {
if (err) {
reject(err);
} else {
resolve(files);
}
});
});
for (const file of esmFiles) {
if (file.includes("node_modules/")) {
continue;
}
fs.writeFileSync(
file.substr(0, file.length - 2) + "min.js",
UglifyES.minify(fs.readFileSync(file, "utf-8"), { compress: true, mangle: true }).code,
"utf-8",
);
esmCount++;
}
console.log(`-- Minified ${esmCount} ESM files.`);
// Emit empty .js stubs for type-only .d.ts source files (e.g. Context.d.ts).
// These have no runtime code, but index files re-export from them.
// Only emits a stub when no .js was produced by tsc — if a .d.ts has a
// corresponding .ts file, tsc already emits the .js and this is a no-op.
// Runs after minification so stubs aren't needlessly passed through UglifyES.
console.log("# Emitting stubs for type-only modules.");
let stubCount = 0;
const dtsSourceFiles = await new Promise((resolve, reject) => {
glob("./src/**/*.d.ts", (err, files) => {
err ? reject(err) : resolve(files);
});
});
const cjsStub = '"use strict";\nObject.defineProperty(exports, "__esModule", { value: true });\n';
const esmStub = "export {};\n";
for (const dtsFile of dtsSourceFiles) {
const relative = dtsFile.replace(/^\.\/src\//, "").replace(/\.d\.ts$/, ".js");
const cjsTarget = path.join(__dirname, "bin", relative);
const esmTarget = path.join(__dirname, "bin", "esm", relative);
if (!fs.existsSync(cjsTarget)) {
fs.mkdirSync(path.dirname(cjsTarget), { recursive: true });
fs.writeFileSync(cjsTarget, cjsStub, "utf-8");
stubCount++;
}
if (!fs.existsSync(esmTarget)) {
fs.mkdirSync(path.dirname(esmTarget), { recursive: true });
fs.writeFileSync(esmTarget, esmStub, "utf-8");
stubCount++;
}
}
console.log(`-- Emitted ${stubCount} stub(s).`);
// Discover API-area subdirectories (those with an index.ts under src/).
// Shared by the docs-pipeline roll-up step below and the package.json
// exports-map generation further down — single source of truth for
// "what is an API area."
const srcDir = path.join(__dirname, "src");
const entries = fs.readdirSync(srcDir, { withFileTypes: true });
const areaSubpaths = entries
.filter(e => e.isDirectory() && fs.existsSync(path.join(srcDir, e.name, "index.ts")))
.map(e => e.name)
.sort();
// Generate package.json with conditional exports
console.log("# Generating package.json with conditional exports map.");
const pkg = JSON.parse(fs.readFileSync(path.join(__dirname, "package.json"), "utf-8"));
// Discover subpath exports by scanning src/ for directories with index.ts.
// Each API area gets an explicit entry — no wildcard pattern, which has
// inconsistent support across Node versions and bundlers. The presence of
// an `index.ts` is the single source of truth for "what is an API area":
// areas advertised here are flat-re-exported (e.g. `export * from "./Build"`)
// so the docs pipeline, which walks subpath exports,
// emits uids of the form `azure-devops-extension-api.<Symbol>` — not
// `azure-devops-extension-api.<Area>.<Symbol>`. Wrapping any area in a TS
// namespace (e.g. `import * as Build from "./Build"; export { Build };`)
// would shift its symbols under an extra uid segment and silently rename
// every uid downstream tools depend on.
const exports = {
".": {
"import": "./esm/index.js",
"require": "./index.js",
"types": "./index.d.ts"
}
};
for (const entry of entries) {
if (entry.isDirectory() && fs.existsSync(path.join(srcDir, entry.name, "index.ts"))) {
const subpath = "./" + entry.name;
exports[subpath] = {
"import": "./esm/" + entry.name + "/index.js",
"require": "./" + entry.name + "/index.js",
"types": "./" + entry.name + "/index.d.ts"
};
}
}
// "main" and "module" are fallbacks for older bundlers that don't support
// the "exports" map (e.g. Webpack 4). Modern bundlers use "exports" exclusively.
// Note: top-level "types" is intentionally omitted. Modern TypeScript (4.7+)
// resolves types via exports["."].types. Omitting top-level "types" is also
// required for the docs pipeline (type2docfx): when it sees a top-level
// "types" field it only processes that single root file, but when "types" is
// absent it scans ALL .d.ts files in the package — which is how every
// submodule's types get documented.
pkg.main = "./index.js";
pkg.module = "./esm/index.js";
pkg.exports = exports;
fs.writeFileSync(
path.join(__dirname, "bin", "package.json"),
JSON.stringify(pkg, null, 2),
"utf-8",
);
// Copy LICENSE, README.md to bin
console.log("# Copying LICENSE and README.md to bin.");
try {
await copy(path.join(__dirname, "LICENSE"), path.join(__dirname, "bin", "LICENSE"));
await copy(path.join(__dirname, "README.md"), path.join(__dirname, "bin", "README.md"));
} catch (error) {
console.log("ERROR: Failed to copy LICENSE or README.md - " + error);
}
})();