Compare commits

..

4 Commits

Author SHA1 Message Date
61a82f0d03 1.2.49 2024-06-24 12:06:14 +02:00
2c8f262c0a fix(core): Minor maintenance updates with version bump 2024-06-24 12:06:13 +02:00
bd5ec7ca76 1.2.48 2024-06-24 12:05:44 +02:00
857882807f fix(dependencies): Update TypeScript dependency version 2024-06-24 12:05:44 +02:00
4 changed files with 24 additions and 8 deletions

View File

@ -1,5 +1,14 @@
# Changelog # Changelog
## 2024-06-24 - 1.2.49 - fix(core)
Minor maintenance updates with version bump
## 2024-06-24 - 1.2.48 - fix(dependencies)
Update TypeScript dependency version
- Updated TypeScript from version 5.4.5 to 5.5.2 to include latest features and fixes.
## 2024-06-24 - 1.2.47 - fix(core) ## 2024-06-24 - 1.2.47 - fix(core)
Remove GitLab CI configuration and update dependencies Remove GitLab CI configuration and update dependencies

View File

@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tsrun", "name": "@git.zone/tsrun",
"version": "1.2.47", "version": "1.2.49",
"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",
@ -26,7 +26,7 @@
"@push.rocks/smartfile": "^11.0.21", "@push.rocks/smartfile": "^11.0.21",
"@push.rocks/smartshell": "^3.0.5", "@push.rocks/smartshell": "^3.0.5",
"ts-node": "^10.9.2", "ts-node": "^10.9.2",
"typescript": "5.4.5" "typescript": "5.5.2"
}, },
"private": false, "private": false,
"files": [ "files": [

17
pnpm-lock.yaml generated
View File

@ -16,10 +16,10 @@ importers:
version: 3.0.5 version: 3.0.5
ts-node: ts-node:
specifier: ^10.9.2 specifier: ^10.9.2
version: 10.9.2(@types/node@20.14.8)(typescript@5.4.5) version: 10.9.2(@types/node@20.14.8)(typescript@5.5.2)
typescript: typescript:
specifier: 5.4.5 specifier: 5.5.2
version: 5.4.5 version: 5.5.2
devDependencies: devDependencies:
'@git.zone/tsbuild': '@git.zone/tsbuild':
specifier: ^2.1.80 specifier: ^2.1.80
@ -625,6 +625,11 @@ packages:
engines: {node: '>=14.17'} engines: {node: '>=14.17'}
hasBin: true hasBin: true
typescript@5.5.2:
resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==}
engines: {node: '>=14.17'}
hasBin: true
undici-types@5.26.5: undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
@ -1289,7 +1294,7 @@ snapshots:
tree-kill@1.2.2: {} tree-kill@1.2.2: {}
ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5): ts-node@10.9.2(@types/node@20.14.8)(typescript@5.5.2):
dependencies: dependencies:
'@cspotcode/source-map-support': 0.8.1 '@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11 '@tsconfig/node10': 1.0.11
@ -1303,7 +1308,7 @@ snapshots:
create-require: 1.1.1 create-require: 1.1.1
diff: 4.0.2 diff: 4.0.2
make-error: 1.3.6 make-error: 1.3.6
typescript: 5.4.5 typescript: 5.5.2
v8-compile-cache-lib: 3.0.1 v8-compile-cache-lib: 3.0.1
yn: 3.1.1 yn: 3.1.1
@ -1315,6 +1320,8 @@ snapshots:
typescript@5.4.5: {} typescript@5.4.5: {}
typescript@5.5.2: {}
undici-types@5.26.5: {} undici-types@5.26.5: {}
universalify@2.0.1: {} universalify@2.0.1: {}

View File

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