Skip to content

Commit 42e21f3

Browse files
authored
Fix: Apply audit fixes (fixes #443) (#444)
2 parents 9bdaf97 + fda5887 commit 42e21f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/UiBuild.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ class UiBuild {
190190
this.addWatch(this.Globs.hbs, this.compileHandlebars.bind(this))
191191
this.addWatch(this.Globs.less, this.compileLess.bind(this))
192192
this.addWatch(this.Globs.js, this.compileJs.bind(this))
193-
this.addWatch(this.Globs.assets, this.onChanged('assets', this.Paths.OutputAssets))
193+
this.addWatch(this.Globs.assets, this.onChanged('assets', this.Paths.OutputDirs.assets))
194194
this.addWatch(this.Globs.required, this.onChanged('required', this.Paths.Output))
195-
this.addWatch(this.Globs.libraries, this.onChanged('libraries', this.Paths.OutputLibraries))
195+
this.addWatch(this.Globs.libraries, this.onChanged('libraries', this.Paths.OutputDirs.libraries))
196196
}
197197

198198
async run () {

0 commit comments

Comments
 (0)