@naanlang/naan 1.4.2 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- **NaaN for NPM** version **1.4.2+1** is released under the MIT License:
1
+ **NaaN for NPM** version **1.4.4+1** is released under the MIT License:
2
2
 
3
3
  Copyright (c) 2017-2024 Zulch Laboratories, Inc.
4
4
 
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.4.2+1**
7
+      **NaaN for NPM** version **1.4.4+1**
8
8
       Copyright (c) 2017-2024 Zulch Laboratories, Inc.
9
9
 
10
10
  #### Features
package/bin/index.js CHANGED
@@ -7,7 +7,7 @@
7
7
  *
8
8
  * column positioning: // // !
9
9
  *
10
- * Copyright (c) 2021-2024 by Richard C. Zulch
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.2");
71
+ console.log("1.4.4");
71
72
  process.exit(0);
72
73
  }
73
74
  if (val == "--buildno") {
74
- console.log("1.4.2+1");
75
+ console.log("1.4.4+1");
75
76
  process.exit(0);
76
77
  }
77
78
  if (val.substring(0,1) == "-") {