@highstate/cert-manager 0.9.22 → 0.9.24

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,20 @@
1
- # v0.9.19 (Fri Sep 12 2025)
1
+ # v0.9.24 (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
+ - update pulumi ([@Exeteres](https://github.com/Exeteres))
6
+
7
+ #### Authors: 1
8
+
9
+ - Fedor Chubukov ([@Exeteres](https://github.com/Exeteres))
10
+
11
+ ---
12
+
13
+ # v0.9.20 (Sun Sep 21 2025)
14
+
15
+ #### ⚠️ Pushed to `main`
16
+
17
+ - fixes ([@Exeteres](https://github.com/Exeteres))
7
18
 
8
19
  #### Authors: 1
9
20
 
package/bin/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highstate/cert-manager",
3
- "version": "0.9.19",
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 && cp package.json bin/package.json"
17
16
  },
18
17
  "dependencies": {
19
18
  "@pulumi/kubernetes": "4.18.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highstate/cert-manager",
3
- "version": "0.9.22",
3
+ "version": "0.9.24",
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 && cp package.json bin/package.json"
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": "1f84c124e6ec7739f4ae4f5ef2ead8876ec3b7c1"
42
+ "gitHead": "63ed289a56f9d39075b7d92a45482c15cafd42f2"
44
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"));