fix(build): Fix build script to use correct tsbuild command

This commit is contained in:
Philipp Kunz 2024-06-27 12:32:17 +02:00
parent 090f8101ac
commit 7c15589ce7
3 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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",

View File

@ -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.'
}