@naanlang/naan 1.4.3 → 1.4.4
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/LICENSE.md +1 -1
- package/README.md +1 -1
- package/bin/index.js +4 -3
- package/dist/naan.min.js +5 -5
- package/frameworks/browser/https_request.nlg +39 -10
- package/frameworks/browser/sworker.js +23 -23
- package/frameworks/browser/terminals.nlg +19 -16
- package/frameworks/node/http_request.nlg +103 -0
- package/frameworks/node/https_request.nlg +42 -9
- package/frameworks/node/node.nlg +1 -0
- package/frameworks/node/worker.nlg +1 -0
- package/frameworks/project/projects.nlg +1 -1
- package/frameworks/running/executors.nlg +26 -7
- package/frameworks/running/taskexec.nlg +48 -14
- package/lib/browser/env_web.js +7 -7
- package/lib/core/naanlib.js +5 -5
- package/lib/env_node.js +9 -3
- package/lib/node_repl_init.nlg +2 -2
- package/package.json +1 -1
- package/plugins/nodeLib/node_util.nlg +14 -7
- package/plugins/openSearch/os_dynamo.nlg +5 -5
- package/plugins/serviceAws/aws_dynamo.nlg +25 -8
- package/plugins/serviceAws/aws_vm.nlg +198 -0
- package/plugins/serviceGC/gc_api.nlg +1 -0
- package/plugins/serviceNexara/serviceNexara.nlg +32 -0
- package/plugins/serviceNexara/speechrec.nlg +160 -0
- package/plugins/serviceYC/serviceYC.nlg +2 -3
- package/plugins/serviceYC/yc_speechrec.nlg +4 -3
- package/plugins/serviceYC/yc_vm.nlg +44 -54
- package/test/test_01_core.nlg +42 -33
- package/test/test_03_jsinterop.nlg +3 -3
package/LICENSE.md
CHANGED
package/README.md
CHANGED
package/bin/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* column positioning: // // !
|
|
9
9
|
*
|
|
10
|
-
* Copyright (c) 2021-
|
|
10
|
+
* Copyright (c) 2021-2025 by Richard C. Zulch
|
|
11
11
|
*
|
|
12
12
|
*/
|
|
13
13
|
|
|
@@ -35,6 +35,7 @@ var cmd_file;
|
|
|
35
35
|
var eval_text;
|
|
36
36
|
var do_interactive;
|
|
37
37
|
var cmd_text = ""
|
|
38
|
+
+ "chns('Start');;\n"
|
|
38
39
|
+ `App.naanpath = '${ naanpath.replace(/\\/g, "\\\\") }';;\n` // path/to/our naan library
|
|
39
40
|
+ `App.rootpath = '${ rootpath.replace(/\\/g, "\\\\") }';;\n` // path/to/our package.json
|
|
40
41
|
+ "Naan.module.defineLoc('naanlib', App.naanpath);;\n" // defines "naanlib:" prefix for require
|
|
@@ -67,11 +68,11 @@ process.argv.every((val, index) => {
|
|
|
67
68
|
return (true);
|
|
68
69
|
}
|
|
69
70
|
if (val == "--version") {
|
|
70
|
-
console.log("1.4.
|
|
71
|
+
console.log("1.4.4");
|
|
71
72
|
process.exit(0);
|
|
72
73
|
}
|
|
73
74
|
if (val == "--buildno") {
|
|
74
|
-
console.log("1.4.
|
|
75
|
+
console.log("1.4.4+1");
|
|
75
76
|
process.exit(0);
|
|
76
77
|
}
|
|
77
78
|
if (val.substring(0,1) == "-") {
|