We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf9285 commit d79c77aCopy full SHA for d79c77a
compile.js
@@ -117,9 +117,11 @@ qx.Class.define("qxl.packagebrowser.compile.LibraryApi", {
117
let outputPath = path.join(pkg_dir, target.outputPath);
118
let appTgtPath = path.join(targetDir, pkg_data.uri);
119
this.__mkdirp(appTgtPath);
120
+/* transpiled is needed for apiviewer
121
if (targetType === "build") {
- this.__deleteFolderRecursiveSync(path.join(outputPath, "transpiled"));
122
+ this.__deleteFolderRecursiveSync(path.join(outputPath, "transpiled"));
123
}
124
+*/
125
console.log(`>>> Moving generated applications from ${outputPath} to ${appTgtPath}`);
126
fs.renameSync(outputPath, appTgtPath);
127
// inform client that we have one or more application demos
0 commit comments