Compare commits

..

2 Commits

Author SHA1 Message Date
jkunz 7a1dbbff21 v3.3.3
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-04-30 12:54:44 +00:00
jkunz 859f8fb026 fix(build): remove the deprecated --allowimplicitany flag from the build script 2026-04-30 12:54:44 +00:00
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog # Changelog
## 2026-04-30 - 3.3.3 - fix(build)
remove the deprecated --allowimplicitany flag from the build script
- updates the package.json build script to run tsbuild --web without the extra compiler flag
## 2026-03-24 - 3.3.2 - fix(config) ## 2026-03-24 - 3.3.2 - fix(config)
migrate project metadata and documentation to .smartconfig.json migrate project metadata and documentation to .smartconfig.json
+2 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "@git.zone/tswatch", "name": "@git.zone/tswatch",
"version": "3.3.2", "version": "3.3.3",
"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": {
@@ -14,7 +14,7 @@
}, },
"scripts": { "scripts": {
"test": "(tstest test/ --web)", "test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)", "build": "(tsbuild --web)",
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"devDependencies": { "devDependencies": {
+1 -1
View File
@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tswatch', name: '@git.zone/tswatch',
version: '3.3.2', version: '3.3.3',
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.'
} }