Skip to content

Commit

Permalink
added cklb to the event mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Matte22 committed Mar 4, 2024
1 parent 359fe58 commit ac52503
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lib/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function startFsEventWatcher () {
watcher.on('add', file => {
// chokidar glob argument doesn't work for UNC Windows, so we check file extension here
const extension = file.substring(file.lastIndexOf(".") + 1)
if (extension.toLowerCase() === 'ckl' || extension.toLowerCase() === 'xml') {
if (extension.toLowerCase() === 'ckl' || extension.toLowerCase() === 'xml' || extension.toLowerCase() == 'cklb') {
logger.info({
component: component,
message: 'file system event',
Expand All @@ -45,7 +45,3 @@ export default function startFsEventWatcher () {
}
})
}




0 comments on commit ac52503

Please sign in to comment.