From 3722258d69b4c82e454023286afbce2ed0f4a4ed Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Sun, 1 Feb 2026 16:19:37 +0000 Subject: [PATCH] fix(templates/npm): use tsbuild tsfolders instead of --web flag in npm template build script --- assets/templates/npm/.package.json | 2 +- changelog.md | 6 ++++++ ts/00_commitinfo_data.ts | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/assets/templates/npm/.package.json b/assets/templates/npm/.package.json index 52cbb23..a64d131 100644 --- a/assets/templates/npm/.package.json +++ b/assets/templates/npm/.package.json @@ -13,7 +13,7 @@ fileName: package.json "license": "{{module.license}}", "scripts": { "test": "(tstest test/ --verbose --logfile --timeout 60)", - "build": "(tsbuild --web --allowimplicitany)", + "build": "(tsbuild tsfolders --allowimplicitany)", "buildDocs": "(tsdoc)" }, "devDependencies": { diff --git a/changelog.md b/changelog.md index 3a2f8e2..7a701ab 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2026-02-01 - 2.13.6 - fix(templates/npm) +use tsbuild tsfolders instead of --web flag in npm template build script + +- Changed build script in assets/templates/npm/.package.json from "(tsbuild --web --allowimplicitany)" to "(tsbuild tsfolders --allowimplicitany)" +- Replaces --web flag with explicit tsfolders argument to correctly target project folders during build + ## 2026-02-01 - 2.13.5 - fix(templates/npm) update npm template: tweak test script, bump devDependencies, add smartpath dependency, and fix ts import path diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 9532fd4..b02d290 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/cli', - version: '2.13.5', + version: '2.13.6', description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.' }