@storm-software/terraform-tools 0.66.183 → 0.66.184
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 +8 -0
- package/package.json +24 -30
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Terraform Tools
|
|
4
4
|
|
|
5
|
+
## [0.66.183](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.183) (05/14/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **workspace-tools** to **v1.295.68**
|
|
10
|
+
- Updated **config-tools** to **v1.190.8**
|
|
11
|
+
- Updated **config** to **v1.137.41**
|
|
12
|
+
|
|
5
13
|
## [0.66.182](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.182) (05/14/2026)
|
|
6
14
|
|
|
7
15
|
### Miscellaneous
|
package/package.json
CHANGED
|
@@ -1,23 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/terraform-tools",
|
|
3
|
-
"version": "0.66.
|
|
3
|
+
"version": "0.66.184",
|
|
4
4
|
"description": "Tools for managing Terraform infrastructure within a Nx workspace.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"iac",
|
|
7
|
+
"infrastructure",
|
|
8
|
+
"monorepo",
|
|
9
|
+
"storm",
|
|
10
|
+
"storm-ops",
|
|
11
|
+
"storm-stack",
|
|
12
|
+
"sullivanpj",
|
|
13
|
+
"terraform"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://stormsoftware.com",
|
|
16
|
+
"bugs": "https://github.com/storm-software/storm-ops/issues",
|
|
5
17
|
"repository": {
|
|
6
18
|
"type": "github",
|
|
7
19
|
"url": "https://github.com/storm-software/storm-ops",
|
|
8
20
|
"directory": "packages/terraform-tools"
|
|
9
21
|
},
|
|
10
|
-
"
|
|
11
|
-
"bugs": "https://github.com/storm-software/storm-ops/issues",
|
|
22
|
+
"license": "Apache-2.0",
|
|
12
23
|
"author": {
|
|
13
24
|
"name": "Storm Software",
|
|
14
25
|
"email": "contact@stormsoftware.com",
|
|
15
26
|
"url": "https://stormsoftware.com"
|
|
16
27
|
},
|
|
17
|
-
"license": "Apache-2.0",
|
|
18
|
-
"private": false,
|
|
19
|
-
"main": "dist/index.js",
|
|
20
|
-
"module": "dist/index.mjs",
|
|
21
28
|
"exports": {
|
|
22
29
|
"./package.json": "./package.json",
|
|
23
30
|
"./docs/*": "./docs/*",
|
|
@@ -101,30 +108,15 @@
|
|
|
101
108
|
"./executors/*/executor.js": "./dist/src/executors/*/executor.js",
|
|
102
109
|
"./generators/*/init.js": "./dist/src/generators/*/init.js"
|
|
103
110
|
},
|
|
111
|
+
"main": "dist/index.js",
|
|
112
|
+
"module": "dist/index.mjs",
|
|
104
113
|
"typings": "dist/index.d.ts",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"storm-ops",
|
|
111
|
-
"storm-stack",
|
|
112
|
-
"sullivanpj",
|
|
113
|
-
"terraform"
|
|
114
|
-
],
|
|
115
|
-
"peerDependencies": {
|
|
116
|
-
"@nx/devkit": "22.7.1",
|
|
117
|
-
"@storm-software/config": "1.137.41",
|
|
118
|
-
"@storm-software/config-tools": "1.190.8",
|
|
119
|
-
"@storm-software/workspace-tools": "1.295.68",
|
|
120
|
-
"tsup": "8.4.0",
|
|
121
|
-
"untyped": "1.5.2"
|
|
122
|
-
},
|
|
123
|
-
"peerDependenciesMeta": {
|
|
124
|
-
"@nx/devkit": { "optional": false },
|
|
125
|
-
"nx": { "optional": false }
|
|
114
|
+
"dependencies": {
|
|
115
|
+
"@storm-software/config": "^1.137.42",
|
|
116
|
+
"@storm-software/config-tools": "^1.190.9",
|
|
117
|
+
"@storm-software/workspace-tools": "^1.295.69",
|
|
118
|
+
"shelljs": "^0.8.5"
|
|
126
119
|
},
|
|
127
|
-
"dependencies": { "shelljs": "^0.8.5" },
|
|
128
120
|
"devDependencies": {
|
|
129
121
|
"@nx/devkit": "22.7.1",
|
|
130
122
|
"@types/node": "^25.7.0",
|
|
@@ -132,8 +124,10 @@
|
|
|
132
124
|
"tsup": "8.4.0",
|
|
133
125
|
"untyped": "^2.0.0"
|
|
134
126
|
},
|
|
127
|
+
"peerDependencies": { "nx": ">=22.7.1" },
|
|
128
|
+
"peerDependenciesMeta": { "nx": { "optional": false } },
|
|
135
129
|
"publishConfig": { "access": "public" },
|
|
136
130
|
"executors": "./executors.json",
|
|
137
131
|
"generators": "./generators.json",
|
|
138
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "a4b65b197099bab714d4fc5f6c5322375cb05c9e"
|
|
139
133
|
}
|