naider 1.8.0 → 1.9.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/README.md CHANGED
@@ -68,7 +68,7 @@ naide --tokens <file> # Print token stream
68
68
 
69
69
  ```
70
70
  $ naide
71
- NAIDE REPL v1.8.0 — type NAIDE code, see JavaScript output
71
+ NAIDE REPL v1.9.0 — type NAIDE code, see JavaScript output
72
72
  Type .exit to quit, .eval to toggle eval mode
73
73
 
74
74
  >>> str name = "hello"
package/bin/naide.js CHANGED
@@ -151,7 +151,7 @@ if (files[0] === 'repl' || (files.length === 0 && !flags.help)) {
151
151
  const { createInterface } = await import('readline');
152
152
  const { transpile } = await import('../src/index.js');
153
153
 
154
- console.log(`\n NAIDE REPL v1.8.0 — type NAIDE code, see JavaScript output`);
154
+ console.log(`\n NAIDE REPL v1.9.0 — type NAIDE code, see JavaScript output`);
155
155
  console.log(` Type .exit to quit, .eval to toggle eval mode\n`);
156
156
 
157
157
  const rl = createInterface({
@@ -290,7 +290,7 @@ if (files[0] === 'init') {
290
290
  writeFileSync(resolve(dir, 'package.json'), JSON.stringify({
291
291
  name, version: '1.0.0', type: 'module',
292
292
  scripts: { start: 'naide app.naide', dev: 'naide -w app.naide', build: 'naide --emit app.naide -o dist/app.mjs' },
293
- dependencies: { naider: '^1.8.0' }
293
+ dependencies: { naider: '^1.9.0' }
294
294
  }, null, 2) + '\n');
295
295
  }
296
296
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "naider",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "NAIDE - Node AI Development Environment. AI-specialized language with built-in server, auth, DB, SQL, AI/LLM, WebSocket, and more — transpiles to Node.js.",
5
5
  "main": "src/index.js",
6
6
  "exports": {