Compare commits

...

10 Commits

Author SHA1 Message Date
e0c2f8671d 2.0.17 2024-01-08 15:36:05 +01:00
c644337bf0 fix(core): update 2024-01-08 15:36:05 +01:00
405cad9002 2.0.16 2024-01-08 15:35:41 +01:00
a2af8cef07 fix(core): update 2024-01-08 15:35:41 +01:00
b1532fe23f 2.0.15 2024-01-08 14:44:50 +01:00
91cf04385d fix(core): update 2024-01-08 14:44:49 +01:00
1d5a37d0c0 2.0.14 2024-01-08 14:26:46 +01:00
9b383006c2 fix(core): update 2024-01-08 14:26:46 +01:00
7c918287f7 2.0.13 2023-09-21 00:49:15 +02:00
4a1443d2f4 fix(core): update 2023-09-21 00:49:14 +02:00
5 changed files with 857 additions and 1620 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@gitzone/tswatch", "name": "@gitzone/tswatch",
"version": "2.0.12", "version": "2.0.17",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@gitzone/tswatch", "name": "@gitzone/tswatch",
"version": "2.0.12", "version": "2.0.17",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@gitzone/tsbundle": "^2.0.7", "@gitzone/tsbundle": "^2.0.7",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tswatch", "name": "@git.zone/tswatch",
"version": "2.0.12", "version": "2.0.17",
"private": false, "private": false,
"description": "watch typescript projects during development", "description": "watch typescript projects during development",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -16,24 +16,24 @@
"build": "(tsbuild --web --allowimplicitany)" "build": "(tsbuild --web --allowimplicitany)"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.1.69", "@git.zone/tsbuild": "^2.1.70",
"@git.zone/tstest": "^1.0.77", "@git.zone/tstest": "^1.0.84",
"@push.rocks/tapbundle": "^5.0.15", "@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.5.6" "@types/node": "^20.10.7"
}, },
"dependencies": { "dependencies": {
"@api.global/typedserver": "^3.0.4", "@api.global/typedserver": "^3.0.13",
"@git.zone/tsbundle": "^2.0.10",
"@git.zone/tsrun": "^1.2.46", "@git.zone/tsrun": "^1.2.46",
"@git.zone/tsbundle": "^2.0.8",
"@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/**/*",

2451
pnpm-lock.yaml generated

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.12', version: '2.0.17',
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
}, },