Skip to content

Commit 909aef0

Browse files
committed
Replace ts-node with tsx
1 parent 1a9824e commit 909aef0

File tree

5 files changed

+294
-144
lines changed

5 files changed

+294
-144
lines changed

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"rimraf": "^4.0.5",
6969
"stdio-mock": "^1.2.0",
7070
"ts-jest": "^29.1.0",
71-
"ts-node": "^10.7.0",
71+
"tsx": "4.6.1",
7272
"typescript": "~5.1.6"
7373
},
7474
"packageManager": "[email protected]",
@@ -81,7 +81,8 @@
8181
},
8282
"lavamoat": {
8383
"allowScripts": {
84-
"@lavamoat/preinstall-always-fail": false
84+
"@lavamoat/preinstall-always-fail": false,
85+
"tsx>esbuild": false
8586
}
8687
}
8788
}

tests/functional/helpers/constants.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,5 @@ import path from 'path';
22

33
const ROOT_DIR = path.resolve(__dirname, '../../..');
44
export const TOOL_EXECUTABLE_PATH = path.join(ROOT_DIR, 'src', 'cli.ts');
5-
export const TS_NODE_PATH = path.join(
6-
ROOT_DIR,
7-
'node_modules',
8-
'.bin',
9-
'ts-node',
10-
);
5+
6+
export const TSX_PATH = path.join(ROOT_DIR, 'node_modules', '.bin', 'tsx');

tests/functional/helpers/monorepo-environment.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fs from 'fs';
22
import path from 'path';
33
import { ExecaReturnValue } from 'execa';
44
import YAML from 'yaml';
5-
import { TOOL_EXECUTABLE_PATH, TS_NODE_PATH } from './constants.js';
5+
import { TOOL_EXECUTABLE_PATH, TSX_PATH } from './constants.js';
66
import Environment, {
77
EnvironmentOptions,
88
PackageSpecification,
@@ -126,7 +126,6 @@ cat "${releaseSpecificationPath}" > "$1"
126126
await fs.promises.chmod(releaseSpecificationEditorPath, 0o777);
127127

128128
const args = [
129-
'--transpileOnly',
130129
TOOL_EXECUTABLE_PATH,
131130
'--project-directory',
132131
this.localRepo.getWorkingDirectoryPath(),
@@ -137,7 +136,7 @@ cat "${releaseSpecificationPath}" > "$1"
137136
const env = {
138137
EDITOR: releaseSpecificationEditorPath,
139138
};
140-
const result = await this.localRepo.runCommand(TS_NODE_PATH, args, { env });
139+
const result = await this.localRepo.runCommand(TSX_PATH, args, { env });
141140

142141
debug(
143142
['---- START OUTPUT -----', result.all, '---- END OUTPUT -----'].join(

tsconfig.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@
1212
"strict": true,
1313
"target": "ES2022"
1414
},
15-
"exclude": ["./dist/**/*", "node_modules"],
16-
"ts-node": { "esm": true }
15+
"exclude": ["./dist/**/*", "node_modules"]
1716
}

0 commit comments

Comments
 (0)