From 41c54a070c3cec46a7b1f1dfc062155cdbdb2f6a Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 28 Oct 2024 16:55:25 +0100 Subject: [PATCH] fix(core): Fixed syntax issues in commitinfo data and package.json file. --- changelog.md | 6 ++++++ package.json | 5 +++-- ts/00_commitinfo_data.ts | 2 +- ts_web/00_commitinfo_data.ts | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index 97a4588..09bffe8 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2024-10-28 - 4.1.1 - fix(core) +Fixed syntax issues in commitinfo data and package.json file. + +- Added a missing newline at the end of the package.json file. +- Corrected a trailing comma and added proper syntax in the commitinfo data. + ## 2024-10-28 - 4.1.0 - feat(core) Enhance core functionality for cloud management and orchestration diff --git a/package.json b/package.json index 53a2038..e6761a9 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,8 @@ "start": "node cli.js", "startTs": "node cli.ts.js", "watch": "tswatch website", - "publish": "tspublish" + "publish": "tspublish", + "buildDocs": "tsdoc" }, "devDependencies": { "@git.zone/tsbuild": "^2.1.85", @@ -126,4 +127,4 @@ "security", "logging" ] -} +} \ No newline at end of file diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index e5880a8..a046903 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/cloudly', - version: '4.1.0', + version: '4.1.1', description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index e5880a8..a046903 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/cloudly', - version: '4.1.0', + version: '4.1.1', description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.' }