Skip to content

Commit 26498d9

Browse files
committed
fix: add missing chokidar dependency to package.json
The chokidar package is imported in bin/cli.js for the watch functionality but was not listed in dependencies. This caused ERR_MODULE_NOT_FOUND errors when the package was installed globally. Fixes the issue where users would see 'Cannot find package chokidar' error when running fetch-client-generator after global installation.
1 parent 247631d commit 26498d9

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"author": "",
2121
"license": "ISC",
2222
"dependencies": {
23+
"chokidar": "^4.0.3",
2324
"commander": "^14.0.0"
2425
},
2526
"devDependencies": {

0 commit comments

Comments
 (0)