Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 01bde87067 | |||
| 4f4c4a7538 | |||
| 0dee896201 | |||
| 29f7283f7a |
14
changelog.md
14
changelog.md
@@ -1,5 +1,19 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-12-08 - 2.2.5 - fix(typedserver)
|
||||||
|
Update @api.global/typedserver to ^7.10.2 and remove deprecated compression options from TypedServer initialization
|
||||||
|
|
||||||
|
- Bump @api.global/typedserver dependency from ^7.4.1 to ^7.10.2.
|
||||||
|
- Remove enableCompression and preferredCompressionMethod options when creating TypedServer in element mode to be compatible with the newer API.
|
||||||
|
|
||||||
|
## 2025-12-04 - 2.2.4 - fix(dependencies)
|
||||||
|
Bump dependency versions: @api.global/typedserver, @git.zone/tsbundle, @push.rocks/smartfs, @push.rocks/taskbuffer
|
||||||
|
|
||||||
|
- Upgrade @api.global/typedserver from ^3.0.80 to ^7.4.1
|
||||||
|
- Upgrade @git.zone/tsbundle from ^2.6.2 to ^2.6.3
|
||||||
|
- Upgrade @push.rocks/smartfs from ^1.1.3 to ^1.2.0
|
||||||
|
- Upgrade @push.rocks/taskbuffer from ^3.4.0 to ^3.5.0
|
||||||
|
|
||||||
## 2025-12-04 - 2.2.3 - fix(tswatch.classes.watcher)
|
## 2025-12-04 - 2.2.3 - fix(tswatch.classes.watcher)
|
||||||
Convert directory watch paths to glob patterns for smartwatch compatibility
|
Convert directory watch paths to glob patterns for smartwatch compatibility
|
||||||
|
|
||||||
|
|||||||
10
package.json
10
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tswatch",
|
"name": "@git.zone/tswatch",
|
||||||
"version": "2.2.3",
|
"version": "2.2.5",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.",
|
"description": "A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.",
|
||||||
"exports": {
|
"exports": {
|
||||||
@@ -23,19 +23,19 @@
|
|||||||
"@types/node": "^24.10.1"
|
"@types/node": "^24.10.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@api.global/typedserver": "^3.0.80",
|
"@api.global/typedserver": "^7.10.2",
|
||||||
"@git.zone/tsbundle": "^2.6.2",
|
"@git.zone/tsbundle": "^2.6.3",
|
||||||
"@git.zone/tsrun": "^2.0.0",
|
"@git.zone/tsrun": "^2.0.0",
|
||||||
"@push.rocks/early": "^4.0.4",
|
"@push.rocks/early": "^4.0.4",
|
||||||
"@push.rocks/lik": "^6.2.2",
|
"@push.rocks/lik": "^6.2.2",
|
||||||
"@push.rocks/smartcli": "^4.0.19",
|
"@push.rocks/smartcli": "^4.0.19",
|
||||||
"@push.rocks/smartdelay": "^3.0.5",
|
"@push.rocks/smartdelay": "^3.0.5",
|
||||||
"@push.rocks/smartfs": "^1.1.3",
|
"@push.rocks/smartfs": "^1.2.0",
|
||||||
"@push.rocks/smartlog": "^3.1.10",
|
"@push.rocks/smartlog": "^3.1.10",
|
||||||
"@push.rocks/smartlog-destination-local": "^9.0.2",
|
"@push.rocks/smartlog-destination-local": "^9.0.2",
|
||||||
"@push.rocks/smartshell": "^3.3.0",
|
"@push.rocks/smartshell": "^3.3.0",
|
||||||
"@push.rocks/smartwatch": "^5.0.0",
|
"@push.rocks/smartwatch": "^5.0.0",
|
||||||
"@push.rocks/taskbuffer": "^3.4.0"
|
"@push.rocks/taskbuffer": "^3.5.0"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"ts/**/*",
|
"ts/**/*",
|
||||||
|
|||||||
1529
pnpm-lock.yaml
generated
1529
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tswatch',
|
name: '@git.zone/tswatch',
|
||||||
version: '2.2.3',
|
version: '2.2.5',
|
||||||
description: 'A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.'
|
description: 'A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -71,8 +71,6 @@ export class TsWatch {
|
|||||||
injectReload: true,
|
injectReload: true,
|
||||||
serveDir: plugins.path.join(paths.cwd, './dist_watch/'),
|
serveDir: plugins.path.join(paths.cwd, './dist_watch/'),
|
||||||
port: 3002,
|
port: 3002,
|
||||||
enableCompression: true,
|
|
||||||
preferredCompressionMethod: 'gzip',
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const bundleAndReloadElement = async () => {
|
const bundleAndReloadElement = async () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user