@storm-software/terraform-tools 0.66.202 → 0.66.206
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 +34 -0
- package/README.md +1 -1
- package/dist/{chunk-TG5CR3HD.mjs → chunk-HBY7ZVX5.mjs} +5 -2
- package/dist/{chunk-OOEFIPWE.js → chunk-V52T5L2U.js} +3 -0
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/src/generators/init/init.js +2 -2
- package/dist/src/generators/init/init.mjs +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,40 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Terraform Tools
|
|
4
4
|
|
|
5
|
+
## [0.66.205](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.205) (05/20/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **workspace-tools** to **v1.296.2**
|
|
10
|
+
|
|
11
|
+
## [0.66.204](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.204) (05/20/2026)
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- **workspace-tools:** Added `jiti` call to handle `@action/core` imports ([d349a5365](https://github.com/storm-software/storm-ops/commit/d349a5365))
|
|
16
|
+
|
|
17
|
+
### Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated **workspace-tools** to **v1.296.1**
|
|
20
|
+
|
|
21
|
+
## [0.66.203](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.203) (05/20/2026)
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
- **workspace-tools:** Added GitHub OIDC token retrieval to `npm-publish` executor ([a154fdcb8](https://github.com/storm-software/storm-ops/commit/a154fdcb8))
|
|
26
|
+
|
|
27
|
+
### Updated Dependencies
|
|
28
|
+
|
|
29
|
+
- Updated **config** to **v1.137.58**
|
|
30
|
+
- Updated **config-tools** to **v1.190.26**
|
|
31
|
+
- Updated **workspace-tools** to **v1.296.0**
|
|
32
|
+
|
|
33
|
+
## [0.66.202](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.202) (05/20/2026)
|
|
34
|
+
|
|
35
|
+
### Updated Dependencies
|
|
36
|
+
|
|
37
|
+
- Updated **workspace-tools** to **v1.295.87**
|
|
38
|
+
|
|
5
39
|
## [0.66.201](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.201) (05/20/2026)
|
|
6
40
|
|
|
7
41
|
### Updated Dependencies
|
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
|
@@ -1133,6 +1133,9 @@ import { execSync as execSync3 } from "node:child_process";
|
|
|
1133
1133
|
import { readFile as readFile7, writeFile as writeFile5 } from "node:fs/promises";
|
|
1134
1134
|
import { format as format3 } from "prettier";
|
|
1135
1135
|
|
|
1136
|
+
// ../workspace-tools/src/utils/github.ts
|
|
1137
|
+
import { createJiti as createJiti2 } from "jiti";
|
|
1138
|
+
|
|
1136
1139
|
// ../workspace-tools/src/utils/package-helpers.ts
|
|
1137
1140
|
import {
|
|
1138
1141
|
joinPathFragments as joinPathFragments3,
|
|
@@ -1634,7 +1637,7 @@ var executor_default10 = withRunExecutor(
|
|
|
1634
1637
|
|
|
1635
1638
|
// ../workspace-tools/src/executors/unbuild/executor.ts
|
|
1636
1639
|
import { defu as defu3 } from "defu";
|
|
1637
|
-
import { createJiti as
|
|
1640
|
+
import { createJiti as createJiti3 } from "jiti";
|
|
1638
1641
|
async function unbuildExecutorFn(options, context, config) {
|
|
1639
1642
|
writeInfo("\u{1F4E6} Running Storm Unbuild executor on the workspace", config);
|
|
1640
1643
|
if (!context.projectsConfigurations?.projects || !context.projectName || !context.projectsConfigurations.projects[context.projectName]) {
|
|
@@ -1652,7 +1655,7 @@ async function unbuildExecutorFn(options, context, config) {
|
|
|
1652
1655
|
"The Build process failed because the project's source root is not valid. Please run this command from a workspace root directory."
|
|
1653
1656
|
);
|
|
1654
1657
|
}
|
|
1655
|
-
const jiti =
|
|
1658
|
+
const jiti = createJiti3(config.workspaceRoot, {
|
|
1656
1659
|
fsCache: config.skipCache ? false : joinPaths(
|
|
1657
1660
|
config.workspaceRoot,
|
|
1658
1661
|
config.directories.cache || "node_modules/.cache/storm",
|
package/dist/generators.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkV52T5L2Ujs = require('./chunk-V52T5L2U.js');
|
|
5
5
|
require('./chunk-Z6FDQK7Q.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.initGenerator =
|
|
8
|
+
exports.initGenerator = _chunkV52T5L2Ujs.initGenerator;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ require('./chunk-SZ73PEPJ.js');
|
|
|
5
5
|
require('./chunk-N2YKXZ5R.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkV52T5L2Ujs = require('./chunk-V52T5L2U.js');
|
|
9
9
|
require('./chunk-GUQOEBFW.js');
|
|
10
10
|
|
|
11
11
|
|
|
@@ -19,4 +19,4 @@ require('./chunk-Z6FDQK7Q.js');
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator =
|
|
22
|
+
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkV52T5L2Ujs.initGenerator; exports.withTerraformExecutor = _chunkWUODZVIZjs.withTerraformExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkV52T5L2Ujs = require('../../../chunk-V52T5L2U.js');
|
|
5
5
|
require('../../../chunk-Z6FDQK7Q.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkV52T5L2Ujs.init_default; exports.initGenerator = _chunkV52T5L2Ujs.initGenerator;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/terraform-tools",
|
|
3
|
-
"version": "0.66.
|
|
3
|
+
"version": "0.66.206",
|
|
4
4
|
"description": "Tools for managing Terraform infrastructure within a Nx workspace.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iac",
|
|
@@ -112,15 +112,15 @@
|
|
|
112
112
|
"module": "dist/index.mjs",
|
|
113
113
|
"typings": "dist/index.d.ts",
|
|
114
114
|
"dependencies": {
|
|
115
|
-
"@nx/devkit": "22.7.
|
|
116
|
-
"@storm-software/config": "^1.137.
|
|
117
|
-
"@storm-software/config-tools": "^1.190.
|
|
118
|
-
"@storm-software/workspace-tools": "1.
|
|
115
|
+
"@nx/devkit": "^22.7.2",
|
|
116
|
+
"@storm-software/config": "^1.137.58",
|
|
117
|
+
"@storm-software/config-tools": "^1.190.26",
|
|
118
|
+
"@storm-software/workspace-tools": "1.296.3",
|
|
119
119
|
"shelljs": "^0.8.5"
|
|
120
120
|
},
|
|
121
121
|
"devDependencies": {
|
|
122
122
|
"@types/node": "^25.9.1",
|
|
123
|
-
"nx": "22.7.
|
|
123
|
+
"nx": "22.7.2",
|
|
124
124
|
"tsup": "8.4.0",
|
|
125
125
|
"untyped": "^2.0.0"
|
|
126
126
|
},
|
|
@@ -129,5 +129,5 @@
|
|
|
129
129
|
"publishConfig": { "access": "public" },
|
|
130
130
|
"executors": "./executors.json",
|
|
131
131
|
"generators": "./generators.json",
|
|
132
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "3308640f211175592cb81a266352ef8733d5f000"
|
|
133
133
|
}
|