Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ec268802ca | |||
| 6415a459d2 | |||
| 01bde87067 | |||
| 4f4c4a7538 |
12
changelog.md
12
changelog.md
@@ -1,5 +1,17 @@
|
||||
# Changelog
|
||||
|
||||
## 2025-12-08 - 2.3.0 - feat(typedserver)
|
||||
Enable compression for element development server and update @api.global/typedserver dependency
|
||||
|
||||
- Enable HTTP compression (compression: true) for the element mode development server (TypedServer) to improve asset delivery during development.
|
||||
- Bump dependency @api.global/typedserver from ^7.10.2 to ^7.11.0 in package.json.
|
||||
|
||||
## 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
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@git.zone/tswatch",
|
||||
"version": "2.2.4",
|
||||
"version": "2.3.0",
|
||||
"private": false,
|
||||
"description": "A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.",
|
||||
"exports": {
|
||||
@@ -23,7 +23,7 @@
|
||||
"@types/node": "^24.10.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@api.global/typedserver": "^7.4.1",
|
||||
"@api.global/typedserver": "^7.11.0",
|
||||
"@git.zone/tsbundle": "^2.6.3",
|
||||
"@git.zone/tsrun": "^2.0.0",
|
||||
"@push.rocks/early": "^4.0.4",
|
||||
|
||||
1019
pnpm-lock.yaml
generated
1019
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@git.zone/tswatch',
|
||||
version: '2.2.4',
|
||||
version: '2.3.0',
|
||||
description: 'A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.'
|
||||
}
|
||||
|
||||
@@ -71,8 +71,7 @@ export class TsWatch {
|
||||
injectReload: true,
|
||||
serveDir: plugins.path.join(paths.cwd, './dist_watch/'),
|
||||
port: 3002,
|
||||
enableCompression: true,
|
||||
preferredCompressionMethod: 'gzip',
|
||||
compression: true,
|
||||
});
|
||||
|
||||
const bundleAndReloadElement = async () => {
|
||||
|
||||
Reference in New Issue
Block a user