@velarscript/server 0.17.0 → 0.18.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.
@@ -1,5 +1,5 @@
1
1
  import { type CompilerExtension, type ModuleInterface } from "@velarscript/compiler";
2
- export declare const VELAR_SERVER_API_VERSION = "0.12";
2
+ export declare const VELAR_SERVER_API_VERSION = "0.13";
3
3
  export declare const serverModuleInterfaces: ReadonlyMap<string, ModuleInterface>;
4
4
  export declare const serverModuleSources: ReadonlyMap<string, string>;
5
5
  export declare const velarCompilerExtension: CompilerExtension;
package/dist/compiler.js CHANGED
@@ -3,7 +3,7 @@ import { VELAR_STRICT_JSON_RUNTIME, VELAR_TYPE_REGISTRY_RUNTIME, } from "@velars
3
3
  import { VELAR_NODE_API_VERSION, nodeModuleDependencies, nodeModuleInterfaces, nodeModuleSources, velarNodeCompilerExtension, } from "@velarscript/node/compiler";
4
4
  import { inferServerIntrinsic } from "./analyzer.js";
5
5
  import { VELAR_SERVER_RUNTIME } from "./runtime.js";
6
- export const VELAR_SERVER_API_VERSION = "0.12";
6
+ export const VELAR_SERVER_API_VERSION = "0.13";
7
7
  const unknownType = { kind: "unknown" };
8
8
  const stringType = { kind: "string" };
9
9
  const numberType = { kind: "number" };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@velarscript/server",
3
- "version": "0.17.0",
3
+ "version": "0.18.1",
4
4
  "description": "The official convention-based VelarScript server application framework.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -27,16 +27,16 @@
27
27
  "velar": {
28
28
  "extension": {
29
29
  "kind": "application",
30
- "apiVersion": "0.12",
30
+ "apiVersion": "0.13",
31
31
  "manifestKey": "server",
32
32
  "composes": {
33
- "@velarscript/node": "0.12"
33
+ "@velarscript/node": "0.13"
34
34
  }
35
35
  }
36
36
  },
37
37
  "dependencies": {
38
- "@velarscript/compiler": "0.17.0",
39
- "@velarscript/node": "0.17.0",
38
+ "@velarscript/compiler": "0.18.1",
39
+ "@velarscript/node": "0.18.1",
40
40
  "yaml": "^2.9.0"
41
41
  },
42
42
  "exports": {