From 75f8877356d6005f5ef6cabe4501334b227fc8ad Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Tue, 14 Jan 2025 17:35:07 +0100 Subject: [PATCH] fix(package): Fix scripts section in package.json by adding missing comma --- changelog.md | 5 +++++ package.json | 3 ++- ts/00_commitinfo_data.ts | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index a83b62c..aae95cc 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-01-14 - 1.0.5 - fix(package) +Fix scripts section in package.json by adding missing comma + +- Corrected the JSON format in the scripts section by adding a missing comma between format and build scripts. + ## 2025-01-14 - 1.0.4 - fix(core) Removed unnecessary files and updated dependencies diff --git a/package.json b/package.json index 73e66f8..f181735 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "author": "Lossless GmbH", "scripts": { "test": "(tstest test/)", - "format": "(gitzone format)" + "format": "(gitzone format)", + "build": "(tsbuild)" }, "dependencies": { "@types/figlet": "^1.7.0", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 5751795..697dae9 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/beautyfiglet', - version: '1.0.4', + version: '1.0.5', description: 'A Node.js module for creating figlet text displays.' }