Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

Commit 5e1f186

Browse files
koki-developclaude
andcommitted
Remove file renaming from TypeScript 5.9.3 package scripts
Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 04c2371 commit 5e1f186

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

packages/typescript/5.9.3/compile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
#!/usr/bin/env bash
22

3-
# Put instructions to compile source code, remove this file if the language does not require this stage
4-
5-
rename 's/$/\.ts/' "$@" # Add .ts extension
6-
73
tsc *.ts

packages/typescript/5.9.3/run

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!/usr/bin/env bash
22

3-
# Put instructions to run the runtime
4-
5-
CODE=$1.js
3+
CODE="${1%.ts}.js"
64
shift
75

8-
node $CODE "$@"
6+
node "$CODE" "$@"

0 commit comments

Comments
 (0)