@velarscript/cli 0.14.0 → 0.14.1

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/dist/version.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export declare const VELAR_VERSION = "0.14.0";
1
+ export declare const VELAR_VERSION = "0.14.1";
2
2
  export { VELAR_STANDARD_API_VERSION } from "@velarscript/core";
3
3
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1,3 +1,3 @@
1
- export const VELAR_VERSION = "0.14.0";
1
+ export const VELAR_VERSION = "0.14.1";
2
2
  export { VELAR_STANDARD_API_VERSION } from "@velarscript/core";
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@velarscript/cli",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "description": "The VelarScript command-line compiler, dev server, test runner, and language server.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -30,13 +30,13 @@
30
30
  "velar": "./dist/cli.js"
31
31
  },
32
32
  "dependencies": {
33
- "@velarscript/compiler": "0.14.0",
34
- "@velarscript/core": "0.14.0",
35
- "@velarscript/desktop": "0.14.0",
36
- "@velarscript/node": "0.14.0",
37
- "@velarscript/server": "0.14.0",
38
- "@velarscript/web": "0.14.0",
39
- "create-velar": "0.14.0",
33
+ "@velarscript/compiler": "0.14.1",
34
+ "@velarscript/core": "0.14.1",
35
+ "@velarscript/desktop": "0.14.1",
36
+ "@velarscript/node": "0.14.1",
37
+ "@velarscript/server": "0.14.1",
38
+ "@velarscript/web": "0.14.1",
39
+ "create-velar": "0.14.1",
40
40
  "esbuild": "^0.28.1",
41
41
  "playwright": "^1.58.2"
42
42
  }
@@ -13,7 +13,7 @@ browser application activates `@velarscript/web`:
13
13
  ```json
14
14
  {
15
15
  "dependencies": {
16
- "@velarscript/server": "0.14.0"
16
+ "@velarscript/server": "0.14.1"
17
17
  }
18
18
  }
19
19
  ```
package/skill/ai-skill.md CHANGED
@@ -125,7 +125,7 @@ well, but it is a guarantee rather than a trap.
125
125
  | `switch`, or an `if`/`else if` ladder over an enum | `match` with `case _:` as the only fallback. |
126
126
  | Renaming a binding away from `type`, `json`, `from`, `match`, or `as` | Don't. Declaration words are contextual: each declares only in its own shape, so `const {type, from} = event` is ordinary code. `enum` and `case` are the exceptions — `enum` is a real VelarScript keyword and `case` is reserved by JavaScript — so neither can be a binding name; both stay fine as record fields, member names, and `match` branches. |
127
127
  | Treating `@` as a decorator, call, value, or user extension point | `@` has one meaning: `@name` qualifies the name into the closed compiler-owned namespace of the current context. Core or the active syntax-owning compiler extension owns the vocabulary; source cannot declare, import, alias, pass, or construct an `@name`. The class contracts `@dispose:` and `@iterate:` follow this one rule. |
128
- | Two statements on one line | One statement per line; there are no semicolons. A line starting with `.` or `?.` continues the previous line, so method chains format normally. |
128
+ | Two statements on one line | One statement per line; there are no semicolons. The compact exceptions are `if condition: action()` and `case pattern: action()` for a single non-block branch statement. A line starting with `.` or `?.` continues the previous line, so method chains format normally. |
129
129
  | `count++` | `count += 1` |
130
130
  | `call(name: value)` named argument | `call(name=value)` |
131
131
  | Importing `range` | `range(...)` is a Core prelude function and needs no import. |