@storm-software/pulumi-tools 0.7.82 → 0.7.83
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 +7 -0
- package/README.md +2 -1
- package/package.json +34 -11
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pulumi Tools
|
|
4
4
|
|
|
5
|
+
## [0.7.83](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.7.83) (2025-04-30)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([4b707da15](https://github.com/storm-software/storm-ops/commit/4b707da15))
|
|
11
|
+
|
|
5
12
|
## [0.7.82](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.7.82) (2025-04-30)
|
|
6
13
|
|
|
7
14
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
+
|
|
43
44
|
## Table of Contents
|
|
44
45
|
|
|
45
46
|
- [Storm Pulumi Tools](#storm-pulumi-tools)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/pulumi-tools",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.83",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Tools for managing Pulumi infrastructure within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -32,16 +32,28 @@
|
|
|
32
32
|
"types": "./dist/index.d.mts",
|
|
33
33
|
"default": "./dist/index.mjs"
|
|
34
34
|
},
|
|
35
|
-
"require": {
|
|
36
|
-
|
|
35
|
+
"require": {
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"default": "./dist/index.js"
|
|
38
|
+
},
|
|
39
|
+
"default": {
|
|
40
|
+
"types": "./dist/index.d.ts",
|
|
41
|
+
"default": "./dist/index.js"
|
|
42
|
+
}
|
|
37
43
|
},
|
|
38
44
|
"./index": {
|
|
39
45
|
"import": {
|
|
40
46
|
"types": "./dist/index.d.mts",
|
|
41
47
|
"default": "./dist/index.mjs"
|
|
42
48
|
},
|
|
43
|
-
"require": {
|
|
44
|
-
|
|
49
|
+
"require": {
|
|
50
|
+
"types": "./dist/index.d.ts",
|
|
51
|
+
"default": "./dist/index.js"
|
|
52
|
+
},
|
|
53
|
+
"default": {
|
|
54
|
+
"types": "./dist/index.d.ts",
|
|
55
|
+
"default": "./dist/index.js"
|
|
56
|
+
}
|
|
45
57
|
},
|
|
46
58
|
"./executors": {
|
|
47
59
|
"import": {
|
|
@@ -121,11 +133,20 @@
|
|
|
121
133
|
"tsup": "8.4.0"
|
|
122
134
|
},
|
|
123
135
|
"peerDependenciesMeta": {
|
|
124
|
-
"@nx/devkit": {
|
|
125
|
-
|
|
126
|
-
|
|
136
|
+
"@nx/devkit": {
|
|
137
|
+
"optional": false
|
|
138
|
+
},
|
|
139
|
+
"@pulumi/pulumi": {
|
|
140
|
+
"optional": false
|
|
141
|
+
},
|
|
142
|
+
"nx": {
|
|
143
|
+
"optional": false
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"dependencies": {
|
|
147
|
+
"@nx/devkit": "20.8.0",
|
|
148
|
+
"shelljs": "^0.8.5"
|
|
127
149
|
},
|
|
128
|
-
"dependencies": { "@nx/devkit": "20.8.0", "shelljs": "^0.8.5" },
|
|
129
150
|
"devDependencies": {
|
|
130
151
|
"@nx/devkit": "20.8.0",
|
|
131
152
|
"@types/node": "^22.10.2",
|
|
@@ -133,7 +154,9 @@
|
|
|
133
154
|
"tsup": "8.4.0",
|
|
134
155
|
"untyped": "^1.5.2"
|
|
135
156
|
},
|
|
136
|
-
"publishConfig": {
|
|
157
|
+
"publishConfig": {
|
|
158
|
+
"access": "public"
|
|
159
|
+
},
|
|
137
160
|
"executors": "./executors.json",
|
|
138
161
|
"generators": "./generators.json"
|
|
139
|
-
}
|
|
162
|
+
}
|