Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
f73ca7ac2f | |||
75acc4b768 | |||
83cf8594ab | |||
417dc4c763 |
11
changelog.md
11
changelog.md
@@ -1,5 +1,16 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-07-29 - 2.2.1 - fix(exports)
|
||||||
|
Fix package.json exports field syntax
|
||||||
|
|
||||||
|
- Fixed exports field syntax from "./" to "." for proper module resolution
|
||||||
|
|
||||||
|
## 2025-07-29 - 2.2.0 - feat(exports)
|
||||||
|
Modernize package exports and expose watcher class
|
||||||
|
|
||||||
|
- Updated package.json to use modern exports field instead of main/typings
|
||||||
|
- Exposed TsWatch watcher class through index exports
|
||||||
|
|
||||||
## 2025-07-29 - 2.1.3 - fix(documentation)
|
## 2025-07-29 - 2.1.3 - fix(documentation)
|
||||||
Update and align documentation with internal CLI and project structure
|
Update and align documentation with internal CLI and project structure
|
||||||
|
|
||||||
|
11
package.json
11
package.json
@@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/tswatch",
|
"name": "@git.zone/tswatch",
|
||||||
"version": "2.1.4",
|
"version": "2.2.1",
|
||||||
"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.",
|
||||||
"main": "dist_ts/index.js",
|
"exports": {
|
||||||
"typings": "dist_ts/index.d.ts",
|
".": "./dist_ts/index.js"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -18,8 +19,8 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.6.4",
|
"@git.zone/tsbuild": "^2.6.4",
|
||||||
"@git.zone/tstest": "^2.3.1",
|
"@git.zone/tstest": "^2.3.2",
|
||||||
"@types/node": "^24.0.4"
|
"@types/node": "^22"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@api.global/typedserver": "^3.0.74",
|
"@api.global/typedserver": "^3.0.74",
|
||||||
|
912
pnpm-lock.yaml
generated
912
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.1.3',
|
version: '2.2.1',
|
||||||
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.'
|
||||||
}
|
}
|
||||||
|
@@ -3,3 +3,5 @@ early.start('tswatch');
|
|||||||
export * from './tswatch.classes.tswatch.js';
|
export * from './tswatch.classes.tswatch.js';
|
||||||
export * from './tswatch.cli.js';
|
export * from './tswatch.cli.js';
|
||||||
early.stop();
|
early.stop();
|
||||||
|
|
||||||
|
export * from './tswatch.classes.watcher.js';
|
Reference in New Issue
Block a user