adapt-authoring-ui 1.8.6 → 1.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/UiBuild.js +1 -1
- package/package.json +1 -1
package/lib/UiBuild.js
CHANGED
|
@@ -60,7 +60,7 @@ class UiBuild {
|
|
|
60
60
|
this.preBuildHook = new Hook()
|
|
61
61
|
this.postBuildHook = new Hook()
|
|
62
62
|
|
|
63
|
-
this.jsTask = new JavaScriptTask(this.Paths.Output, this.log, this.uiPlugins, this.app.getConfig('tempDir'))
|
|
63
|
+
this.jsTask = new JavaScriptTask(this.Paths.Output, this.log, this.uiPlugins, path.join(this.app.getConfig('tempDir'), 'ui-build-cache'))
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
collate (collateAtFolderName, destFolder, srcFileName) {
|
package/package.json
CHANGED