profoundjs 6.6.1 → 7.0.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/iscroll/iscroll.js +3 -0
- package/htdocs/profoundui/proddata/images/FlatIcons/16x16/downloadSkin.png +0 -0
- package/htdocs/profoundui/proddata/images/FlatIcons/16x16/uploadSkin.png +0 -0
- package/htdocs/profoundui/proddata/js/designer.js +3557 -3513
- package/htdocs/profoundui/proddata/js/runtime.js +1381 -1377
- package/index.js +2 -4
- package/package.json +4 -5
- package/profound.jse +1 -1
- package/setup/completeInstall.js +31 -16
- package/setup/gen_key.js +6 -0
- package/setup/get_pjscall_key.js +6 -0
- package/setup/install_info.json +7 -0
- package/setup/modules/oauth2sample/.noderun/ide_settings.json +9 -0
- package/setup/modules/oauth2sample/.noderun/settings.json +14 -0
- package/setup/modules/oauth2sample/README.md +251 -0
- package/setup/modules/oauth2sample/authpage.js +178 -0
- package/setup/modules/oauth2sample/mywebservices.api.json +47 -0
- package/setup/modules/oauth2sample/oautils.js +257 -0
- package/setup/modules/oauth2sample/settings.js +79 -0
- package/setup/modules/oauth2sample/useful-app.json +470 -0
- package/setup/pjsdist.savf +0 -0
- package/setup/setup.js +58 -31
- package/setup/encrypt_client_file.js +0 -4
package/index.js
CHANGED
|
@@ -35,9 +35,7 @@ else {
|
|
|
35
35
|
return filename;
|
|
36
36
|
};
|
|
37
37
|
const jse = JSON.parse(fs.readFileSync(path.join(__dirname, "/profound.jse"), "utf8"));
|
|
38
|
-
|
|
39
|
-
// eslint-disable-next-line n/no-new-require
|
|
40
|
-
const loader = new require("pjsloader")();
|
|
38
|
+
const loader = require("pjsloader");
|
|
41
39
|
// eslint-disable-next-line n/no-deprecated-api
|
|
42
40
|
require.extensions[".jse"] = function(module, filename) {
|
|
43
41
|
let name = filename;
|
|
@@ -45,7 +43,7 @@ else {
|
|
|
45
43
|
if (path.sep !== "/") {
|
|
46
44
|
while (name.includes(path.sep)) name = name.replace(path.sep, "/");
|
|
47
45
|
}
|
|
48
|
-
return module._compile(loader.
|
|
46
|
+
return module._compile(loader.load(jse[name]), filename);
|
|
49
47
|
};
|
|
50
48
|
|
|
51
49
|
// Require any of the children, but only the 1st time
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "profoundjs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"min-profoundui-version": "6.20.0",
|
|
5
5
|
"description": "Profound.js Framework and Server",
|
|
6
6
|
"keywords": [
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"modernization"
|
|
26
26
|
],
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": "^14 || ^16 || ^18",
|
|
28
|
+
"node": "^14 || ^16 || ^18 || ^20",
|
|
29
29
|
"npm": ">= 6"
|
|
30
30
|
},
|
|
31
31
|
"os": [
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"nodemailer": "^6.4.8",
|
|
100
100
|
"p-iteration": "^1.1.8",
|
|
101
101
|
"pdfmake": "^0.2.4",
|
|
102
|
-
"pjsloader": "^
|
|
102
|
+
"pjsloader": "^2.0.0",
|
|
103
103
|
"profoundjs-iconv-lite": "^1.1.0",
|
|
104
104
|
"profoundjs-strands": "^1.0.3",
|
|
105
105
|
"profoundjs-swagger-stats": "^1.1.2",
|
|
@@ -107,7 +107,6 @@
|
|
|
107
107
|
"progress": "^2.0.3",
|
|
108
108
|
"prompts": "^2.3.2",
|
|
109
109
|
"randomatic": "^3.1.1",
|
|
110
|
-
"request": "^2.88.0",
|
|
111
110
|
"rotating-file-stream": "^3.1.0",
|
|
112
111
|
"semver": "^7.3.8",
|
|
113
112
|
"soap": "^0.45.0",
|
|
@@ -117,7 +116,7 @@
|
|
|
117
116
|
"swagger-client": "^3.13.7",
|
|
118
117
|
"true-case-path": "^2.2.1",
|
|
119
118
|
"typescript-compiler": "^1.4.1-2",
|
|
120
|
-
"uglify-
|
|
119
|
+
"uglify-js": "^3.17.4",
|
|
121
120
|
"uuid": "^8.3.1",
|
|
122
121
|
"ws": "^8.7.0",
|
|
123
122
|
"xml-escape": "^1.1.0",
|