2 Commits

3 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,10 @@
# Changelog # 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) ## 2025-06-26 - 1.1.0 - feat(Smartchok)
Migrate to chokidar 4.x with picomatch glob support, update documentation and tests Migrate to chokidar 4.x with picomatch glob support, update documentation and tests

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartchok", "name": "@push.rocks/smartchok",
"version": "1.1.0", "version": "1.1.1",
"private": false, "private": false,
"description": "A smart wrapper for chokidar 4.x with glob pattern support and enhanced features.", "description": "A smart wrapper for chokidar 4.x with glob pattern support and enhanced features.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@ -63,5 +63,6 @@
"file system events", "file system events",
"real-time", "real-time",
"watch files" "watch files"
] ],
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
} }

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartchok', 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.' description: 'A smart wrapper for chokidar 4.x with glob pattern support and enhanced features.'
} }