Skip to content

Commit fda5887

Browse files
taylortomclaude
andcommitted
Fix: Use correct Paths.OutputDirs properties in addWatches (fixes #443)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 71f5f65 commit fda5887

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)