Compare commits

..

4 Commits

Author SHA1 Message Date
6227a3d184 v2.0.0
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-11-17 08:36:33 +00:00
13cc0d3014 BREAKING CHANGE(tsconfig): Remove experimentalDecorators and useDefineForClassFields from tsconfig.json 2025-11-17 08:36:33 +00:00
2896cc396f 1.6.2
Some checks failed
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-10-17 06:43:36 +00:00
e76ad2fb58 fix(ts/index): Use cli.js as the spawned CLI entry point instead of cli.child.js 2025-10-17 06:43:36 +00:00
5 changed files with 21 additions and 9 deletions

View File

@@ -1,5 +1,19 @@
# Changelog # Changelog
## 2025-11-17 - 2.0.0 - BREAKING CHANGE(tsconfig)
Remove experimentalDecorators and useDefineForClassFields from tsconfig.json
- tsconfig.json: removed compilerOptions.experimentalDecorators — decorator support is no longer enabled by default. Projects using decorators must enable experimentalDecorators in their own tsconfig.
- tsconfig.json: removed compilerOptions.useDefineForClassFields — class field emit will follow TypeScript defaults, which may change runtime semantics for some classes.
- This may break consumers relying on the previous compiler options; bumping the major version to reflect the potential breaking change.
## 2025-10-17 - 1.6.2 - fix(ts/index)
Use cli.js as the spawned CLI entry point instead of cli.child.js
- Replace references to ../cli.child.js with ../cli.js in ts/index.ts (runInChildProcess and spawnPath) to ensure child processes spawn the correct CLI entry point.
- This change fixes child process spawning failures caused by referencing a non-existent cli.child.js file.
- Add local .claude/settings.local.json (local runner/editor permissions configuration).
## 2025-10-17 - 1.6.1 - fix(plugins) ## 2025-10-17 - 1.6.1 - fix(plugins)
Export child_process.spawn from plugins and use plugins.spawn in spawnPath to remove direct require and unify process spawning Export child_process.spawn from plugins and use plugins.spawn in spawnPath to remove direct require and unify process spawning

View File

@@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tsrun", "name": "@git.zone/tsrun",
"version": "1.6.1", "version": "2.0.0",
"description": "run typescript programs efficiently", "description": "run typescript programs efficiently",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tsrun', name: '@git.zone/tsrun',
version: '1.6.1', version: '2.0.0',
description: 'run typescript programs efficiently' description: 'run typescript programs efficiently'
} }

View File

@@ -98,13 +98,13 @@ export const runCli = async (pathArg?: string, options?: IRunOptions) => {
const runInChildProcess = async (pathArg: string | undefined, cwd: string): Promise<void> => { const runInChildProcess = async (pathArg: string | undefined, cwd: string): Promise<void> => {
const { spawn } = await import('child_process'); const { spawn } = await import('child_process');
// Resolve cli.child.js relative to this file // Resolve cli.js relative to this file
const cliChildPath = plugins.path.join(__dirname, '../cli.child.js'); const cliPath = plugins.path.join(__dirname, '../cli.js');
// Build args: [Node flags, entry point, script path, script args] // Build args: [Node flags, entry point, script path, script args]
const args = [ const args = [
...process.execArgv, // Preserve --inspect, etc. ...process.execArgv, // Preserve --inspect, etc.
cliChildPath, cliPath,
...process.argv.slice(2) // Original CLI args (not spliced) ...process.argv.slice(2) // Original CLI args (not spliced)
]; ];
@@ -172,10 +172,10 @@ export const spawnPath = (
: filePath; : filePath;
// 2. Build spawn args // 2. Build spawn args
const cliChildPath = plugins.path.join(__dirname, '../cli.child.js'); const cliPath = plugins.path.join(__dirname, '../cli.js');
const args = [ const args = [
...process.execArgv, ...process.execArgv,
cliChildPath, cliPath,
resolvedPath, resolvedPath,
...(options?.args || []) ...(options?.args || [])
]; ];

View File

@@ -1,7 +1,5 @@
{ {
"compilerOptions": { "compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022", "target": "ES2022",
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext", "moduleResolution": "NodeNext",