diff --git a/changelog.md b/changelog.md index c5a2498..390c831 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-10-21 - 1.2.1 - fix(package.json) +Ensure bin field is properly restructured + +- Fixed the structure of the package.json to ensure the bin field is accurately set. + ## 2024-10-21 - 1.2.0 - feat(core) Enhance package publication workflow with dependency handling and CLI improvements. diff --git a/package.json b/package.json index 8aaa390..806bd57 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,9 @@ "build": "(tsbuild --web --allowimplicitany)", "buildDocs": "(tsdoc)" }, + "bin": { + "tspublish": "cli.js" + }, "devDependencies": { "@git.zone/tsbuild": "^2.1.25", "@git.zone/tsbundle": "^2.0.5", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index efebe99..1e010ee 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tspublish', - version: '1.2.0', + version: '1.2.1', description: 'A tool to publish multiple, concise, and small packages from monorepos, specifically for TypeScript projects within a git environment.' }