aiplang 2.11.12 → 2.11.13
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/bin/aiplang.js +2 -2
- package/package.json +1 -1
- package/runtime/aiplang-hydrate.js +993 -1301
- package/runtime/aiplang-runtime.js +47 -1
- package/server/server.js +48 -14
package/bin/aiplang.js
CHANGED
|
@@ -49,7 +49,7 @@ class Spinner {
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
const VERSION = '2.11.
|
|
52
|
+
const VERSION = '2.11.13'
|
|
53
53
|
const RUNTIME_DIR = path.join(__dirname, '..', 'runtime')
|
|
54
54
|
const cmd = process.argv[2]
|
|
55
55
|
const args = process.argv.slice(3)
|
|
@@ -702,7 +702,7 @@ function generateTypes(app, srcFile) {
|
|
|
702
702
|
}
|
|
703
703
|
|
|
704
704
|
lines.push(`// ── aiplang version ──────────────────────────────────────────`)
|
|
705
|
-
lines.push(`export const AIPLANG_VERSION = '2.11.
|
|
705
|
+
lines.push(`export const AIPLANG_VERSION = '2.11.13'`)
|
|
706
706
|
lines.push(``)
|
|
707
707
|
return lines.join('\n')
|
|
708
708
|
}
|