Skip to content

Commit

Permalink
Merge pull request #261 from neilenns/renovate/chokidar-4.x
Browse files Browse the repository at this point in the history
Update dependency chokidar to v4
  • Loading branch information
neilenns authored Sep 16, 2024
2 parents 4d15d43 + 49a3480 commit 508a626
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 77 deletions.
99 changes: 24 additions & 75 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"dependencies": {
"@elgato/streamdeck": "^0.3.0",
"axios": "^1.7.2",
"chokidar": "^3.6.0",
"chokidar": "^4.0.0",
"debounce": "^2.1.0",
"handlebars": "^4.7.8",
"lru-cache": "^11.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/managers/svg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class SvgTemplateManager extends EventEmitter {

this.templates = new Map<string, TemplateInfo>();
this.watcher = chokidar.watch([]);
this.watcher.on("change", (filePath) => {
this.watcher.on("change", (filePath: string) => {
this.handleFileChange(filePath);
});
}
Expand Down

0 comments on commit 508a626

Please sign in to comment.