From 7c15589ce72884d44b5dd3884e5d37377d4e6c2d Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Thu, 27 Jun 2024 12:32:17 +0200 Subject: [PATCH] fix(build): Fix build script to use correct tsbuild command --- changelog.md | 5 +++++ package.json | 2 +- ts_web/00_commitinfo_data.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 8732785..4496e17 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-06-27 - 1.1.1 - fix(build) +Fix build script to use correct tsbuild command + +- Corrected the build script in package.json to use 'tsbuild tsfolders --allowimplicitany && tsbundle element --production' instead of 'tsbuild element --allowimplicitany && tsbundle element --production'. + ## 2024-06-27 - 1.1.0 - feat(elements) Add performance improvements to uptimelink-webwidget diff --git a/package.json b/package.json index a5e65c4..a1e2316 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "type": "module", "scripts": { "test": "npm run build", - "build": "tsbuild element --allowimplicitany && tsbundle element --production", + "build": "tsbuild tsfolders --allowimplicitany && tsbundle element --production", "watch": "tswatch element" }, "author": "Lossless GmbH", diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 57fde56..2ff9ef0 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@uptime.link/webwidget', - version: '1.1.0', + version: '1.1.1', description: 'The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.' }