tsgonest 0.2.1 → 0.2.3

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.
Files changed (2) hide show
  1. package/bin/tsgonest +2 -1
  2. package/package.json +9 -8
package/bin/tsgonest CHANGED
@@ -12,8 +12,9 @@ const path = require("path");
12
12
  const PLATFORMS = {
13
13
  "darwin-arm64": { pkg: "@tsgonest/cli-darwin-arm64", bin: "tsgonest" },
14
14
  "darwin-x64": { pkg: "@tsgonest/cli-darwin-x64", bin: "tsgonest" },
15
- "linux-x64": { pkg: "@tsgonest/cli-linux-x64", bin: "tsgonest" },
16
15
  "linux-arm64": { pkg: "@tsgonest/cli-linux-arm64", bin: "tsgonest" },
16
+ "linux-x64": { pkg: "@tsgonest/cli-linux-x64", bin: "tsgonest" },
17
+ "win32-arm64": { pkg: "@tsgonest/cli-win32-arm64", bin: "tsgonest.exe" },
17
18
  "win32-x64": { pkg: "@tsgonest/cli-win32-x64", bin: "tsgonest.exe" },
18
19
  };
19
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsgonest",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "TypeScript compiler with runtime validation, serialization, and OpenAPI generation for NestJS",
5
5
  "keywords": [
6
6
  "typescript",
@@ -23,14 +23,15 @@
23
23
  "tsgonest": "bin/tsgonest"
24
24
  },
25
25
  "dependencies": {
26
- "@tsgonest/runtime": "0.2.1",
27
- "@tsgonest/types": "0.2.1"
26
+ "@tsgonest/types": "0.2.3",
27
+ "@tsgonest/runtime": "0.2.3"
28
28
  },
29
29
  "optionalDependencies": {
30
- "@tsgonest/cli-linux-x64": "0.2.1",
31
- "@tsgonest/cli-darwin-arm64": "0.2.1",
32
- "@tsgonest/cli-win32-x64": "0.2.1",
33
- "@tsgonest/cli-linux-arm64": "0.2.1",
34
- "@tsgonest/cli-darwin-x64": "0.2.1"
30
+ "@tsgonest/cli-darwin-arm64": "0.2.3",
31
+ "@tsgonest/cli-darwin-x64": "0.2.3",
32
+ "@tsgonest/cli-win32-arm64": "0.2.3",
33
+ "@tsgonest/cli-linux-arm64": "0.2.3",
34
+ "@tsgonest/cli-linux-x64": "0.2.3",
35
+ "@tsgonest/cli-win32-x64": "0.2.3"
35
36
  }
36
37
  }