@highstate/gateway-api 0.9.21 → 0.9.23

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/CHANGELOG.md CHANGED
@@ -1,9 +1,8 @@
1
- # v0.9.19 (Fri Sep 12 2025)
1
+ # v0.9.20 (Sun Sep 21 2025)
2
2
 
3
3
  #### ⚠️ Pushed to `main`
4
4
 
5
- - fix build ([@Exeteres](https://github.com/Exeteres))
6
- - reorganize packages ([@Exeteres](https://github.com/Exeteres))
5
+ - fixes ([@Exeteres](https://github.com/Exeteres))
7
6
 
8
7
  #### Authors: 1
9
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highstate/gateway-api",
3
- "version": "0.9.21",
3
+ "version": "0.9.23",
4
4
  "keywords": [
5
5
  "pulumi",
6
6
  "kubernetes",
@@ -12,8 +12,7 @@
12
12
  "license": "Apache-2.0",
13
13
  "main": "bin/index.js",
14
14
  "scripts": {
15
- "build": "tsc",
16
- "postinstall": "node ./scripts/postinstall.js"
15
+ "build": "tsc"
17
16
  },
18
17
  "dependencies": {
19
18
  "@pulumi/kubernetes": "4.18.0",
@@ -40,5 +39,5 @@
40
39
  "publishConfig": {
41
40
  "access": "public"
42
41
  },
43
- "gitHead": "390ff15c0e0076822a682f9d4e19260942a8d6c2"
42
+ "gitHead": "389be30a2144dfb1499b02e8a1e71074c26a3f9f"
44
43
  }
package/bin/package.json DELETED
@@ -1,43 +0,0 @@
1
- {
2
- "name": "@highstate/gateway-api",
3
- "version": "0.9.19",
4
- "keywords": [
5
- "pulumi",
6
- "kubernetes",
7
- "category/cloud",
8
- "kind/native"
9
- ],
10
- "homepage": "https://pulumi.com",
11
- "repository": "https://github.com/pulumi/pulumi-kubernetes",
12
- "license": "Apache-2.0",
13
- "main": "bin/index.js",
14
- "scripts": {
15
- "build": "tsc",
16
- "postinstall": "node ./scripts/postinstall.js"
17
- },
18
- "dependencies": {
19
- "@pulumi/kubernetes": "4.18.0",
20
- "@pulumi/pulumi": "^3.25.0",
21
- "@types/node-fetch": "^2.1.4",
22
- "@types/tmp": "^0.0.33",
23
- "glob": "^10.3.10",
24
- "node-fetch": "^2.3.0",
25
- "shell-quote": "^1.6.1",
26
- "tmp": "^0.0.33"
27
- },
28
- "devDependencies": {
29
- "@types/mocha": "^5.2.5",
30
- "@types/node": "^14",
31
- "@types/shell-quote": "^1.6.0",
32
- "mocha": "^5.2.0",
33
- "typescript": "^5.7.2"
34
- },
35
- "pulumi": {
36
- "resource": true,
37
- "name": "crds",
38
- "version": "0.0.0-dev"
39
- },
40
- "publishConfig": {
41
- "access": "public"
42
- }
43
- }
@@ -1,13 +0,0 @@
1
- const fs = require("node:fs");
2
- const path = require("node:path")
3
- const process = require("node:process")
4
- const { execSync } = require('node:child_process');
5
- try {
6
- const out = execSync('tsc')
7
- console.log(out.toString())
8
- } catch (error) {
9
- console.error(error.message + ": " + error.stdout.toString() + "\n" + error.stderr.toString())
10
- process.exit(1)
11
- }
12
- // TypeScript is compiled to "./bin", copy package.json to that directory so it can be read in "getVersion".
13
- fs.copyFileSync(path.join(__dirname, "..", "package.json"), path.join(__dirname, "..", "bin", "package.json"));