@storm-software/terraform-tools 0.60.28 → 0.60.29
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 +1 -1
- package/dist/{chunk-QQZ6PXPB.mjs → chunk-HFX67ZER.mjs} +87 -83
- package/dist/{chunk-YHVTCYRL.js → chunk-ZKDCAXEM.js} +74 -70
- 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 +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Terraform Tools
|
|
4
4
|
|
|
5
|
+
## [0.60.28](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.60.28) (2025-06-20)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update README markdown files
|
|
10
|
+
([cd1727b2a](https://github.com/storm-software/storm-ops/commit/cd1727b2a))
|
|
11
|
+
|
|
5
12
|
## [0.60.27](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.60.27) (2025-06-20)
|
|
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 -->
|
|
@@ -123,9 +123,9 @@ function cargoMetadata() {
|
|
|
123
123
|
function runProcess(processCmd, ...args) {
|
|
124
124
|
const metadata = cargoMetadata();
|
|
125
125
|
const targetDir = metadata?.target_directory ?? joinPathFragments(workspaceRoot, "dist");
|
|
126
|
-
return new Promise((
|
|
126
|
+
return new Promise((resolve2) => {
|
|
127
127
|
if (process.env.VERCEL) {
|
|
128
|
-
return
|
|
128
|
+
return resolve2({ success: true });
|
|
129
129
|
}
|
|
130
130
|
execSync(`${processCmd} ${args.join(" ")}`, {
|
|
131
131
|
cwd: process.cwd(),
|
|
@@ -138,7 +138,7 @@ function runProcess(processCmd, ...args) {
|
|
|
138
138
|
windowsHide: true,
|
|
139
139
|
stdio: ["inherit", "inherit", "inherit"]
|
|
140
140
|
});
|
|
141
|
-
|
|
141
|
+
resolve2({ success: true });
|
|
142
142
|
});
|
|
143
143
|
}
|
|
144
144
|
|
|
@@ -1061,24 +1061,95 @@ var executor_default6 = withRunExecutor(
|
|
|
1061
1061
|
|
|
1062
1062
|
// ../workspace-tools/src/executors/npm-publish/executor.ts
|
|
1063
1063
|
import { execSync as execSync3 } from "node:child_process";
|
|
1064
|
-
import { readFile as
|
|
1065
|
-
import { format as
|
|
1064
|
+
import { readFile as readFile6, writeFile as writeFile4 } from "node:fs/promises";
|
|
1065
|
+
import { format as format3 } from "prettier";
|
|
1066
1066
|
|
|
1067
|
-
// ../workspace-tools/src/utils/
|
|
1067
|
+
// ../workspace-tools/src/utils/package-helpers.ts
|
|
1068
1068
|
import {
|
|
1069
|
-
|
|
1070
|
-
|
|
1069
|
+
joinPathFragments as joinPathFragments3,
|
|
1070
|
+
readJsonFile
|
|
1071
1071
|
} from "@nx/devkit";
|
|
1072
|
+
import { execFileSync } from "child_process";
|
|
1072
1073
|
import { existsSync as existsSync5 } from "node:fs";
|
|
1073
1074
|
import { readFile as readFile4, writeFile as writeFile2 } from "node:fs/promises";
|
|
1075
|
+
import { dirname, resolve } from "path";
|
|
1074
1076
|
import { format } from "prettier";
|
|
1077
|
+
|
|
1078
|
+
// ../workspace-tools/src/utils/project-tags.ts
|
|
1079
|
+
var ProjectTagConstants = {
|
|
1080
|
+
Language: {
|
|
1081
|
+
TAG_ID: "language",
|
|
1082
|
+
TYPESCRIPT: "typescript",
|
|
1083
|
+
RUST: "rust"
|
|
1084
|
+
},
|
|
1085
|
+
ProjectType: {
|
|
1086
|
+
TAG_ID: "type",
|
|
1087
|
+
LIBRARY: "library",
|
|
1088
|
+
APPLICATION: "application"
|
|
1089
|
+
},
|
|
1090
|
+
DistStyle: {
|
|
1091
|
+
TAG_ID: "dist-style",
|
|
1092
|
+
NORMAL: "normal",
|
|
1093
|
+
CLEAN: "clean"
|
|
1094
|
+
},
|
|
1095
|
+
Provider: {
|
|
1096
|
+
TAG_ID: "provider"
|
|
1097
|
+
},
|
|
1098
|
+
Platform: {
|
|
1099
|
+
TAG_ID: "platform",
|
|
1100
|
+
NODE: "node",
|
|
1101
|
+
BROWSER: "browser",
|
|
1102
|
+
NEUTRAL: "neutral",
|
|
1103
|
+
WORKER: "worker"
|
|
1104
|
+
},
|
|
1105
|
+
Registry: {
|
|
1106
|
+
TAG_ID: "registry",
|
|
1107
|
+
CARGO: "cargo",
|
|
1108
|
+
NPM: "npm",
|
|
1109
|
+
CONTAINER: "container",
|
|
1110
|
+
CYCLONE: "cyclone"
|
|
1111
|
+
},
|
|
1112
|
+
Plugin: {
|
|
1113
|
+
TAG_ID: "plugin"
|
|
1114
|
+
}
|
|
1115
|
+
};
|
|
1116
|
+
var formatProjectTag = (variant, value) => {
|
|
1117
|
+
return `${variant}:${value}`;
|
|
1118
|
+
};
|
|
1119
|
+
var hasProjectTag = (project, variant) => {
|
|
1120
|
+
project.tags = project.tags ?? [];
|
|
1121
|
+
const prefix = formatProjectTag(variant, "");
|
|
1122
|
+
return project.tags.some(
|
|
1123
|
+
(tag) => tag.startsWith(prefix) && tag.length > prefix.length
|
|
1124
|
+
);
|
|
1125
|
+
};
|
|
1126
|
+
var addProjectTag = (project, variant, value, options = {
|
|
1127
|
+
overwrite: false
|
|
1128
|
+
}) => {
|
|
1129
|
+
project.tags = project.tags ?? [];
|
|
1130
|
+
if (options.overwrite || !hasProjectTag(project, variant)) {
|
|
1131
|
+
project.tags = project.tags.filter(
|
|
1132
|
+
(tag) => !tag.startsWith(formatProjectTag(variant, ""))
|
|
1133
|
+
);
|
|
1134
|
+
project.tags.push(formatProjectTag(variant, value));
|
|
1135
|
+
}
|
|
1136
|
+
};
|
|
1137
|
+
|
|
1138
|
+
// ../workspace-tools/src/utils/pnpm-deps-update.ts
|
|
1139
|
+
import {
|
|
1140
|
+
createProjectGraphAsync as createProjectGraphAsync3,
|
|
1141
|
+
readCachedProjectGraph as readCachedProjectGraph2
|
|
1142
|
+
} from "@nx/devkit";
|
|
1143
|
+
import { existsSync as existsSync6 } from "node:fs";
|
|
1144
|
+
import { readFile as readFile5, writeFile as writeFile3 } from "node:fs/promises";
|
|
1145
|
+
import { format as format2 } from "prettier";
|
|
1075
1146
|
import readYamlFile from "read-yaml-file";
|
|
1076
1147
|
|
|
1077
1148
|
// ../workspace-tools/src/executors/npm-publish/executor.ts
|
|
1078
1149
|
var LARGE_BUFFER2 = 1024 * 1e6;
|
|
1079
1150
|
|
|
1080
1151
|
// ../workspace-tools/src/executors/size-limit/executor.ts
|
|
1081
|
-
import { joinPathFragments as
|
|
1152
|
+
import { joinPathFragments as joinPathFragments4 } from "@nx/devkit";
|
|
1082
1153
|
import esBuildPlugin from "@size-limit/esbuild";
|
|
1083
1154
|
import esBuildWhyPlugin from "@size-limit/esbuild-why";
|
|
1084
1155
|
import filePlugin from "@size-limit/file";
|
|
@@ -1091,7 +1162,7 @@ async function sizeLimitExecutorFn(options, context, config) {
|
|
|
1091
1162
|
}
|
|
1092
1163
|
writeInfo(`\u{1F4CF} Running Size-Limit on ${context.projectName}`, config);
|
|
1093
1164
|
sizeLimit([filePlugin, esBuildPlugin, esBuildWhyPlugin], {
|
|
1094
|
-
checks: options.entry ?? context.projectsConfigurations.projects[context.projectName]?.sourceRoot ??
|
|
1165
|
+
checks: options.entry ?? context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? joinPathFragments4(
|
|
1095
1166
|
context.projectsConfigurations.projects[context.projectName]?.root ?? "./",
|
|
1096
1167
|
"src"
|
|
1097
1168
|
)
|
|
@@ -1360,66 +1431,6 @@ import {
|
|
|
1360
1431
|
import jsInitGenerator from "@nx/js/src/generators/init/init";
|
|
1361
1432
|
import setupVerdaccio from "@nx/js/src/generators/setup-verdaccio/generator";
|
|
1362
1433
|
|
|
1363
|
-
// ../workspace-tools/src/utils/project-tags.ts
|
|
1364
|
-
var ProjectTagConstants = {
|
|
1365
|
-
Language: {
|
|
1366
|
-
TAG_ID: "language",
|
|
1367
|
-
TYPESCRIPT: "typescript",
|
|
1368
|
-
RUST: "rust"
|
|
1369
|
-
},
|
|
1370
|
-
ProjectType: {
|
|
1371
|
-
TAG_ID: "type",
|
|
1372
|
-
LIBRARY: "library",
|
|
1373
|
-
APPLICATION: "application"
|
|
1374
|
-
},
|
|
1375
|
-
DistStyle: {
|
|
1376
|
-
TAG_ID: "dist-style",
|
|
1377
|
-
NORMAL: "normal",
|
|
1378
|
-
CLEAN: "clean"
|
|
1379
|
-
},
|
|
1380
|
-
Provider: {
|
|
1381
|
-
TAG_ID: "provider"
|
|
1382
|
-
},
|
|
1383
|
-
Platform: {
|
|
1384
|
-
TAG_ID: "platform",
|
|
1385
|
-
NODE: "node",
|
|
1386
|
-
BROWSER: "browser",
|
|
1387
|
-
NEUTRAL: "neutral",
|
|
1388
|
-
WORKER: "worker"
|
|
1389
|
-
},
|
|
1390
|
-
Registry: {
|
|
1391
|
-
TAG_ID: "registry",
|
|
1392
|
-
CARGO: "cargo",
|
|
1393
|
-
NPM: "npm",
|
|
1394
|
-
CONTAINER: "container",
|
|
1395
|
-
CYCLONE: "cyclone"
|
|
1396
|
-
},
|
|
1397
|
-
Plugin: {
|
|
1398
|
-
TAG_ID: "plugin"
|
|
1399
|
-
}
|
|
1400
|
-
};
|
|
1401
|
-
var formatProjectTag = (variant, value) => {
|
|
1402
|
-
return `${variant}:${value}`;
|
|
1403
|
-
};
|
|
1404
|
-
var hasProjectTag = (project, variant) => {
|
|
1405
|
-
project.tags = project.tags ?? [];
|
|
1406
|
-
const prefix = formatProjectTag(variant, "");
|
|
1407
|
-
return project.tags.some(
|
|
1408
|
-
(tag) => tag.startsWith(prefix) && tag.length > prefix.length
|
|
1409
|
-
);
|
|
1410
|
-
};
|
|
1411
|
-
var addProjectTag = (project, variant, value, options = {
|
|
1412
|
-
overwrite: false
|
|
1413
|
-
}) => {
|
|
1414
|
-
project.tags = project.tags ?? [];
|
|
1415
|
-
if (options.overwrite || !hasProjectTag(project, variant)) {
|
|
1416
|
-
project.tags = project.tags.filter(
|
|
1417
|
-
(tag) => !tag.startsWith(formatProjectTag(variant, ""))
|
|
1418
|
-
);
|
|
1419
|
-
project.tags.push(formatProjectTag(variant, value));
|
|
1420
|
-
}
|
|
1421
|
-
};
|
|
1422
|
-
|
|
1423
1434
|
// ../workspace-tools/src/utils/versions.ts
|
|
1424
1435
|
var typesNodeVersion = "20.9.0";
|
|
1425
1436
|
var nxVersion = "^18.0.4";
|
|
@@ -2000,7 +2011,7 @@ import {
|
|
|
2000
2011
|
addProjectConfiguration as addProjectConfiguration2,
|
|
2001
2012
|
formatFiles as formatFiles7,
|
|
2002
2013
|
generateFiles as generateFiles4,
|
|
2003
|
-
joinPathFragments as
|
|
2014
|
+
joinPathFragments as joinPathFragments5,
|
|
2004
2015
|
updateJson as updateJson2
|
|
2005
2016
|
} from "@nx/devkit";
|
|
2006
2017
|
import * as path3 from "node:path";
|
|
@@ -2222,7 +2233,7 @@ async function presetGeneratorFn(tree, options) {
|
|
|
2222
2233
|
tree,
|
|
2223
2234
|
dependencies,
|
|
2224
2235
|
{},
|
|
2225
|
-
|
|
2236
|
+
joinPathFragments5(projectRoot, "package.json")
|
|
2226
2237
|
)
|
|
2227
2238
|
);
|
|
2228
2239
|
return null;
|
|
@@ -2235,7 +2246,7 @@ var generator_default5 = withRunGenerator(
|
|
|
2235
2246
|
// ../workspace-tools/src/generators/release-version/generator.ts
|
|
2236
2247
|
import {
|
|
2237
2248
|
formatFiles as formatFiles8,
|
|
2238
|
-
joinPathFragments as
|
|
2249
|
+
joinPathFragments as joinPathFragments6,
|
|
2239
2250
|
output,
|
|
2240
2251
|
readJson as readJson2,
|
|
2241
2252
|
updateJson as updateJson3,
|
|
@@ -2834,10 +2845,10 @@ import { retrieveProjectConfigurationsWithoutPluginInference } from "nx/src/proj
|
|
|
2834
2845
|
// ../workspace-tools/src/utils/lock-file.ts
|
|
2835
2846
|
import {
|
|
2836
2847
|
output as output2,
|
|
2837
|
-
readJsonFile,
|
|
2848
|
+
readJsonFile as readJsonFile2,
|
|
2838
2849
|
workspaceRoot as workspaceRoot2
|
|
2839
2850
|
} from "@nx/devkit";
|
|
2840
|
-
import { existsSync as
|
|
2851
|
+
import { existsSync as existsSync7 } from "node:fs";
|
|
2841
2852
|
import { join as join2 } from "node:path";
|
|
2842
2853
|
import {
|
|
2843
2854
|
getNpmLockfileDependencies,
|
|
@@ -2858,18 +2869,11 @@ var YARN_LOCK_PATH = join2(workspaceRoot2, YARN_LOCK_FILE);
|
|
|
2858
2869
|
var NPM_LOCK_PATH = join2(workspaceRoot2, NPM_LOCK_FILE);
|
|
2859
2870
|
var PNPM_LOCK_PATH = join2(workspaceRoot2, PNPM_LOCK_FILE);
|
|
2860
2871
|
|
|
2861
|
-
// ../workspace-tools/src/utils/package-helpers.ts
|
|
2862
|
-
import {
|
|
2863
|
-
joinPathFragments as joinPathFragments6,
|
|
2864
|
-
readJsonFile as readJsonFile2
|
|
2865
|
-
} from "@nx/devkit";
|
|
2866
|
-
import { existsSync as existsSync7 } from "node:fs";
|
|
2867
|
-
|
|
2868
2872
|
// ../workspace-tools/src/utils/plugin-helpers.ts
|
|
2869
2873
|
import { readJsonFile as readJsonFile3 } from "@nx/devkit";
|
|
2870
2874
|
import defu3 from "defu";
|
|
2871
2875
|
import { existsSync as existsSync8 } from "node:fs";
|
|
2872
|
-
import { dirname, join as join3 } from "node:path";
|
|
2876
|
+
import { dirname as dirname2, join as join3 } from "node:path";
|
|
2873
2877
|
|
|
2874
2878
|
// ../workspace-tools/src/utils/typia-transform.ts
|
|
2875
2879
|
import transform2 from "typia/lib/transform";
|
|
@@ -122,9 +122,9 @@ function cargoMetadata() {
|
|
|
122
122
|
function runProcess(processCmd, ...args) {
|
|
123
123
|
const metadata = cargoMetadata();
|
|
124
124
|
const targetDir = _nullishCoalesce(_optionalChain([metadata, 'optionalAccess', _4 => _4.target_directory]), () => ( _devkit.joinPathFragments.call(void 0, _devkit.workspaceRoot, "dist")));
|
|
125
|
-
return new Promise((
|
|
125
|
+
return new Promise((resolve2) => {
|
|
126
126
|
if (process.env.VERCEL) {
|
|
127
|
-
return
|
|
127
|
+
return resolve2({ success: true });
|
|
128
128
|
}
|
|
129
129
|
_child_process.execSync.call(void 0, `${processCmd} ${args.join(" ")}`, {
|
|
130
130
|
cwd: process.cwd(),
|
|
@@ -137,7 +137,7 @@ function runProcess(processCmd, ...args) {
|
|
|
137
137
|
windowsHide: true,
|
|
138
138
|
stdio: ["inherit", "inherit", "inherit"]
|
|
139
139
|
});
|
|
140
|
-
|
|
140
|
+
resolve2({ success: true });
|
|
141
141
|
});
|
|
142
142
|
}
|
|
143
143
|
|
|
@@ -1063,6 +1063,77 @@ var executor_default6 = _chunkQHV7SDFQjs.withRunExecutor.call(void 0,
|
|
|
1063
1063
|
|
|
1064
1064
|
var _prettier = require('prettier');
|
|
1065
1065
|
|
|
1066
|
+
// ../workspace-tools/src/utils/package-helpers.ts
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
|
|
1072
|
+
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
|
|
1077
|
+
// ../workspace-tools/src/utils/project-tags.ts
|
|
1078
|
+
var ProjectTagConstants = {
|
|
1079
|
+
Language: {
|
|
1080
|
+
TAG_ID: "language",
|
|
1081
|
+
TYPESCRIPT: "typescript",
|
|
1082
|
+
RUST: "rust"
|
|
1083
|
+
},
|
|
1084
|
+
ProjectType: {
|
|
1085
|
+
TAG_ID: "type",
|
|
1086
|
+
LIBRARY: "library",
|
|
1087
|
+
APPLICATION: "application"
|
|
1088
|
+
},
|
|
1089
|
+
DistStyle: {
|
|
1090
|
+
TAG_ID: "dist-style",
|
|
1091
|
+
NORMAL: "normal",
|
|
1092
|
+
CLEAN: "clean"
|
|
1093
|
+
},
|
|
1094
|
+
Provider: {
|
|
1095
|
+
TAG_ID: "provider"
|
|
1096
|
+
},
|
|
1097
|
+
Platform: {
|
|
1098
|
+
TAG_ID: "platform",
|
|
1099
|
+
NODE: "node",
|
|
1100
|
+
BROWSER: "browser",
|
|
1101
|
+
NEUTRAL: "neutral",
|
|
1102
|
+
WORKER: "worker"
|
|
1103
|
+
},
|
|
1104
|
+
Registry: {
|
|
1105
|
+
TAG_ID: "registry",
|
|
1106
|
+
CARGO: "cargo",
|
|
1107
|
+
NPM: "npm",
|
|
1108
|
+
CONTAINER: "container",
|
|
1109
|
+
CYCLONE: "cyclone"
|
|
1110
|
+
},
|
|
1111
|
+
Plugin: {
|
|
1112
|
+
TAG_ID: "plugin"
|
|
1113
|
+
}
|
|
1114
|
+
};
|
|
1115
|
+
var formatProjectTag = (variant, value) => {
|
|
1116
|
+
return `${variant}:${value}`;
|
|
1117
|
+
};
|
|
1118
|
+
var hasProjectTag = (project, variant) => {
|
|
1119
|
+
project.tags = _nullishCoalesce(project.tags, () => ( []));
|
|
1120
|
+
const prefix = formatProjectTag(variant, "");
|
|
1121
|
+
return project.tags.some(
|
|
1122
|
+
(tag) => tag.startsWith(prefix) && tag.length > prefix.length
|
|
1123
|
+
);
|
|
1124
|
+
};
|
|
1125
|
+
var addProjectTag = (project, variant, value, options = {
|
|
1126
|
+
overwrite: false
|
|
1127
|
+
}) => {
|
|
1128
|
+
project.tags = _nullishCoalesce(project.tags, () => ( []));
|
|
1129
|
+
if (options.overwrite || !hasProjectTag(project, variant)) {
|
|
1130
|
+
project.tags = project.tags.filter(
|
|
1131
|
+
(tag) => !tag.startsWith(formatProjectTag(variant, ""))
|
|
1132
|
+
);
|
|
1133
|
+
project.tags.push(formatProjectTag(variant, value));
|
|
1134
|
+
}
|
|
1135
|
+
};
|
|
1136
|
+
|
|
1066
1137
|
// ../workspace-tools/src/utils/pnpm-deps-update.ts
|
|
1067
1138
|
|
|
1068
1139
|
|
|
@@ -1359,66 +1430,6 @@ var _js = require('@nx/js');
|
|
|
1359
1430
|
var _init = require('@nx/js/src/generators/init/init'); var _init2 = _interopRequireDefault(_init);
|
|
1360
1431
|
var _generator = require('@nx/js/src/generators/setup-verdaccio/generator'); var _generator2 = _interopRequireDefault(_generator);
|
|
1361
1432
|
|
|
1362
|
-
// ../workspace-tools/src/utils/project-tags.ts
|
|
1363
|
-
var ProjectTagConstants = {
|
|
1364
|
-
Language: {
|
|
1365
|
-
TAG_ID: "language",
|
|
1366
|
-
TYPESCRIPT: "typescript",
|
|
1367
|
-
RUST: "rust"
|
|
1368
|
-
},
|
|
1369
|
-
ProjectType: {
|
|
1370
|
-
TAG_ID: "type",
|
|
1371
|
-
LIBRARY: "library",
|
|
1372
|
-
APPLICATION: "application"
|
|
1373
|
-
},
|
|
1374
|
-
DistStyle: {
|
|
1375
|
-
TAG_ID: "dist-style",
|
|
1376
|
-
NORMAL: "normal",
|
|
1377
|
-
CLEAN: "clean"
|
|
1378
|
-
},
|
|
1379
|
-
Provider: {
|
|
1380
|
-
TAG_ID: "provider"
|
|
1381
|
-
},
|
|
1382
|
-
Platform: {
|
|
1383
|
-
TAG_ID: "platform",
|
|
1384
|
-
NODE: "node",
|
|
1385
|
-
BROWSER: "browser",
|
|
1386
|
-
NEUTRAL: "neutral",
|
|
1387
|
-
WORKER: "worker"
|
|
1388
|
-
},
|
|
1389
|
-
Registry: {
|
|
1390
|
-
TAG_ID: "registry",
|
|
1391
|
-
CARGO: "cargo",
|
|
1392
|
-
NPM: "npm",
|
|
1393
|
-
CONTAINER: "container",
|
|
1394
|
-
CYCLONE: "cyclone"
|
|
1395
|
-
},
|
|
1396
|
-
Plugin: {
|
|
1397
|
-
TAG_ID: "plugin"
|
|
1398
|
-
}
|
|
1399
|
-
};
|
|
1400
|
-
var formatProjectTag = (variant, value) => {
|
|
1401
|
-
return `${variant}:${value}`;
|
|
1402
|
-
};
|
|
1403
|
-
var hasProjectTag = (project, variant) => {
|
|
1404
|
-
project.tags = _nullishCoalesce(project.tags, () => ( []));
|
|
1405
|
-
const prefix = formatProjectTag(variant, "");
|
|
1406
|
-
return project.tags.some(
|
|
1407
|
-
(tag) => tag.startsWith(prefix) && tag.length > prefix.length
|
|
1408
|
-
);
|
|
1409
|
-
};
|
|
1410
|
-
var addProjectTag = (project, variant, value, options = {
|
|
1411
|
-
overwrite: false
|
|
1412
|
-
}) => {
|
|
1413
|
-
project.tags = _nullishCoalesce(project.tags, () => ( []));
|
|
1414
|
-
if (options.overwrite || !hasProjectTag(project, variant)) {
|
|
1415
|
-
project.tags = project.tags.filter(
|
|
1416
|
-
(tag) => !tag.startsWith(formatProjectTag(variant, ""))
|
|
1417
|
-
);
|
|
1418
|
-
project.tags.push(formatProjectTag(variant, value));
|
|
1419
|
-
}
|
|
1420
|
-
};
|
|
1421
|
-
|
|
1422
1433
|
// ../workspace-tools/src/utils/versions.ts
|
|
1423
1434
|
var typesNodeVersion = "20.9.0";
|
|
1424
1435
|
var nxVersion = "^18.0.4";
|
|
@@ -2857,13 +2868,6 @@ var YARN_LOCK_PATH = _path.join.call(void 0, _devkit.workspaceRoot, YARN_LOCK_FI
|
|
|
2857
2868
|
var NPM_LOCK_PATH = _path.join.call(void 0, _devkit.workspaceRoot, NPM_LOCK_FILE);
|
|
2858
2869
|
var PNPM_LOCK_PATH = _path.join.call(void 0, _devkit.workspaceRoot, PNPM_LOCK_FILE);
|
|
2859
2870
|
|
|
2860
|
-
// ../workspace-tools/src/utils/package-helpers.ts
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
2871
|
// ../workspace-tools/src/utils/plugin-helpers.ts
|
|
2868
2872
|
|
|
2869
2873
|
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkZKDCAXEMjs = require('./chunk-ZKDCAXEM.js');
|
|
5
5
|
require('./chunk-QHV7SDFQ.js');
|
|
6
6
|
require('./chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGenerator =
|
|
9
|
+
exports.initGenerator = _chunkZKDCAXEMjs.initGenerator;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ require('./chunk-CB5TC2RP.js');
|
|
|
5
5
|
require('./chunk-N2YKXZ5R.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkZKDCAXEMjs = require('./chunk-ZKDCAXEM.js');
|
|
9
9
|
require('./chunk-GUQOEBFW.js');
|
|
10
10
|
|
|
11
11
|
|
|
@@ -20,4 +20,4 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator =
|
|
23
|
+
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkZKDCAXEMjs.initGenerator; exports.withTerraformExecutor = _chunkELCT45UMjs.withTerraformExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkZKDCAXEMjs = require('../../../chunk-ZKDCAXEM.js');
|
|
5
5
|
require('../../../chunk-QHV7SDFQ.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkZKDCAXEMjs.init_default; exports.initGenerator = _chunkZKDCAXEMjs.initGenerator;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/terraform-tools",
|
|
3
|
-
"version": "0.60.
|
|
3
|
+
"version": "0.60.29",
|
|
4
4
|
"description": "Tools for managing Terraform infrastructure within a Nx workspace.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -134,5 +134,6 @@
|
|
|
134
134
|
},
|
|
135
135
|
"publishConfig": { "access": "public" },
|
|
136
136
|
"executors": "./executors.json",
|
|
137
|
-
"generators": "./generators.json"
|
|
137
|
+
"generators": "./generators.json",
|
|
138
|
+
"gitHead": "cc6b643307c447a3a7e1118fee4893b3be34cdbd"
|
|
138
139
|
}
|