Compare commits

..

2 Commits

Author SHA1 Message Date
fd8dc2021d v2.0.1
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-12-13 09:36:28 +00:00
bd28ec06c6 fix(cli): Align package scope to @git.zone, bump dependency versions and remove obsolete pnpm workspace setting 2025-12-13 09:36:28 +00:00
7 changed files with 899 additions and 856 deletions

View File

@@ -1,5 +1,14 @@
# 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

View File

@@ -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);

View File

@@ -11,7 +11,7 @@
"gitscope": "gitzone",
"gitrepo": "tsrun",
"description": "run typescript programs efficiently",
"npmPackagename": "@gitzone/tsrun",
"npmPackagename": "@git.zone/tsrun",
"license": "MIT"
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "@git.zone/tsrun",
"version": "2.0.0",
"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

File diff suppressed because it is too large Load Diff

View File

@@ -1,2 +0,0 @@
onlyBuiltDependencies:
- esbuild

View File

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