diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-02-20 10:11:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 15:11:02 +0000 |
commit | 088c6c17ac7b6076604fd3bc40287d4afda0d940 (patch) | |
tree | 2a6d78a18fccad1347a87bf838e79e99fba90c39 /dev/bin/build.js | |
parent | 2da866f982930c76d2317a3be426410683ecf5a2 (diff) |
Remove testMain (#711)
Diffstat (limited to 'dev/bin/build.js')
-rw-r--r-- | dev/bin/build.js | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/dev/bin/build.js b/dev/bin/build.js index 7a954c66..26fbff07 100644 --- a/dev/bin/build.js +++ b/dev/bin/build.js @@ -26,7 +26,7 @@ import readline from 'readline'; import {parseArgs} from 'util'; import {buildLibs} from '../build-libs.js'; import {ManifestUtil} from '../manifest-util.js'; -import {getAllFiles, testMain} from '../util.js'; +import {getAllFiles} from '../util.js'; const dirname = path.dirname(fileURLToPath(import.meta.url)); @@ -217,10 +217,8 @@ function ensureFilesExist(directory, files) { } } -/** - * @param {string[]} argv - */ -export async function main(argv) { +/** */ +export async function main() { /** @type {import('util').ParseArgsConfig['options']} */ const parseArgsConfigOptions = { all: { @@ -248,6 +246,7 @@ export async function main(argv) { } }; + const argv = process.argv.slice(2); const {values: args} = parseArgs({args: argv, options: parseArgsConfigOptions}); const dryRun = /** @type {boolean} */ (args.dryRun); @@ -280,4 +279,4 @@ export async function main(argv) { } } -await testMain(main, process.argv.slice(2)); +await main(); |