@storm-software/pulumi-tools 0.7.37 → 0.7.39
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 +15 -0
- package/README.md +1 -1
- package/dist/{chunk-AO623TEM.mjs → chunk-2XCN4ZZY.mjs} +1 -1
- package/dist/{chunk-QTTNEQRW.js → chunk-3B4UHGT2.js} +2 -2
- package/dist/{chunk-KND2PNDI.mjs → chunk-4JHRPIAI.mjs} +1 -1
- package/dist/{chunk-ERVA2FA4.mjs → chunk-56MIYBFB.mjs} +1 -1
- package/dist/{chunk-4TOGDR35.js → chunk-AUCEBVHL.js} +2 -2
- package/dist/{chunk-DZOTALSG.js → chunk-CAUTCB4N.js} +2 -2
- package/dist/{chunk-VK7HVEDR.mjs → chunk-CV3MVGM5.mjs} +1 -1
- package/dist/{chunk-YYTIA2IT.mjs → chunk-EBQ4W45Z.mjs} +1 -1
- package/dist/{chunk-WI4XLWNN.mjs → chunk-FUB25V7L.mjs} +1 -1
- package/dist/{chunk-CM2A7BZ7.js → chunk-GNIGDMSD.js} +2 -2
- package/dist/{chunk-MT75NBOB.js → chunk-HGFZEBRF.js} +2 -2
- package/dist/{chunk-H6DYEHS7.js → chunk-ITMXW6BU.js} +3 -3
- package/dist/{chunk-IJN34LU6.js → chunk-OFWGUF5J.js} +5 -5
- package/dist/{chunk-VFYYKJF6.mjs → chunk-OHB7BWHV.mjs} +27 -14
- package/dist/{chunk-XMH54S4T.mjs → chunk-OSIIC47G.mjs} +1 -1
- package/dist/{chunk-FCJJB3O2.js → chunk-WP5ADETB.js} +62 -49
- package/dist/executors.d.mts +1 -1
- package/dist/executors.d.ts +1 -1
- package/dist/executors.js +7 -7
- package/dist/executors.mjs +7 -7
- package/dist/{generators-Bua4nMog.d.ts → generators-Cf-nGItq.d.mts} +2 -2
- package/dist/{generators-CrZPZKBW.d.mts → generators-DltbTTJ2.d.ts} +2 -2
- package/dist/generators.d.mts +2 -2
- package/dist/generators.d.ts +2 -2
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +9 -9
- package/dist/index.mjs +8 -8
- package/dist/src/base/base-executor.d.mts +2 -2
- package/dist/src/base/base-executor.d.ts +2 -2
- package/dist/src/base/base-executor.js +3 -3
- package/dist/src/base/base-executor.mjs +2 -2
- package/dist/src/base/index.d.mts +1 -1
- package/dist/src/base/index.d.ts +1 -1
- package/dist/src/base/index.js +3 -3
- package/dist/src/base/index.mjs +2 -2
- package/dist/src/executors/config/executor.d.mts +1 -1
- package/dist/src/executors/config/executor.d.ts +1 -1
- package/dist/src/executors/config/executor.js +4 -4
- package/dist/src/executors/config/executor.mjs +3 -3
- package/dist/src/executors/import/executor.d.mts +1 -1
- package/dist/src/executors/import/executor.d.ts +1 -1
- package/dist/src/executors/import/executor.js +4 -4
- package/dist/src/executors/import/executor.mjs +3 -3
- package/dist/src/executors/preview/executor.d.mts +1 -1
- package/dist/src/executors/preview/executor.d.ts +1 -1
- package/dist/src/executors/preview/executor.js +4 -4
- package/dist/src/executors/preview/executor.mjs +3 -3
- package/dist/src/executors/refresh/executor.d.mts +1 -1
- package/dist/src/executors/refresh/executor.d.ts +1 -1
- package/dist/src/executors/refresh/executor.js +4 -4
- package/dist/src/executors/refresh/executor.mjs +3 -3
- package/dist/src/executors/up/executor.d.mts +1 -1
- package/dist/src/executors/up/executor.d.ts +1 -1
- package/dist/src/executors/up/executor.js +4 -4
- package/dist/src/executors/up/executor.mjs +3 -3
- package/dist/src/generators/init/generator.d.mts +2 -2
- package/dist/src/generators/init/generator.d.ts +2 -2
- package/dist/src/generators/init/generator.js +3 -3
- package/dist/src/generators/init/generator.mjs +2 -2
- package/dist/{types-BXfk4hPO.d.mts → types-PmpUoA3H.d.mts} +21 -5
- package/dist/{types-BXfk4hPO.d.ts → types-PmpUoA3H.d.ts} +21 -5
- package/package.json +1 -1
|
@@ -181,7 +181,7 @@ var WorkspaceDirectoryConfigSchema = _zod2.default.object({
|
|
|
181
181
|
log: _zod2.default.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
182
182
|
build: _zod2.default.string().trim().default("dist").describe("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
|
|
183
183
|
}).describe("Various directories used by the workspace to store data, cache, and configuration files");
|
|
184
|
-
var
|
|
184
|
+
var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
185
185
|
$schema: _zod2.default.string().trim().default("https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json").optional().nullish().describe("The URL to the JSON schema file that describes the Storm configuration file"),
|
|
186
186
|
extends: ExtendsSchema.optional(),
|
|
187
187
|
name: _zod2.default.string().trim().toLowerCase().optional().describe("The name of the service/package/scope using this configuration"),
|
|
@@ -1324,7 +1324,7 @@ var setBaseThemeColorConfigEnv = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(vo
|
|
|
1324
1324
|
// ../config-tools/src/create-storm-config.ts
|
|
1325
1325
|
var _extension_cache = /* @__PURE__ */ new WeakMap();
|
|
1326
1326
|
var _static_cache = void 0;
|
|
1327
|
-
var
|
|
1327
|
+
var createStormWorkspaceConfig = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (extensionName, schema, workspaceRoot3, skipLogs = false) => {
|
|
1328
1328
|
let result;
|
|
1329
1329
|
if (!_optionalChain([_static_cache, 'optionalAccess', _57 => _57.data]) || !_optionalChain([_static_cache, 'optionalAccess', _58 => _58.timestamp]) || _static_cache.timestamp < Date.now() - 8e3) {
|
|
1330
1330
|
let _workspaceRoot = workspaceRoot3;
|
|
@@ -1339,7 +1339,7 @@ var createStormConfig = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, asy
|
|
|
1339
1339
|
logLevel: "all"
|
|
1340
1340
|
});
|
|
1341
1341
|
}
|
|
1342
|
-
result = await
|
|
1342
|
+
result = await stormWorkspaceConfigSchema.parseAsync(_defu2.default.call(void 0, configEnv, configFile, defaultConfig));
|
|
1343
1343
|
result.workspaceRoot ??= _workspaceRoot;
|
|
1344
1344
|
} else {
|
|
1345
1345
|
result = _static_cache.data;
|
|
@@ -1355,7 +1355,7 @@ var createStormConfig = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, asy
|
|
|
1355
1355
|
data: result
|
|
1356
1356
|
};
|
|
1357
1357
|
return result;
|
|
1358
|
-
}, "
|
|
1358
|
+
}, "createStormWorkspaceConfig");
|
|
1359
1359
|
var createConfigExtension = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (extensionName, schema) => {
|
|
1360
1360
|
const extension_cache_key = {
|
|
1361
1361
|
extensionName
|
|
@@ -1370,19 +1370,19 @@ var createConfigExtension = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0,
|
|
|
1370
1370
|
_extension_cache.set(extension_cache_key, extension);
|
|
1371
1371
|
return extension;
|
|
1372
1372
|
}, "createConfigExtension");
|
|
1373
|
-
var
|
|
1374
|
-
const config = await
|
|
1373
|
+
var loadStormWorkspaceConfig = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (workspaceRoot3, skipLogs = false) => {
|
|
1374
|
+
const config = await createStormWorkspaceConfig(void 0, void 0, workspaceRoot3, skipLogs);
|
|
1375
1375
|
setConfigEnv(config);
|
|
1376
1376
|
if (!skipLogs && !config.skipConfigLogging) {
|
|
1377
1377
|
writeTrace(`\u2699\uFE0F Using Storm Workspace configuration:
|
|
1378
1378
|
${formatLogMessage(config)}`, config);
|
|
1379
1379
|
}
|
|
1380
1380
|
return config;
|
|
1381
|
-
}, "
|
|
1381
|
+
}, "loadStormWorkspaceConfig");
|
|
1382
1382
|
|
|
1383
1383
|
// ../config-tools/src/get-config.ts
|
|
1384
1384
|
var getConfig = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (workspaceRoot3, skipLogs = false) => {
|
|
1385
|
-
return
|
|
1385
|
+
return loadStormWorkspaceConfig(workspaceRoot3, skipLogs);
|
|
1386
1386
|
}, "getConfig");
|
|
1387
1387
|
|
|
1388
1388
|
// ../workspace-tools/src/base/base-executor.ts
|
|
@@ -1925,13 +1925,13 @@ var addPackageDependencies = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0
|
|
|
1925
1925
|
return ret;
|
|
1926
1926
|
}, [])]);
|
|
1927
1927
|
packageJson.dependencies = localPackages.reduce((ret, localPackage) => {
|
|
1928
|
-
if (!ret[localPackage.name] && !_optionalChain([implicitDependencies, 'optionalAccess', _113 => _113.includes, 'call', _114 => _114(localPackage.name)])) {
|
|
1929
|
-
ret[localPackage.name] =
|
|
1928
|
+
if (!ret[localPackage.name] && !_optionalChain([implicitDependencies, 'optionalAccess', _113 => _113.includes, 'call', _114 => _114(localPackage.name)]) && _optionalChain([packageJson, 'access', _115 => _115.devDependencies, 'optionalAccess', _116 => _116[localPackage.name]]) === void 0) {
|
|
1929
|
+
ret[localPackage.name] = `^${localPackage.version || "0.0.1"}`;
|
|
1930
1930
|
}
|
|
1931
1931
|
return ret;
|
|
1932
1932
|
}, _nullishCoalesce(packageJson.dependencies, () => ( {})));
|
|
1933
1933
|
packageJson.devDependencies = localPackages.reduce((ret, localPackage) => {
|
|
1934
|
-
if (!ret[localPackage.name] && _optionalChain([implicitDependencies, 'optionalAccess',
|
|
1934
|
+
if (!ret[localPackage.name] && _optionalChain([implicitDependencies, 'optionalAccess', _117 => _117.includes, 'call', _118 => _118(localPackage.name)]) && _optionalChain([packageJson, 'access', _119 => _119.dependencies, 'optionalAccess', _120 => _120[localPackage.name]]) === void 0) {
|
|
1935
1935
|
ret[localPackage.name] = localPackage.version || "0.0.1";
|
|
1936
1936
|
}
|
|
1937
1937
|
return ret;
|
|
@@ -2024,7 +2024,11 @@ var getEntryPoints = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
2024
2024
|
return ret;
|
|
2025
2025
|
}, []));
|
|
2026
2026
|
} else {
|
|
2027
|
-
|
|
2027
|
+
const result = correctPaths(entryPoint.replaceAll(correctPaths(workspaceRoot3), "").replaceAll(correctPaths(projectRoot), ""));
|
|
2028
|
+
writeDebug(`Trying to add entry point ${result}"`, config);
|
|
2029
|
+
if (!paths.includes(result)) {
|
|
2030
|
+
paths.push(result);
|
|
2031
|
+
}
|
|
2028
2032
|
}
|
|
2029
2033
|
return paths;
|
|
2030
2034
|
}));
|
|
@@ -2136,15 +2140,15 @@ var RendererEngine = class {
|
|
|
2136
2140
|
if (!relativePath.startsWith("\\\\?\\")) {
|
|
2137
2141
|
relativePath = relativePath.replace(/\\/g, "/");
|
|
2138
2142
|
}
|
|
2139
|
-
const meta = _optionalChain([metafile, 'optionalAccess',
|
|
2143
|
+
const meta = _optionalChain([metafile, 'optionalAccess', _121 => _121.outputs, 'access', _122 => _122[relativePath]]);
|
|
2140
2144
|
return {
|
|
2141
2145
|
type: "chunk",
|
|
2142
2146
|
path: file.path,
|
|
2143
2147
|
code: file.text,
|
|
2144
|
-
map: _optionalChain([outputFiles, 'access',
|
|
2145
|
-
entryPoint: _optionalChain([meta, 'optionalAccess',
|
|
2146
|
-
exports: _optionalChain([meta, 'optionalAccess',
|
|
2147
|
-
imports: _optionalChain([meta, 'optionalAccess',
|
|
2148
|
+
map: _optionalChain([outputFiles, 'access', _123 => _123.find, 'call', _124 => _124((f) => f.path === `${file.path}.map`), 'optionalAccess', _125 => _125.text]),
|
|
2149
|
+
entryPoint: _optionalChain([meta, 'optionalAccess', _126 => _126.entryPoint]),
|
|
2150
|
+
exports: _optionalChain([meta, 'optionalAccess', _127 => _127.exports]),
|
|
2151
|
+
imports: _optionalChain([meta, 'optionalAccess', _128 => _128.imports])
|
|
2148
2152
|
};
|
|
2149
2153
|
} else {
|
|
2150
2154
|
return {
|
|
@@ -2227,7 +2231,7 @@ var esmSplitCodeToCjsPlugin = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void
|
|
|
2227
2231
|
name: "storm:esm-split-code-to-cjs",
|
|
2228
2232
|
setup(build4) {
|
|
2229
2233
|
build4.onEnd(async (result) => {
|
|
2230
|
-
const outFiles = Object.keys(_nullishCoalesce(_optionalChain([result, 'access',
|
|
2234
|
+
const outFiles = Object.keys(_nullishCoalesce(_optionalChain([result, 'access', _129 => _129.metafile, 'optionalAccess', _130 => _130.outputs]), () => ( {})));
|
|
2231
2235
|
const jsFiles = outFiles.filter((f) => f.endsWith("js"));
|
|
2232
2236
|
await esbuild.build({
|
|
2233
2237
|
outdir: resolvedOptions.outdir,
|
|
@@ -2349,7 +2353,7 @@ ${result.errors.map((error) => error.text).join("\n")}
|
|
|
2349
2353
|
// ../esbuild/src/plugins/resolve-paths.ts
|
|
2350
2354
|
|
|
2351
2355
|
function resolvePathsConfig(options, cwd) {
|
|
2352
|
-
if (_optionalChain([options, 'optionalAccess',
|
|
2356
|
+
if (_optionalChain([options, 'optionalAccess', _131 => _131.compilerOptions, 'optionalAccess', _132 => _132.paths])) {
|
|
2353
2357
|
const paths = Object.entries(options.compilerOptions.paths);
|
|
2354
2358
|
const resolvedPaths = paths.map(([key, paths2]) => {
|
|
2355
2359
|
return [
|
|
@@ -2377,7 +2381,7 @@ var resolvePathsPlugin = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (o
|
|
|
2377
2381
|
build4.onResolve({
|
|
2378
2382
|
filter: packagesRegex
|
|
2379
2383
|
}, (args) => {
|
|
2380
|
-
if (_optionalChain([build4, 'access',
|
|
2384
|
+
if (_optionalChain([build4, 'access', _133 => _133.initialOptions, 'access', _134 => _134.external, 'optionalAccess', _135 => _135.includes, 'call', _136 => _136(args.path)])) {
|
|
2381
2385
|
return {
|
|
2382
2386
|
path: args.path,
|
|
2383
2387
|
external: true
|
|
@@ -2486,7 +2490,7 @@ var tscPlugin = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (options, r
|
|
|
2486
2490
|
function getTypeDependencyPackageName(npmPackage) {
|
|
2487
2491
|
if (npmPackage.startsWith("@")) {
|
|
2488
2492
|
const [scope, name] = npmPackage.split("/");
|
|
2489
|
-
return `@types/${_optionalChain([scope, 'optionalAccess',
|
|
2493
|
+
return `@types/${_optionalChain([scope, 'optionalAccess', _137 => _137.slice, 'call', _138 => _138(1)])}__${name}`;
|
|
2490
2494
|
}
|
|
2491
2495
|
return `@types/${npmPackage}`;
|
|
2492
2496
|
}
|
|
@@ -2702,7 +2706,7 @@ function pipeSync(fn, ...fns) {
|
|
|
2702
2706
|
return (...args) => {
|
|
2703
2707
|
let result = fn(...args);
|
|
2704
2708
|
for (let i = 0; result !== skip && i < fns.length; ++i) {
|
|
2705
|
-
result = _optionalChain([fns, 'access',
|
|
2709
|
+
result = _optionalChain([fns, 'access', _139 => _139[i], 'optionalCall', _140 => _140(result)]);
|
|
2706
2710
|
}
|
|
2707
2711
|
return result;
|
|
2708
2712
|
};
|
|
@@ -2712,7 +2716,7 @@ function pipeAsync(fn, ...fns) {
|
|
|
2712
2716
|
return async (...args) => {
|
|
2713
2717
|
let result = await fn(...args);
|
|
2714
2718
|
for (let i = 0; result !== skip && i < fns.length; ++i) {
|
|
2715
|
-
result = await _optionalChain([fns, 'access',
|
|
2719
|
+
result = await _optionalChain([fns, 'access', _141 => _141[i], 'optionalCall', _142 => _142(result)]);
|
|
2716
2720
|
}
|
|
2717
2721
|
return result;
|
|
2718
2722
|
};
|
|
@@ -2742,7 +2746,7 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
2742
2746
|
const projectJson = JSON.parse(projectJsonFile);
|
|
2743
2747
|
const projectName = projectJson.name;
|
|
2744
2748
|
const projectConfigurations = _devkit.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
|
|
2745
|
-
if (!_optionalChain([projectConfigurations, 'optionalAccess',
|
|
2749
|
+
if (!_optionalChain([projectConfigurations, 'optionalAccess', _143 => _143.projects, 'optionalAccess', _144 => _144[projectName]])) {
|
|
2746
2750
|
throw new Error("The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project.");
|
|
2747
2751
|
}
|
|
2748
2752
|
const options = _defu2.default.call(void 0, userOptions, DEFAULT_BUILD_OPTIONS);
|
|
@@ -2819,7 +2823,12 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
2819
2823
|
};
|
|
2820
2824
|
result.plugins = _nullishCoalesce(userOptions.plugins, () => ( getDefaultBuildPlugins(userOptions, result)));
|
|
2821
2825
|
if (options.inject && Array.isArray(options.inject) && options.inject.length > 0) {
|
|
2822
|
-
result.inject =
|
|
2826
|
+
result.inject = options.inject.reduce((ret, inj) => {
|
|
2827
|
+
if (inj && typeof inj === "string" && ret.includes(inj)) {
|
|
2828
|
+
ret.push(inj);
|
|
2829
|
+
}
|
|
2830
|
+
return ret;
|
|
2831
|
+
}, result.inject);
|
|
2823
2832
|
}
|
|
2824
2833
|
delete result.entry;
|
|
2825
2834
|
delete result.outputPath;
|
|
@@ -2912,6 +2921,10 @@ async function executeEsBuild(context2) {
|
|
|
2912
2921
|
...context2.options
|
|
2913
2922
|
};
|
|
2914
2923
|
options.outdir = joinPaths(context2.options.outdir, context2.options.distDir);
|
|
2924
|
+
if (!options.inject || !Array.isArray(options.inject) || options.inject.length === 0 || // eslint-disable-next-line no-constant-binary-expression, @typescript-eslint/no-explicit-any
|
|
2925
|
+
options.inject === {}) {
|
|
2926
|
+
delete options.inject;
|
|
2927
|
+
}
|
|
2915
2928
|
delete options.env;
|
|
2916
2929
|
delete options.name;
|
|
2917
2930
|
delete options.assets;
|
|
@@ -2946,7 +2959,7 @@ ${formatLogMessage(options)}`, context2.options.config);
|
|
|
2946
2959
|
}
|
|
2947
2960
|
_chunk3GQAWCBQjs.__name.call(void 0, executeEsBuild, "executeEsBuild");
|
|
2948
2961
|
async function copyBuildAssets(context2) {
|
|
2949
|
-
if (_optionalChain([context2, 'access',
|
|
2962
|
+
if (_optionalChain([context2, 'access', _145 => _145.result, 'optionalAccess', _146 => _146.errors, 'access', _147 => _147.length]) === 0) {
|
|
2950
2963
|
writeDebug(` \u{1F4CB} Copying asset files to output directory: ${context2.options.outdir}`, context2.options.config);
|
|
2951
2964
|
const stopwatch = getStopwatch(`${context2.options.name} asset copy`);
|
|
2952
2965
|
await copyAssets(context2.options.config, _nullishCoalesce(context2.options.assets, () => ( [])), context2.options.outdir, context2.options.projectRoot, context2.options.sourceRoot, true, false);
|
|
@@ -2956,7 +2969,7 @@ async function copyBuildAssets(context2) {
|
|
|
2956
2969
|
}
|
|
2957
2970
|
_chunk3GQAWCBQjs.__name.call(void 0, copyBuildAssets, "copyBuildAssets");
|
|
2958
2971
|
async function reportResults(context2) {
|
|
2959
|
-
if (_optionalChain([context2, 'access',
|
|
2972
|
+
if (_optionalChain([context2, 'access', _148 => _148.result, 'optionalAccess', _149 => _149.errors, 'access', _150 => _150.length]) === 0) {
|
|
2960
2973
|
if (context2.result.warnings.length > 0) {
|
|
2961
2974
|
writeWarning(` \u{1F6A7} The following warnings occurred during the build: ${context2.result.warnings.map((warning) => warning.text).join("\n")}`, context2.options.config);
|
|
2962
2975
|
}
|
|
@@ -3057,14 +3070,14 @@ var watch = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (context2, opti
|
|
|
3057
3070
|
// ../workspace-tools/src/executors/esbuild/executor.ts
|
|
3058
3071
|
async function esbuildExecutorFn(options, context2, config) {
|
|
3059
3072
|
writeInfo("\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
|
|
3060
|
-
if (!_optionalChain([context2, 'access',
|
|
3073
|
+
if (!_optionalChain([context2, 'access', _151 => _151.projectsConfigurations, 'optionalAccess', _152 => _152.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName] || !_optionalChain([context2, 'access', _153 => _153.projectsConfigurations, 'access', _154 => _154.projects, 'access', _155 => _155[context2.projectName], 'optionalAccess', _156 => _156.root])) {
|
|
3061
3074
|
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
|
|
3062
3075
|
}
|
|
3063
3076
|
await build3({
|
|
3064
3077
|
...options,
|
|
3065
|
-
projectRoot: _optionalChain([context2, 'access',
|
|
3078
|
+
projectRoot: _optionalChain([context2, 'access', _157 => _157.projectsConfigurations, 'access', _158 => _158.projects, 'optionalAccess', _159 => _159[context2.projectName], 'access', _160 => _160.root]),
|
|
3066
3079
|
projectName: context2.projectName,
|
|
3067
|
-
sourceRoot: _optionalChain([context2, 'access',
|
|
3080
|
+
sourceRoot: _optionalChain([context2, 'access', _161 => _161.projectsConfigurations, 'access', _162 => _162.projects, 'optionalAccess', _163 => _163[context2.projectName], 'optionalAccess', _164 => _164.sourceRoot]),
|
|
3068
3081
|
format: options.format,
|
|
3069
3082
|
platform: options.format
|
|
3070
3083
|
});
|
|
@@ -3107,7 +3120,7 @@ var _esbuildwhy = require('@size-limit/esbuild-why'); var _esbuildwhy2 = _intero
|
|
|
3107
3120
|
var _file = require('@size-limit/file'); var _file2 = _interopRequireDefault(_file);
|
|
3108
3121
|
var _sizelimit = require('size-limit'); var _sizelimit2 = _interopRequireDefault(_sizelimit);
|
|
3109
3122
|
async function sizeLimitExecutorFn(options, context2, config) {
|
|
3110
|
-
if (!_optionalChain([context2, 'optionalAccess',
|
|
3123
|
+
if (!_optionalChain([context2, 'optionalAccess', _165 => _165.projectName]) || !_optionalChain([context2, 'access', _166 => _166.projectsConfigurations, 'optionalAccess', _167 => _167.projects]) || !context2.projectsConfigurations.projects[context2.projectName]) {
|
|
3111
3124
|
throw new Error("The Size-Limit process failed because the context is not valid. Please run this command from a workspace.");
|
|
3112
3125
|
}
|
|
3113
3126
|
writeInfo(`\u{1F4CF} Running Size-Limit on ${context2.projectName}`, config);
|
|
@@ -3116,7 +3129,7 @@ async function sizeLimitExecutorFn(options, context2, config) {
|
|
|
3116
3129
|
_esbuild3.default,
|
|
3117
3130
|
_esbuildwhy2.default
|
|
3118
3131
|
], {
|
|
3119
|
-
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context2, 'access',
|
|
3132
|
+
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context2, 'access', _168 => _168.projectsConfigurations, 'access', _169 => _169.projects, 'access', _170 => _170[context2.projectName], 'optionalAccess', _171 => _171.sourceRoot]))), () => ( _devkit.joinPathFragments.call(void 0, _nullishCoalesce(_optionalChain([context2, 'access', _172 => _172.projectsConfigurations, 'access', _173 => _173.projects, 'access', _174 => _174[context2.projectName], 'optionalAccess', _175 => _175.root]), () => ( "./")), "src")))
|
|
3120
3133
|
}).then((result) => {
|
|
3121
3134
|
writeInfo(`\u{1F4CF} ${context2.projectName} Size-Limit result: ${JSON.stringify(result)}`, config);
|
|
3122
3135
|
});
|
|
@@ -3175,7 +3188,7 @@ var executor_default8 = withRunExecutor("Typia runtime validation generator", ty
|
|
|
3175
3188
|
var _jiti = require('jiti');
|
|
3176
3189
|
async function unbuildExecutorFn(options, context2, config) {
|
|
3177
3190
|
writeInfo("\u{1F4E6} Running Storm Unbuild executor on the workspace", config);
|
|
3178
|
-
if (!_optionalChain([context2, 'access',
|
|
3191
|
+
if (!_optionalChain([context2, 'access', _176 => _176.projectsConfigurations, 'optionalAccess', _177 => _177.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName]) {
|
|
3179
3192
|
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace root directory.");
|
|
3180
3193
|
}
|
|
3181
3194
|
if (!context2.projectsConfigurations.projects[context2.projectName].root) {
|
|
@@ -3386,15 +3399,15 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3386
3399
|
_devkit.addProjectConfiguration.call(void 0, tree, normalized.name, projectConfig);
|
|
3387
3400
|
let repository = {
|
|
3388
3401
|
type: "github",
|
|
3389
|
-
url: _optionalChain([config, 'optionalAccess',
|
|
3402
|
+
url: _optionalChain([config, 'optionalAccess', _178 => _178.repository]) || `https://github.com/${_optionalChain([config, 'optionalAccess', _179 => _179.organization]) || "storm-software"}/${_optionalChain([config, 'optionalAccess', _180 => _180.namespace]) || _optionalChain([config, 'optionalAccess', _181 => _181.name]) || "repository"}.git`
|
|
3390
3403
|
};
|
|
3391
3404
|
let description = options.description || "A package developed by Storm Software used to create modern, scalable web applications.";
|
|
3392
3405
|
if (tree.exists("package.json")) {
|
|
3393
3406
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
3394
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3407
|
+
if (_optionalChain([packageJson, 'optionalAccess', _182 => _182.repository])) {
|
|
3395
3408
|
repository = packageJson.repository;
|
|
3396
3409
|
}
|
|
3397
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3410
|
+
if (_optionalChain([packageJson, 'optionalAccess', _183 => _183.description])) {
|
|
3398
3411
|
description = packageJson.description;
|
|
3399
3412
|
}
|
|
3400
3413
|
}
|
|
@@ -3449,9 +3462,9 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3449
3462
|
_devkit.updateJson.call(void 0, tree, "package.json", (json) => ({
|
|
3450
3463
|
...json,
|
|
3451
3464
|
pnpm: {
|
|
3452
|
-
..._optionalChain([json, 'optionalAccess',
|
|
3465
|
+
..._optionalChain([json, 'optionalAccess', _184 => _184.pnpm]),
|
|
3453
3466
|
overrides: {
|
|
3454
|
-
..._optionalChain([json, 'optionalAccess',
|
|
3467
|
+
..._optionalChain([json, 'optionalAccess', _185 => _185.pnpm, 'optionalAccess', _186 => _186.overrides]),
|
|
3455
3468
|
[_nullishCoalesce(normalized.importPath, () => ( ""))]: "workspace:*"
|
|
3456
3469
|
}
|
|
3457
3470
|
}
|
|
@@ -3465,10 +3478,10 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3465
3478
|
]);
|
|
3466
3479
|
if (tree.exists("package.json")) {
|
|
3467
3480
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
3468
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3481
|
+
if (_optionalChain([packageJson, 'optionalAccess', _187 => _187.repository])) {
|
|
3469
3482
|
repository = packageJson.repository;
|
|
3470
3483
|
}
|
|
3471
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3484
|
+
if (_optionalChain([packageJson, 'optionalAccess', _188 => _188.description])) {
|
|
3472
3485
|
description = packageJson.description;
|
|
3473
3486
|
}
|
|
3474
3487
|
}
|
|
@@ -3516,24 +3529,24 @@ _chunk3GQAWCBQjs.__name.call(void 0, getOutputPath, "getOutputPath");
|
|
|
3516
3529
|
function createProjectTsConfigJson(tree, options) {
|
|
3517
3530
|
const tsconfig = {
|
|
3518
3531
|
extends: options.rootProject ? void 0 : _js.getRelativePathToRootTsConfig.call(void 0, tree, options.projectRoot),
|
|
3519
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3532
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _189 => _189.tsconfigOptions]), () => ( {})),
|
|
3520
3533
|
compilerOptions: {
|
|
3521
3534
|
...options.rootProject ? _js.tsConfigBaseOptions : {},
|
|
3522
3535
|
outDir: joinPaths(_devkit.offsetFromRoot.call(void 0, options.projectRoot), "dist/out-tsc"),
|
|
3523
3536
|
noEmit: true,
|
|
3524
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3537
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _190 => _190.tsconfigOptions, 'optionalAccess', _191 => _191.compilerOptions]), () => ( {}))
|
|
3525
3538
|
},
|
|
3526
3539
|
files: [
|
|
3527
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3540
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _192 => _192.tsconfigOptions, 'optionalAccess', _193 => _193.files]), () => ( []))
|
|
3528
3541
|
],
|
|
3529
3542
|
include: [
|
|
3530
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3543
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _194 => _194.tsconfigOptions, 'optionalAccess', _195 => _195.include]), () => ( [])),
|
|
3531
3544
|
"src/**/*.ts",
|
|
3532
3545
|
"src/**/*.js",
|
|
3533
3546
|
"bin/**/*"
|
|
3534
3547
|
],
|
|
3535
3548
|
exclude: [
|
|
3536
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3549
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _196 => _196.tsconfigOptions, 'optionalAccess', _197 => _197.exclude]), () => ( [])),
|
|
3537
3550
|
"jest.config.ts",
|
|
3538
3551
|
"src/**/*.spec.ts",
|
|
3539
3552
|
"src/**/*.test.ts"
|
|
@@ -3544,8 +3557,8 @@ function createProjectTsConfigJson(tree, options) {
|
|
|
3544
3557
|
_chunk3GQAWCBQjs.__name.call(void 0, createProjectTsConfigJson, "createProjectTsConfigJson");
|
|
3545
3558
|
async function normalizeOptions(tree, options, config) {
|
|
3546
3559
|
let importPath = options.importPath;
|
|
3547
|
-
if (!importPath && _optionalChain([config, 'optionalAccess',
|
|
3548
|
-
importPath = `@${_optionalChain([config, 'optionalAccess',
|
|
3560
|
+
if (!importPath && _optionalChain([config, 'optionalAccess', _198 => _198.namespace])) {
|
|
3561
|
+
importPath = `@${_optionalChain([config, 'optionalAccess', _199 => _199.namespace])}/${options.name}`;
|
|
3549
3562
|
}
|
|
3550
3563
|
if (options.publishable) {
|
|
3551
3564
|
if (!importPath) {
|
|
@@ -3673,11 +3686,11 @@ var _zodtojsonschema = require('zod-to-json-schema');
|
|
|
3673
3686
|
async function configSchemaGeneratorFn(tree, options, config) {
|
|
3674
3687
|
writeInfo("\u{1F4E6} Running Storm Workspace Configuration JSON Schema generator", config);
|
|
3675
3688
|
writeTrace(`Determining the Storm Workspace Configuration JSON Schema...`, config);
|
|
3676
|
-
const jsonSchema = _zodtojsonschema.zodToJsonSchema.call(void 0,
|
|
3689
|
+
const jsonSchema = _zodtojsonschema.zodToJsonSchema.call(void 0, stormWorkspaceConfigSchema, {
|
|
3677
3690
|
name: "StormWorkspaceConfiguration"
|
|
3678
3691
|
});
|
|
3679
3692
|
writeTrace(jsonSchema, config);
|
|
3680
|
-
const outputPath = options.outputFile.replaceAll("{workspaceRoot}", "").replaceAll(_nullishCoalesce(_optionalChain([config, 'optionalAccess',
|
|
3693
|
+
const outputPath = options.outputFile.replaceAll("{workspaceRoot}", "").replaceAll(_nullishCoalesce(_optionalChain([config, 'optionalAccess', _200 => _200.workspaceRoot]), () => ( findWorkspaceRoot())), _optionalChain([options, 'access', _201 => _201.outputFile, 'optionalAccess', _202 => _202.startsWith, 'call', _203 => _203("./")]) ? "" : "./");
|
|
3681
3694
|
writeTrace(`\u{1F4DD} Writing Storm Configuration JSON Schema to "${outputPath}"`, config);
|
|
3682
3695
|
_devkit.writeJson.call(void 0, tree, outputPath, jsonSchema, {
|
|
3683
3696
|
spaces: 2
|
package/dist/executors.d.mts
CHANGED
|
@@ -5,6 +5,6 @@ export { R as RefreshExecutorSchema } from './schema.d-BTpgEb0Q.mjs';
|
|
|
5
5
|
export { U as UpExecutorSchema } from './schema.d-BCkJFwHO.mjs';
|
|
6
6
|
import './src/base/base-executor.mjs';
|
|
7
7
|
import '@nx/devkit';
|
|
8
|
-
import './types-
|
|
8
|
+
import './types-PmpUoA3H.mjs';
|
|
9
9
|
import 'zod';
|
|
10
10
|
import '@storm-software/workspace-tools';
|
package/dist/executors.d.ts
CHANGED
|
@@ -5,6 +5,6 @@ export { R as RefreshExecutorSchema } from './schema.d-DhkOAnzb.js';
|
|
|
5
5
|
export { U as UpExecutorSchema } from './schema.d-Dri9rCeV.js';
|
|
6
6
|
import './src/base/base-executor.js';
|
|
7
7
|
import '@nx/devkit';
|
|
8
|
-
import './types-
|
|
8
|
+
import './types-PmpUoA3H.js';
|
|
9
9
|
import 'zod';
|
|
10
10
|
import '@storm-software/workspace-tools';
|
package/dist/executors.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";require('./chunk-XO62WWX4.js');
|
|
2
|
-
require('./chunk-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-AUCEBVHL.js');
|
|
3
|
+
require('./chunk-HGFZEBRF.js');
|
|
4
|
+
require('./chunk-3B4UHGT2.js');
|
|
5
|
+
require('./chunk-CAUTCB4N.js');
|
|
6
|
+
require('./chunk-GNIGDMSD.js');
|
|
7
|
+
require('./chunk-ITMXW6BU.js');
|
|
8
|
+
require('./chunk-WP5ADETB.js');
|
|
9
9
|
require('./chunk-3GQAWCBQ.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./chunk-UV4HQO3Y.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-EBQ4W45Z.mjs";
|
|
3
|
+
import "./chunk-OSIIC47G.mjs";
|
|
4
|
+
import "./chunk-4JHRPIAI.mjs";
|
|
5
|
+
import "./chunk-FUB25V7L.mjs";
|
|
6
|
+
import "./chunk-CV3MVGM5.mjs";
|
|
7
|
+
import "./chunk-56MIYBFB.mjs";
|
|
8
|
+
import "./chunk-OHB7BWHV.mjs";
|
|
9
9
|
import "./chunk-2BPV2XV2.mjs";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _storm_software_workspace_tools from '@storm-software/workspace-tools';
|
|
2
2
|
import { Tree, GeneratorCallback } from '@nx/devkit';
|
|
3
|
-
import { S as
|
|
3
|
+
import { S as StormWorkspaceConfig } from './types-PmpUoA3H.mjs';
|
|
4
4
|
|
|
5
5
|
// Generated by @storm-software/untyped
|
|
6
6
|
// Do not edit this file directly
|
|
@@ -24,7 +24,7 @@ interface InitGeneratorSchema extends BaseGeneratorSchema {
|
|
|
24
24
|
skipFormat?: boolean;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
declare function initGeneratorFn(tree: Tree, options: InitGeneratorSchema, config:
|
|
27
|
+
declare function initGeneratorFn(tree: Tree, options: InitGeneratorSchema, config: StormWorkspaceConfig): Promise<GeneratorCallback>;
|
|
28
28
|
declare const _default: (tree: Tree, _options: InitGeneratorSchema) => Promise<GeneratorCallback | _storm_software_workspace_tools.BaseGeneratorResult>;
|
|
29
29
|
|
|
30
30
|
export { type InitGeneratorSchema as I, _default as _, initGeneratorFn as i };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _storm_software_workspace_tools from '@storm-software/workspace-tools';
|
|
2
2
|
import { Tree, GeneratorCallback } from '@nx/devkit';
|
|
3
|
-
import { S as
|
|
3
|
+
import { S as StormWorkspaceConfig } from './types-PmpUoA3H.js';
|
|
4
4
|
|
|
5
5
|
// Generated by @storm-software/untyped
|
|
6
6
|
// Do not edit this file directly
|
|
@@ -24,7 +24,7 @@ interface InitGeneratorSchema extends BaseGeneratorSchema {
|
|
|
24
24
|
skipFormat?: boolean;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
declare function initGeneratorFn(tree: Tree, options: InitGeneratorSchema, config:
|
|
27
|
+
declare function initGeneratorFn(tree: Tree, options: InitGeneratorSchema, config: StormWorkspaceConfig): Promise<GeneratorCallback>;
|
|
28
28
|
declare const _default: (tree: Tree, _options: InitGeneratorSchema) => Promise<GeneratorCallback | _storm_software_workspace_tools.BaseGeneratorResult>;
|
|
29
29
|
|
|
30
30
|
export { type InitGeneratorSchema as I, _default as _, initGeneratorFn as i };
|
package/dist/generators.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { I as InitGeneratorSchema, i as initGeneratorFn } from './generators-
|
|
1
|
+
export { I as InitGeneratorSchema, i as initGeneratorFn } from './generators-Cf-nGItq.mjs';
|
|
2
2
|
import '@storm-software/workspace-tools';
|
|
3
3
|
import '@nx/devkit';
|
|
4
|
-
import './types-
|
|
4
|
+
import './types-PmpUoA3H.mjs';
|
|
5
5
|
import 'zod';
|
package/dist/generators.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { I as InitGeneratorSchema, i as initGeneratorFn } from './generators-
|
|
1
|
+
export { I as InitGeneratorSchema, i as initGeneratorFn } from './generators-DltbTTJ2.js';
|
|
2
2
|
import '@storm-software/workspace-tools';
|
|
3
3
|
import '@nx/devkit';
|
|
4
|
-
import './types-
|
|
4
|
+
import './types-PmpUoA3H.js';
|
|
5
5
|
import 'zod';
|
package/dist/generators.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkOFWGUF5Jjs = require('./chunk-OFWGUF5J.js');
|
|
5
5
|
require('./chunk-DBLK3NPE.js');
|
|
6
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-WP5ADETB.js');
|
|
7
7
|
require('./chunk-3GQAWCBQ.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.initGeneratorFn =
|
|
10
|
+
exports.initGeneratorFn = _chunkOFWGUF5Jjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./chunk-23KFTIT2.mjs";
|
|
2
2
|
import {
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-2XCN4ZZY.mjs";
|
|
5
5
|
import "./chunk-UF7ZCXHA.mjs";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-OHB7BWHV.mjs";
|
|
7
7
|
import "./chunk-2BPV2XV2.mjs";
|
|
8
8
|
export {
|
|
9
9
|
initGeneratorFn
|
package/dist/index.d.mts
CHANGED
|
@@ -3,10 +3,10 @@ export { I as ImportExecutorSchema } from './schema.d-CWp7y_9i.mjs';
|
|
|
3
3
|
export { P as PreviewExecutorSchema } from './schema.d-C3zluSfr.mjs';
|
|
4
4
|
export { R as RefreshExecutorSchema } from './schema.d-BTpgEb0Q.mjs';
|
|
5
5
|
export { U as UpExecutorSchema } from './schema.d-BCkJFwHO.mjs';
|
|
6
|
-
export { I as InitGeneratorSchema, i as initGeneratorFn } from './generators-
|
|
6
|
+
export { I as InitGeneratorSchema, i as initGeneratorFn } from './generators-Cf-nGItq.mjs';
|
|
7
7
|
export { NormalizedPulumiExecutorOptions, PulumiCommandOptions, PulumiExecutorSchema, withPulumiExecutor } from './src/base/base-executor.mjs';
|
|
8
8
|
export { Provider, getCloudTemplateName } from './src/base/providers.mjs';
|
|
9
9
|
import '@storm-software/workspace-tools';
|
|
10
10
|
import '@nx/devkit';
|
|
11
|
-
import './types-
|
|
11
|
+
import './types-PmpUoA3H.mjs';
|
|
12
12
|
import 'zod';
|
package/dist/index.d.ts
CHANGED
|
@@ -3,10 +3,10 @@ export { I as ImportExecutorSchema } from './schema.d-BBpw11tM.js';
|
|
|
3
3
|
export { P as PreviewExecutorSchema } from './schema.d-i8onVGak.js';
|
|
4
4
|
export { R as RefreshExecutorSchema } from './schema.d-DhkOAnzb.js';
|
|
5
5
|
export { U as UpExecutorSchema } from './schema.d-Dri9rCeV.js';
|
|
6
|
-
export { I as InitGeneratorSchema, i as initGeneratorFn } from './generators-
|
|
6
|
+
export { I as InitGeneratorSchema, i as initGeneratorFn } from './generators-DltbTTJ2.js';
|
|
7
7
|
export { NormalizedPulumiExecutorOptions, PulumiCommandOptions, PulumiExecutorSchema, withPulumiExecutor } from './src/base/base-executor.js';
|
|
8
8
|
export { Provider, getCloudTemplateName } from './src/base/providers.js';
|
|
9
9
|
import '@storm-software/workspace-tools';
|
|
10
10
|
import '@nx/devkit';
|
|
11
|
-
import './types-
|
|
11
|
+
import './types-PmpUoA3H.js';
|
|
12
12
|
import 'zod';
|
package/dist/index.js
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-XO62WWX4.js');
|
|
2
|
-
require('./chunk-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-AUCEBVHL.js');
|
|
3
|
+
require('./chunk-HGFZEBRF.js');
|
|
4
|
+
require('./chunk-3B4UHGT2.js');
|
|
5
|
+
require('./chunk-CAUTCB4N.js');
|
|
6
6
|
require('./chunk-N2YKXZ5R.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkOFWGUF5Jjs = require('./chunk-OFWGUF5J.js');
|
|
10
10
|
require('./chunk-GUQOEBFW.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
var _chunkDBLK3NPEjs = require('./chunk-DBLK3NPE.js');
|
|
15
|
-
require('./chunk-
|
|
15
|
+
require('./chunk-GNIGDMSD.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
19
|
-
require('./chunk-
|
|
18
|
+
var _chunkITMXW6BUjs = require('./chunk-ITMXW6BU.js');
|
|
19
|
+
require('./chunk-WP5ADETB.js');
|
|
20
20
|
require('./chunk-3GQAWCBQ.js');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
exports.Provider = _chunkDBLK3NPEjs.Provider; exports.getCloudTemplateName = _chunkDBLK3NPEjs.getCloudTemplateName; exports.initGeneratorFn =
|
|
26
|
+
exports.Provider = _chunkDBLK3NPEjs.Provider; exports.getCloudTemplateName = _chunkDBLK3NPEjs.getCloudTemplateName; exports.initGeneratorFn = _chunkOFWGUF5Jjs.initGeneratorFn; exports.withPulumiExecutor = _chunkITMXW6BUjs.withPulumiExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import "./chunk-UV4HQO3Y.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-EBQ4W45Z.mjs";
|
|
3
|
+
import "./chunk-OSIIC47G.mjs";
|
|
4
|
+
import "./chunk-4JHRPIAI.mjs";
|
|
5
|
+
import "./chunk-FUB25V7L.mjs";
|
|
6
6
|
import "./chunk-23KFTIT2.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGeneratorFn
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-2XCN4ZZY.mjs";
|
|
10
10
|
import "./chunk-CA7S5MOH.mjs";
|
|
11
11
|
import {
|
|
12
12
|
Provider,
|
|
13
13
|
getCloudTemplateName
|
|
14
14
|
} from "./chunk-UF7ZCXHA.mjs";
|
|
15
|
-
import "./chunk-
|
|
15
|
+
import "./chunk-CV3MVGM5.mjs";
|
|
16
16
|
import {
|
|
17
17
|
withPulumiExecutor
|
|
18
|
-
} from "./chunk-
|
|
19
|
-
import "./chunk-
|
|
18
|
+
} from "./chunk-56MIYBFB.mjs";
|
|
19
|
+
import "./chunk-OHB7BWHV.mjs";
|
|
20
20
|
import "./chunk-2BPV2XV2.mjs";
|
|
21
21
|
export {
|
|
22
22
|
Provider,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { ExecutorContext } from '@nx/devkit';
|
|
2
|
-
import { S as
|
|
2
|
+
import { S as StormWorkspaceConfig } from '../../types-PmpUoA3H.mjs';
|
|
3
3
|
import { BaseExecutorOptions } from '@storm-software/workspace-tools';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
interface BaseTokenizerOptions {
|
|
7
7
|
workspaceRoot?: string;
|
|
8
|
-
config?:
|
|
8
|
+
config?: StormWorkspaceConfig;
|
|
9
9
|
}
|
|
10
10
|
interface ProjectTokenizerOptions extends BaseTokenizerOptions {
|
|
11
11
|
projectRoot?: string;
|