create-velar 0.25.0 → 0.26.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/templates.js CHANGED
@@ -547,7 +547,7 @@ Run these before considering any change done:
547
547
  - Conditions accept only \`bool\`; test presence with \`value != null\`.
548
548
  - One statement per line; no \`++\`; named arguments are \`name=value\`.
549
549
  - \`match\` dispatches finite states; \`case _:\` is the fallback.
550
- - \`await task()\` or detached \`async task()\` — a dropped Promise is a
550
+ - \`await task()\` or \`detach task()\` — a dropped Promise is a
551
551
  compile error.
552
552
  - \`range(...)\` is a Core prelude function and needs no import.
553
553
  - JSON data uses \`import json raw from "package/subpath"\`; the value is
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const VELAR_CREATE_VERSION = "0.25.0";
1
+ export declare const VELAR_CREATE_VERSION = "0.26.1";
2
2
  export declare const VELAR_PROJECT_FORMAT_VERSION = 2;
3
3
  /**
4
4
  * D110 rule 5 — the surface versions `velar create` writes into a new project's
package/dist/types.js CHANGED
@@ -1,4 +1,4 @@
1
- export const VELAR_CREATE_VERSION = "0.25.0";
1
+ export const VELAR_CREATE_VERSION = "0.26.1";
2
2
  export const VELAR_PROJECT_FORMAT_VERSION = 2;
3
3
  /**
4
4
  * D110 rule 5 — the surface versions `velar create` writes into a new project's
@@ -16,7 +16,7 @@ export const VELAR_PROJECT_FORMAT_VERSION = 2;
16
16
  * reaches this table in the same commit or not at all.
17
17
  */
18
18
  export const VELAR_TEMPLATE_SURFACE_VERSIONS = Object.freeze({
19
- core: "0.1",
19
+ core: "0.2",
20
20
  web: "0.11",
21
21
  node: "0.16",
22
22
  server: "0.15",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-velar",
3
- "version": "0.25.0",
3
+ "version": "0.26.1",
4
4
  "description": "Create reproducible VelarScript Web, Server, and Desktop applications plus documentation sites and source packages.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",