@naanlang/naan 1.0.15 → 1.0.16
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 +3 -3
- package/bin/index.js +2 -2
- package/dist/env_web.js +1 -1
- package/dist/naan.min.js +4 -4
- package/frameworks/browser/sworker.js +23 -23
- package/frameworks/project/build.nlg +8 -5
- package/frameworks/project/projects.nlg +1 -1
- package/frameworks/running/debugnub.nlg +1 -1
- package/lib/browser/env_web.js +7 -7
- package/lib/core/naanlib.js +4 -4
- package/package.json +1 -1
- package/test/test_03_jsinterop.nlg +6 -0
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
Naan is an async-first software platform for rapid development.
|
|
5
5
|
|
|
6
6
|
#### Release:
|
|
7
|
-
**Naan for NPM** version **1.0.
|
|
7
|
+
**Naan for NPM** version **1.0.16+1**
|
|
8
8
|
Copyright (c) 2017-2023 Zulch Laboratories, Inc.
|
|
9
9
|
|
|
10
10
|
#### Features
|
|
@@ -27,11 +27,11 @@ Please ensure you have a recent version of [node.js](http://nodejs.org/). The mi
|
|
|
27
27
|
|
|
28
28
|
For use everywhere as a command line app:
|
|
29
29
|
|
|
30
|
-
npm install @naanlang/naan -g
|
|
30
|
+
sudo npm install @naanlang/naan -g
|
|
31
31
|
|
|
32
32
|
For use as a library in the current project:
|
|
33
33
|
|
|
34
|
-
npm install @naanlang/naan
|
|
34
|
+
sudo npm install @naanlang/naan
|
|
35
35
|
|
|
36
36
|
#### Command line execution
|
|
37
37
|
|
package/bin/index.js
CHANGED
|
@@ -58,11 +58,11 @@ process.argv.every((val, index) => {
|
|
|
58
58
|
return (true);
|
|
59
59
|
}
|
|
60
60
|
if (val == "--version") {
|
|
61
|
-
console.log("1.0.
|
|
61
|
+
console.log("1.0.16");
|
|
62
62
|
process.exit(0);
|
|
63
63
|
}
|
|
64
64
|
if (val == "--buildno") {
|
|
65
|
-
console.log("1.0.
|
|
65
|
+
console.log("1.0.16+1");
|
|
66
66
|
process.exit(0);
|
|
67
67
|
}
|
|
68
68
|
if (val.substring(0,1) == "-") {
|