fix(core): update

This commit is contained in:
Philipp Kunz 2024-01-08 14:26:46 +01:00
parent 7c918287f7
commit 9b383006c2
4 changed files with 779 additions and 770 deletions

View File

@ -17,23 +17,23 @@
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.1.70", "@git.zone/tsbuild": "^2.1.70",
"@git.zone/tstest": "^1.0.81", "@git.zone/tstest": "^1.0.84",
"@push.rocks/tapbundle": "^5.0.15", "@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.6.3" "@types/node": "^20.10.7"
}, },
"dependencies": { "dependencies": {
"@api.global/typedserver": "^3.0.5", "@api.global/typedserver": "^3.0.9",
"@git.zone/tsbundle": "^2.0.8", "@git.zone/tsbundle": "^2.0.10",
"@git.zone/tsrun": "^1.2.46", "@git.zone/tsrun": "^1.2.46",
"@push.rocks/early": "^4.0.4", "@push.rocks/early": "^4.0.4",
"@push.rocks/lik": "^6.0.5", "@push.rocks/lik": "^6.0.12",
"@push.rocks/smartchok": "^1.0.23", "@push.rocks/smartchok": "^1.0.23",
"@push.rocks/smartcli": "^4.0.8", "@push.rocks/smartcli": "^4.0.8",
"@push.rocks/smartdelay": "^3.0.5", "@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartlog": "^3.0.3", "@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartlog-destination-local": "^9.0.0", "@push.rocks/smartlog-destination-local": "^9.0.0",
"@push.rocks/smartshell": "^3.0.3", "@push.rocks/smartshell": "^3.0.3",
"@push.rocks/taskbuffer": "^3.1.6" "@push.rocks/taskbuffer": "^3.1.7"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tswatch', name: '@git.zone/tswatch',
version: '2.0.13', version: '2.0.14',
description: 'watch typescript projects during development' description: 'watch typescript projects during development'
} }

View File

@ -3,8 +3,8 @@
"experimentalDecorators": true, "experimentalDecorators": true,
"useDefineForClassFields": false, "useDefineForClassFields": false,
"target": "ES2022", "target": "ES2022",
"module": "ES2022", "module": "NodeNext",
"moduleResolution": "nodenext", "moduleResolution": "NodeNext",
"esModuleInterop": true, "esModuleInterop": true,
"verbatimModuleSyntax": true "verbatimModuleSyntax": true
}, },