-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Expand file tree
/
Copy pathdevkit-admin.mts
More file actions
52 lines (46 loc) · 1.31 KB
/
devkit-admin.mts
File metadata and controls
52 lines (46 loc) · 1.31 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
#!/usr/bin/env node
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import path from 'node:path';
import { parseArgs, styleText } from 'node:util';
const { values, positionals } = parseArgs({
args: process.argv.slice(2),
options: {
verbose: {
type: 'boolean',
},
},
allowPositionals: true,
strict: false, // Allow unknown options to pass through.
});
const scriptName = positionals.shift();
const args = {
...values,
_: positionals,
};
const cwd = process.cwd();
const scriptDir = import.meta.dirname;
process.chdir(path.join(scriptDir, '..'));
const originalConsole = { ...console };
console.warn = function (...args) {
const [m, ...rest] = args;
originalConsole.warn(styleText(['yellow'], m), ...rest);
};
console.error = function (...args) {
const [m, ...rest] = args;
originalConsole.error(styleText(['red'], m), ...rest);
};
try {
const script = await import(`./${scriptName}.mts`);
const exitCode = await script.default(args, cwd);
process.exitCode = typeof exitCode === 'number' ? exitCode : 0;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (err: any) {
console.error(err.stack);
process.exitCode = 99;
}