profoundjs 6.5.0 → 6.6.0
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/htdocs/profoundui/proddata/css/profoundui.css +1 -1
- package/htdocs/profoundui/proddata/js/designer.js +1935 -1934
- package/htdocs/profoundui/proddata/js/runtime.js +728 -728
- package/package.json +2 -1
- package/profound.jse +1 -1
- package/setup/install_utils.js +3 -4
- package/setup/pjsdist.savf +0 -0
- package/setup/setup.js +4 -5
package/setup/install_utils.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
"use strict";
|
|
3
2
|
|
|
4
3
|
/*
|
|
@@ -133,10 +132,10 @@ exports.libraryExists = function(name) {
|
|
|
133
132
|
let exists;
|
|
134
133
|
try {
|
|
135
134
|
child_process.execSync(
|
|
136
|
-
|
|
135
|
+
`system 'qsys/chkobj obj(${name.trim()}) objtype(*lib) aut(*none)'`,
|
|
137
136
|
{
|
|
138
|
-
|
|
139
|
-
|
|
137
|
+
stdio: ["ignore", "pipe", "pipe"],
|
|
138
|
+
env: {}
|
|
140
139
|
}
|
|
141
140
|
);
|
|
142
141
|
exists = true;
|
package/setup/pjsdist.savf
CHANGED
|
Binary file
|
package/setup/setup.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
"use strict";
|
|
3
2
|
|
|
4
3
|
/*
|
|
@@ -253,8 +252,8 @@ let SILENT_MODE = false;
|
|
|
253
252
|
log("Creating modules directory.");
|
|
254
253
|
fs.mkdirSync(path.join(deployDir, "modules"));
|
|
255
254
|
}
|
|
256
|
-
|
|
257
|
-
|
|
255
|
+
|
|
256
|
+
// Create plugins directory.
|
|
258
257
|
if (directoryExists(path.join(deployDir, "plugins"))) {
|
|
259
258
|
log("plugins directory exists.");
|
|
260
259
|
}
|
|
@@ -289,8 +288,8 @@ let SILENT_MODE = false;
|
|
|
289
288
|
log("Creating puidnlexit.js.");
|
|
290
289
|
copyFile(path.join(__dirname, "modules", "puidnlexit.js"), path.join(deployDir, "modules"), "utf8");
|
|
291
290
|
}
|
|
292
|
-
|
|
293
|
-
|
|
291
|
+
|
|
292
|
+
// Create mathoperation.js.
|
|
294
293
|
if (fileExists(path.join(deployDir, "plugins", "mathoperation.js"))) {
|
|
295
294
|
log("mathoperation.js file exists.");
|
|
296
295
|
}
|