Convert a few more build scripts to TypeScript

For #277526
This commit is contained in:
Matt Bierner
2025-11-21 09:20:38 -08:00
parent daaf36b4f5
commit f0e7fe3775
34 changed files with 146 additions and 155 deletions

View File

@@ -13,13 +13,13 @@ function code() {
# Sync built-in extensions
npm run download-builtin-extensions
NODE=$(node build/lib/node.js)
NODE=$(node build/lib/node.ts)
if [ ! -e $NODE ];then
# Load remote node
npm run gulp node
fi
NODE=$(node build/lib/node.js)
NODE=$(node build/lib/node.ts)
$NODE ./scripts/code-web.js "$@"
}