@storm-software/terraform-tools 0.54.86 → 0.55.0
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 +19 -0
- package/README.md +2 -1
- package/package.json +30 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Terraform Tools
|
|
4
4
|
|
|
5
|
+
## [0.55.0](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.55.0) (2025-05-05)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **workspace-tools:** Use pnpm to publish the packages
|
|
10
|
+
([f31a22830](https://github.com/storm-software/storm-ops/commit/f31a22830))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Regenerate README markdown files
|
|
15
|
+
([ddded09ab](https://github.com/storm-software/storm-ops/commit/ddded09ab))
|
|
16
|
+
|
|
17
|
+
## [0.54.87](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.54.87) (2025-04-30)
|
|
18
|
+
|
|
19
|
+
### Miscellaneous
|
|
20
|
+
|
|
21
|
+
- **monorepo:** Regenerate README markdown files
|
|
22
|
+
([4b707da15](https://github.com/storm-software/storm-ops/commit/4b707da15))
|
|
23
|
+
|
|
5
24
|
## [0.54.86](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.54.86) (2025-04-30)
|
|
6
25
|
|
|
7
26
|
### 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 Terraform Tools](#storm-terraform-tools)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/terraform-tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.55.0",
|
|
4
4
|
"description": "Tools for managing Terraform infrastructure within a Nx workspace.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -31,16 +31,28 @@
|
|
|
31
31
|
"types": "./dist/index.d.mts",
|
|
32
32
|
"default": "./dist/index.mjs"
|
|
33
33
|
},
|
|
34
|
-
"require": {
|
|
35
|
-
|
|
34
|
+
"require": {
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"default": "./dist/index.js"
|
|
37
|
+
},
|
|
38
|
+
"default": {
|
|
39
|
+
"types": "./dist/index.d.ts",
|
|
40
|
+
"default": "./dist/index.js"
|
|
41
|
+
}
|
|
36
42
|
},
|
|
37
43
|
"./index": {
|
|
38
44
|
"import": {
|
|
39
45
|
"types": "./dist/index.d.mts",
|
|
40
46
|
"default": "./dist/index.mjs"
|
|
41
47
|
},
|
|
42
|
-
"require": {
|
|
43
|
-
|
|
48
|
+
"require": {
|
|
49
|
+
"types": "./dist/index.d.ts",
|
|
50
|
+
"default": "./dist/index.js"
|
|
51
|
+
},
|
|
52
|
+
"default": {
|
|
53
|
+
"types": "./dist/index.d.ts",
|
|
54
|
+
"default": "./dist/index.js"
|
|
55
|
+
}
|
|
44
56
|
},
|
|
45
57
|
"./executors": {
|
|
46
58
|
"import": {
|
|
@@ -121,10 +133,16 @@
|
|
|
121
133
|
"untyped": "1.5.2"
|
|
122
134
|
},
|
|
123
135
|
"peerDependenciesMeta": {
|
|
124
|
-
"@nx/devkit": {
|
|
125
|
-
|
|
136
|
+
"@nx/devkit": {
|
|
137
|
+
"optional": false
|
|
138
|
+
},
|
|
139
|
+
"nx": {
|
|
140
|
+
"optional": false
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"dependencies": {
|
|
144
|
+
"shelljs": "^0.8.5"
|
|
126
145
|
},
|
|
127
|
-
"dependencies": { "shelljs": "^0.8.5" },
|
|
128
146
|
"devDependencies": {
|
|
129
147
|
"@nx/devkit": "20.8.0",
|
|
130
148
|
"@types/node": "^22.10.2",
|
|
@@ -132,7 +150,9 @@
|
|
|
132
150
|
"tsup": "8.4.0",
|
|
133
151
|
"untyped": "^1.5.2"
|
|
134
152
|
},
|
|
135
|
-
"publishConfig": {
|
|
153
|
+
"publishConfig": {
|
|
154
|
+
"access": "public"
|
|
155
|
+
},
|
|
136
156
|
"executors": "./executors.json",
|
|
137
157
|
"generators": "./generators.json"
|
|
138
|
-
}
|
|
158
|
+
}
|