From b24689406076e47a27f63906295505da61869cc0 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sat, 18 Jan 2025 23:53:15 +0100 Subject: [PATCH] fix(build): Fix tsbuild script to include missing flag --- changelog.md | 5 +++++ package.json | 2 +- ts/00_commitinfo_data.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 75193b0..e3d12c7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-01-18 - 2.1.1 - fix(build) +Fix tsbuild script to include missing flag + +- Updated the build script in package.json to include --allowimplicitany flag. + ## 2025-01-18 - 2.1.0 - feat(ci) Add GitHub Actions workflows for CI/CD diff --git a/package.json b/package.json index 766a0f5..056ce0e 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "license": "MIT", "scripts": { "test": "(tstest test/)", - "build": "(tsbuild --web)", + "build": "(tsbuild --allowimplicitany --web)", "buildDocs": "tsdoc" }, "devDependencies": { diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 7d0f66d..f4eabb0 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartcontext', - version: '2.1.0', + version: '2.1.1', description: 'A module providing advanced asynchronous context management to enrich logs with context and manage scope effectively in Node.js applications.' }