Skip to content

Commit d79c77a

Browse files
committed
transpiled stuff is needed for apiviewer
1 parent bdf9285 commit d79c77a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

compile.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,11 @@ qx.Class.define("qxl.packagebrowser.compile.LibraryApi", {
117117
let outputPath = path.join(pkg_dir, target.outputPath);
118118
let appTgtPath = path.join(targetDir, pkg_data.uri);
119119
this.__mkdirp(appTgtPath);
120+
/* transpiled is needed for apiviewer
120121
if (targetType === "build") {
121-
this.__deleteFolderRecursiveSync(path.join(outputPath, "transpiled"));
122+
this.__deleteFolderRecursiveSync(path.join(outputPath, "transpiled"));
122123
}
124+
*/
123125
console.log(`>>> Moving generated applications from ${outputPath} to ${appTgtPath}`);
124126
fs.renameSync(outputPath, appTgtPath);
125127
// inform client that we have one or more application demos

0 commit comments

Comments
 (0)