Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fd8dc2021d | |||
| bd28ec06c6 | |||
| 6227a3d184 | |||
| 13cc0d3014 |
16
changelog.md
16
changelog.md
@@ -1,5 +1,21 @@
|
||||
# Changelog
|
||||
|
||||
## 2025-12-13 - 2.0.1 - fix(cli)
|
||||
Align package scope to @git.zone, bump dependency versions and remove obsolete pnpm workspace setting
|
||||
|
||||
- Update runtime import in cli.ts.js from @gitzone/tsrun to @git.zone/tsrun
|
||||
- Change npm package name in npmextra.json to @git.zone/tsrun
|
||||
- Bump devDependencies and dependencies in package.json (@git.zone/tsbuild -> ^3.1.2, @push.rocks/smartcli -> ^4.0.19, @types/node -> ^25.0.1, @push.rocks/smartfile -> ^13.1.0, tsx -> ^4.21.0)
|
||||
- Remove onlyBuiltDependencies entry from pnpm-workspace.yaml
|
||||
- Ensure commitinfo metadata (ts/00_commitinfo_data.ts) and package.json remain aligned with @git.zone/tsrun
|
||||
|
||||
## 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
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/usr/bin/env node
|
||||
process.env.CLI_CALL = 'true';
|
||||
|
||||
import * as tsrun from '@gitzone/tsrun';
|
||||
import * as tsrun from '@git.zone/tsrun';
|
||||
tsrun.runPath('./cli.child.js', import.meta.url);
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"gitscope": "gitzone",
|
||||
"gitrepo": "tsrun",
|
||||
"description": "run typescript programs efficiently",
|
||||
"npmPackagename": "@gitzone/tsrun",
|
||||
"npmPackagename": "@git.zone/tsrun",
|
||||
"license": "MIT"
|
||||
}
|
||||
}
|
||||
|
||||
12
package.json
12
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@git.zone/tsrun",
|
||||
"version": "1.6.2",
|
||||
"version": "2.0.1",
|
||||
"description": "run typescript programs efficiently",
|
||||
"main": "dist_ts/index.js",
|
||||
"typings": "dist_ts/index.d.ts",
|
||||
@@ -17,15 +17,15 @@
|
||||
"buildDocs": "tsdoc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@git.zone/tsbuild": "^2.1.80",
|
||||
"@push.rocks/smartcli": "^4.0.11",
|
||||
"@types/node": "^20.14.8",
|
||||
"@git.zone/tsbuild": "^3.1.2",
|
||||
"@push.rocks/smartcli": "^4.0.19",
|
||||
"@types/node": "^25.0.1",
|
||||
"node-fetch": "^3.3.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@push.rocks/smartfile": "^11.0.21",
|
||||
"@push.rocks/smartfile": "^13.1.0",
|
||||
"@push.rocks/smartshell": "^3.0.5",
|
||||
"tsx": "^4.19.2"
|
||||
"tsx": "^4.21.0"
|
||||
},
|
||||
"private": false,
|
||||
"files": [
|
||||
|
||||
1726
pnpm-lock.yaml
generated
1726
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -1,2 +0,0 @@
|
||||
onlyBuiltDependencies:
|
||||
- esbuild
|
||||
@@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@git.zone/tsrun',
|
||||
version: '1.6.2',
|
||||
version: '2.0.1',
|
||||
description: 'run typescript programs efficiently'
|
||||
}
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"experimentalDecorators": true,
|
||||
"useDefineForClassFields": false,
|
||||
"target": "ES2022",
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
|
||||
Reference in New Issue
Block a user