From b5133c2a9c3f566241b2a8aaf75e193d2fd79d33 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Thu, 26 Jun 2025 23:16:12 +0000 Subject: [PATCH] fix(package.json): Add packageManager field to package.json for pnpm configuration --- 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 3c16908..d3f4592 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-06-26 - 1.1.1 - fix(package.json) +Add packageManager field to package.json for pnpm configuration + +- Added "packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977" to package.json + ## 2025-06-26 - 1.1.0 - feat(Smartchok) Migrate to chokidar 4.x with picomatch glob support, update documentation and tests diff --git a/package.json b/package.json index 9c5f2c6..cb53f68 100644 --- a/package.json +++ b/package.json @@ -63,5 +63,6 @@ "file system events", "real-time", "watch files" - ] + ], + "packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977" } diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index e0015be..500e0a8 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartchok', - version: '1.1.0', + version: '1.1.1', description: 'A smart wrapper for chokidar 4.x with glob pattern support and enhanced features.' }