@storm-software/pulumi-tools 0.7.40 → 0.7.41
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-BXLCN3BG.mjs → chunk-26S6TAKJ.mjs} +1 -1
- package/dist/{chunk-HPJ6ZKU2.mjs → chunk-2KDIKPBS.mjs} +1 -1
- package/dist/{chunk-4HYQNBDU.mjs → chunk-2UCO46LO.mjs} +81 -60
- package/dist/{chunk-7JEKW6KY.js → chunk-3LQFRKIU.js} +108 -87
- package/dist/{chunk-ADEKKRTN.mjs → chunk-3UGVTIGP.mjs} +1 -1
- package/dist/{chunk-B4VAZ4GA.js → chunk-3XXJV3DH.js} +2 -2
- package/dist/{chunk-GZTNBOQX.mjs → chunk-7AWVCCR4.mjs} +1 -1
- package/dist/{chunk-YPL7SPOE.js → chunk-APIJLG5M.js} +2 -2
- package/dist/{chunk-C7OPIIWO.js → chunk-FW7MVDHP.js} +5 -5
- package/dist/{chunk-MGZUT45D.js → chunk-OPMXGFNT.js} +2 -2
- package/dist/{chunk-E6ZR7YGL.mjs → chunk-Q5MCQX6H.mjs} +1 -1
- package/dist/{chunk-P52D75ZB.mjs → chunk-TMIIM3X7.mjs} +1 -1
- package/dist/{chunk-OP5YAHP3.js → chunk-X5ZCAH2C.js} +2 -2
- package/dist/{chunk-7IJFV2U7.js → chunk-XKYTUIZK.js} +3 -3
- package/dist/{chunk-U34F6LC2.mjs → chunk-Z2ODCGRK.mjs} +1 -1
- package/dist/{chunk-JN3MLPGY.js → chunk-ZU6W5KIM.js} +2 -2
- package/dist/executors.js +7 -7
- package/dist/executors.mjs +7 -7
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +2 -2
- package/dist/index.js +9 -9
- package/dist/index.mjs +8 -8
- package/dist/src/base/base-executor.js +3 -3
- package/dist/src/base/base-executor.mjs +2 -2
- package/dist/src/base/index.js +3 -3
- package/dist/src/base/index.mjs +2 -2
- package/dist/src/executors/config/executor.js +4 -4
- package/dist/src/executors/config/executor.mjs +3 -3
- package/dist/src/executors/import/executor.js +4 -4
- package/dist/src/executors/import/executor.mjs +3 -3
- package/dist/src/executors/preview/executor.js +4 -4
- package/dist/src/executors/preview/executor.mjs +3 -3
- package/dist/src/executors/refresh/executor.js +4 -4
- package/dist/src/executors/refresh/executor.mjs +3 -3
- package/dist/src/executors/up/executor.js +4 -4
- package/dist/src/executors/up/executor.mjs +3 -3
- package/dist/src/generators/init/generator.js +3 -3
- package/dist/src/generators/init/generator.mjs +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pulumi Tools
|
|
4
4
|
|
|
5
|
+
## [0.7.41](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.7.41) (2025-04-07)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([1ac4c6ad4](https://github.com/storm-software/storm-ops/commit/1ac4c6ad4))
|
|
11
|
+
|
|
5
12
|
## [0.7.40](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.7.40) (2025-04-04)
|
|
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 -->
|
|
@@ -2006,57 +2006,6 @@ var addWorkspacePackageJsonFields = /* @__PURE__ */ __name(async (config, projec
|
|
|
2006
2006
|
|
|
2007
2007
|
// ../build-tools/src/utilities/get-entry-points.ts
|
|
2008
2008
|
import { glob as glob2 } from "glob";
|
|
2009
|
-
var getEntryPoints = /* @__PURE__ */ __name(async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
|
|
2010
|
-
const workspaceRoot3 = config.workspaceRoot || findWorkspaceRoot();
|
|
2011
|
-
const entryPoints = [];
|
|
2012
|
-
if (entry) {
|
|
2013
|
-
if (typeof entry === "string") {
|
|
2014
|
-
entryPoints.push(entry);
|
|
2015
|
-
} else if (Array.isArray(entry)) {
|
|
2016
|
-
entryPoints.push(...entry);
|
|
2017
|
-
} else {
|
|
2018
|
-
entryPoints.push(...Object.values(entry));
|
|
2019
|
-
}
|
|
2020
|
-
}
|
|
2021
|
-
if (emitOnAll) {
|
|
2022
|
-
entryPoints.push(joinPaths(workspaceRoot3, sourceRoot || projectRoot, "**/*.{ts,tsx}"));
|
|
2023
|
-
}
|
|
2024
|
-
const results = await Promise.all(entryPoints.map(async (entryPoint) => {
|
|
2025
|
-
const paths = [];
|
|
2026
|
-
if (entryPoint.includes("*")) {
|
|
2027
|
-
const files = await glob2(entryPoint, {
|
|
2028
|
-
withFileTypes: true,
|
|
2029
|
-
ignore: [
|
|
2030
|
-
"**/node_modules/**"
|
|
2031
|
-
]
|
|
2032
|
-
});
|
|
2033
|
-
paths.push(...files.reduce((ret, filePath) => {
|
|
2034
|
-
const result = correctPaths(joinPaths(filePath.path, filePath.name).replaceAll(correctPaths(workspaceRoot3), "").replaceAll(correctPaths(projectRoot), ""));
|
|
2035
|
-
if (result) {
|
|
2036
|
-
writeDebug(`Trying to add entry point ${result} at "${joinPaths(filePath.path, filePath.name)}"`, config);
|
|
2037
|
-
if (!paths.includes(result)) {
|
|
2038
|
-
paths.push(result);
|
|
2039
|
-
}
|
|
2040
|
-
}
|
|
2041
|
-
return ret;
|
|
2042
|
-
}, []));
|
|
2043
|
-
} else {
|
|
2044
|
-
writeDebug(`Trying to add entry point ${entryPoint}"`, config);
|
|
2045
|
-
if (!paths.includes(entryPoint)) {
|
|
2046
|
-
paths.push(entryPoint);
|
|
2047
|
-
}
|
|
2048
|
-
}
|
|
2049
|
-
return paths;
|
|
2050
|
-
}));
|
|
2051
|
-
return results.filter(Boolean).reduce((ret, result) => {
|
|
2052
|
-
result.forEach((res) => {
|
|
2053
|
-
if (res && !ret.includes(res)) {
|
|
2054
|
-
ret.push(res);
|
|
2055
|
-
}
|
|
2056
|
-
});
|
|
2057
|
-
return ret;
|
|
2058
|
-
}, []);
|
|
2059
|
-
}, "getEntryPoints");
|
|
2060
2009
|
|
|
2061
2010
|
// ../build-tools/src/utilities/get-env.ts
|
|
2062
2011
|
var getEnv = /* @__PURE__ */ __name((builder, options) => {
|
|
@@ -2480,10 +2429,10 @@ var tscPlugin = /* @__PURE__ */ __name((options, resolvedOptions) => ({
|
|
|
2480
2429
|
if (process.env.WATCH !== "true" && process.env.DEV !== "true") {
|
|
2481
2430
|
await run(resolvedOptions.config, `pnpm exec tsc --project ${resolvedOptions.tsconfig}`, resolvedOptions.config.workspaceRoot);
|
|
2482
2431
|
}
|
|
2483
|
-
if (resolvedOptions.bundle && resolvedOptions.entryPoints && resolvedOptions.entryPoints.length > 0 && resolvedOptions.entryPoints[0] && resolvedOptions.entryPoints[0].endsWith(".ts")) {
|
|
2432
|
+
if (resolvedOptions.bundle && resolvedOptions.entryPoints && resolvedOptions.entryPoints.length > 0 && resolvedOptions.entryPoints[0]?.in && resolvedOptions.entryPoints[0].in.endsWith(".ts")) {
|
|
2484
2433
|
const sourceRoot = resolvedOptions.sourceRoot.replaceAll(resolvedOptions.projectRoot, "");
|
|
2485
2434
|
const typeOutDir = resolvedOptions.outdir;
|
|
2486
|
-
const entryPoint = resolvedOptions.entryPoints[0].replace(sourceRoot, "").replace(/\.ts$/, "");
|
|
2435
|
+
const entryPoint = resolvedOptions.entryPoints[0].in.replace(sourceRoot, "").replace(/\.ts$/, "");
|
|
2487
2436
|
const bundlePath = joinPaths(resolvedOptions.outdir, entryPoint);
|
|
2488
2437
|
let dtsPath;
|
|
2489
2438
|
if (existsSync5(joinPaths(resolvedOptions.config.workspaceRoot, typeOutDir, `${entryPoint}.d.ts`))) {
|
|
@@ -2674,6 +2623,84 @@ var shebangRenderer = {
|
|
|
2674
2623
|
}
|
|
2675
2624
|
};
|
|
2676
2625
|
|
|
2626
|
+
// ../esbuild/src/utilities/get-entry-points.ts
|
|
2627
|
+
import { glob as glob3 } from "glob";
|
|
2628
|
+
var getEntryPoints = /* @__PURE__ */ __name(async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
|
|
2629
|
+
const workspaceRoot3 = config.workspaceRoot || findWorkspaceRoot();
|
|
2630
|
+
const entryPoints = [];
|
|
2631
|
+
if (entry) {
|
|
2632
|
+
if (typeof entry === "string") {
|
|
2633
|
+
entryPoints.push({
|
|
2634
|
+
in: entry,
|
|
2635
|
+
out: entry
|
|
2636
|
+
});
|
|
2637
|
+
} else if (Array.isArray(entry)) {
|
|
2638
|
+
entryPoints.push(...entry.map((entry2) => ({
|
|
2639
|
+
in: entry2,
|
|
2640
|
+
out: entry2
|
|
2641
|
+
})));
|
|
2642
|
+
} else {
|
|
2643
|
+
entryPoints.push(...Object.entries(entry).map(([key, value]) => {
|
|
2644
|
+
if (typeof value === "string") {
|
|
2645
|
+
return {
|
|
2646
|
+
in: key,
|
|
2647
|
+
out: value
|
|
2648
|
+
};
|
|
2649
|
+
} else {
|
|
2650
|
+
return {
|
|
2651
|
+
in: key,
|
|
2652
|
+
out: key
|
|
2653
|
+
};
|
|
2654
|
+
}
|
|
2655
|
+
}));
|
|
2656
|
+
}
|
|
2657
|
+
}
|
|
2658
|
+
if (emitOnAll) {
|
|
2659
|
+
entryPoints.push({
|
|
2660
|
+
in: joinPaths(workspaceRoot3, sourceRoot || projectRoot, "**/*.{ts,tsx}"),
|
|
2661
|
+
out: joinPaths(workspaceRoot3, sourceRoot || projectRoot, "**/*.{ts,tsx}")
|
|
2662
|
+
});
|
|
2663
|
+
}
|
|
2664
|
+
const results = await Promise.all(entryPoints.map(async (entryPoint) => {
|
|
2665
|
+
const paths = [];
|
|
2666
|
+
if (entryPoint.in.includes("*")) {
|
|
2667
|
+
const files = await glob3(entryPoint.in, {
|
|
2668
|
+
withFileTypes: true,
|
|
2669
|
+
ignore: [
|
|
2670
|
+
"**/node_modules/**"
|
|
2671
|
+
]
|
|
2672
|
+
});
|
|
2673
|
+
paths.push(...files.reduce((ret, filePath) => {
|
|
2674
|
+
const result = correctPaths(joinPaths(filePath.path, filePath.name).replaceAll(correctPaths(workspaceRoot3), "").replaceAll(correctPaths(projectRoot), ""));
|
|
2675
|
+
if (result) {
|
|
2676
|
+
writeDebug(`Trying to add entry point ${result} at "${joinPaths(filePath.path, filePath.name)}"`, config);
|
|
2677
|
+
if (!paths.some((p) => p.in === result)) {
|
|
2678
|
+
paths.push({
|
|
2679
|
+
in: result,
|
|
2680
|
+
out: entryPoint.out.replace(entryPoint.in, result)
|
|
2681
|
+
});
|
|
2682
|
+
}
|
|
2683
|
+
}
|
|
2684
|
+
return ret;
|
|
2685
|
+
}, []));
|
|
2686
|
+
} else {
|
|
2687
|
+
writeDebug(`Trying to add entry point ${entryPoint}"`, config);
|
|
2688
|
+
if (!paths.some((p) => p.in === entryPoint.in)) {
|
|
2689
|
+
paths.push(entryPoint);
|
|
2690
|
+
}
|
|
2691
|
+
}
|
|
2692
|
+
return paths;
|
|
2693
|
+
}));
|
|
2694
|
+
return results.filter(Boolean).reduce((ret, result) => {
|
|
2695
|
+
result.forEach((res) => {
|
|
2696
|
+
if (res && !ret.some((p) => p.in === res.in)) {
|
|
2697
|
+
ret.push(res);
|
|
2698
|
+
}
|
|
2699
|
+
});
|
|
2700
|
+
return ret;
|
|
2701
|
+
}, []);
|
|
2702
|
+
}, "getEntryPoints");
|
|
2703
|
+
|
|
2677
2704
|
// ../esbuild/src/utilities/helpers.ts
|
|
2678
2705
|
function handleSync(fn) {
|
|
2679
2706
|
try {
|
|
@@ -2868,19 +2895,13 @@ async function generatePackageJson(context2) {
|
|
|
2868
2895
|
packageJson.exports ??= {};
|
|
2869
2896
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
2870
2897
|
packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
|
|
2871
|
-
|
|
2898
|
+
const entryPoints = [
|
|
2872
2899
|
{
|
|
2873
2900
|
in: "./src/index.ts",
|
|
2874
2901
|
out: "./src/index.ts"
|
|
2875
2902
|
}
|
|
2876
2903
|
];
|
|
2877
2904
|
if (context2.options.entryPoints) {
|
|
2878
|
-
if (Array.isArray(context2.options.entryPoints)) {
|
|
2879
|
-
entryPoints = context2.options.entryPoints.map((entryPoint) => typeof entryPoint === "string" ? {
|
|
2880
|
-
in: entryPoint,
|
|
2881
|
-
out: correctPaths(entryPoint.replaceAll(correctPaths(context2.options.config.workspaceRoot), "").replaceAll(correctPaths(context2.options.projectRoot), ""))
|
|
2882
|
-
} : entryPoint);
|
|
2883
|
-
}
|
|
2884
2905
|
for (const entryPoint of entryPoints) {
|
|
2885
2906
|
const split = entryPoint.out.split(".");
|
|
2886
2907
|
split.pop();
|
|
@@ -2005,57 +2005,6 @@ var addWorkspacePackageJsonFields = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call
|
|
|
2005
2005
|
|
|
2006
2006
|
// ../build-tools/src/utilities/get-entry-points.ts
|
|
2007
2007
|
|
|
2008
|
-
var getEntryPoints = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
|
|
2009
|
-
const workspaceRoot3 = config.workspaceRoot || findWorkspaceRoot();
|
|
2010
|
-
const entryPoints = [];
|
|
2011
|
-
if (entry) {
|
|
2012
|
-
if (typeof entry === "string") {
|
|
2013
|
-
entryPoints.push(entry);
|
|
2014
|
-
} else if (Array.isArray(entry)) {
|
|
2015
|
-
entryPoints.push(...entry);
|
|
2016
|
-
} else {
|
|
2017
|
-
entryPoints.push(...Object.values(entry));
|
|
2018
|
-
}
|
|
2019
|
-
}
|
|
2020
|
-
if (emitOnAll) {
|
|
2021
|
-
entryPoints.push(joinPaths(workspaceRoot3, sourceRoot || projectRoot, "**/*.{ts,tsx}"));
|
|
2022
|
-
}
|
|
2023
|
-
const results = await Promise.all(entryPoints.map(async (entryPoint) => {
|
|
2024
|
-
const paths = [];
|
|
2025
|
-
if (entryPoint.includes("*")) {
|
|
2026
|
-
const files = await _glob.glob.call(void 0, entryPoint, {
|
|
2027
|
-
withFileTypes: true,
|
|
2028
|
-
ignore: [
|
|
2029
|
-
"**/node_modules/**"
|
|
2030
|
-
]
|
|
2031
|
-
});
|
|
2032
|
-
paths.push(...files.reduce((ret, filePath) => {
|
|
2033
|
-
const result = correctPaths(joinPaths(filePath.path, filePath.name).replaceAll(correctPaths(workspaceRoot3), "").replaceAll(correctPaths(projectRoot), ""));
|
|
2034
|
-
if (result) {
|
|
2035
|
-
writeDebug(`Trying to add entry point ${result} at "${joinPaths(filePath.path, filePath.name)}"`, config);
|
|
2036
|
-
if (!paths.includes(result)) {
|
|
2037
|
-
paths.push(result);
|
|
2038
|
-
}
|
|
2039
|
-
}
|
|
2040
|
-
return ret;
|
|
2041
|
-
}, []));
|
|
2042
|
-
} else {
|
|
2043
|
-
writeDebug(`Trying to add entry point ${entryPoint}"`, config);
|
|
2044
|
-
if (!paths.includes(entryPoint)) {
|
|
2045
|
-
paths.push(entryPoint);
|
|
2046
|
-
}
|
|
2047
|
-
}
|
|
2048
|
-
return paths;
|
|
2049
|
-
}));
|
|
2050
|
-
return results.filter(Boolean).reduce((ret, result) => {
|
|
2051
|
-
result.forEach((res) => {
|
|
2052
|
-
if (res && !ret.includes(res)) {
|
|
2053
|
-
ret.push(res);
|
|
2054
|
-
}
|
|
2055
|
-
});
|
|
2056
|
-
return ret;
|
|
2057
|
-
}, []);
|
|
2058
|
-
}, "getEntryPoints");
|
|
2059
2008
|
|
|
2060
2009
|
// ../build-tools/src/utilities/get-env.ts
|
|
2061
2010
|
var getEnv = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (builder, options) => {
|
|
@@ -2479,10 +2428,10 @@ var tscPlugin = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (options, r
|
|
|
2479
2428
|
if (process.env.WATCH !== "true" && process.env.DEV !== "true") {
|
|
2480
2429
|
await run(resolvedOptions.config, `pnpm exec tsc --project ${resolvedOptions.tsconfig}`, resolvedOptions.config.workspaceRoot);
|
|
2481
2430
|
}
|
|
2482
|
-
if (resolvedOptions.bundle && resolvedOptions.entryPoints && resolvedOptions.entryPoints.length > 0 && resolvedOptions.entryPoints[0] && resolvedOptions.entryPoints[0].endsWith(".ts")) {
|
|
2431
|
+
if (resolvedOptions.bundle && resolvedOptions.entryPoints && resolvedOptions.entryPoints.length > 0 && _optionalChain([resolvedOptions, 'access', _137 => _137.entryPoints, 'access', _138 => _138[0], 'optionalAccess', _139 => _139.in]) && resolvedOptions.entryPoints[0].in.endsWith(".ts")) {
|
|
2483
2432
|
const sourceRoot = resolvedOptions.sourceRoot.replaceAll(resolvedOptions.projectRoot, "");
|
|
2484
2433
|
const typeOutDir = resolvedOptions.outdir;
|
|
2485
|
-
const entryPoint = resolvedOptions.entryPoints[0].replace(sourceRoot, "").replace(/\.ts$/, "");
|
|
2434
|
+
const entryPoint = resolvedOptions.entryPoints[0].in.replace(sourceRoot, "").replace(/\.ts$/, "");
|
|
2486
2435
|
const bundlePath = joinPaths(resolvedOptions.outdir, entryPoint);
|
|
2487
2436
|
let dtsPath;
|
|
2488
2437
|
if (_fs.existsSync.call(void 0, joinPaths(resolvedOptions.config.workspaceRoot, typeOutDir, `${entryPoint}.d.ts`))) {
|
|
@@ -2505,7 +2454,7 @@ var tscPlugin = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (options, r
|
|
|
2505
2454
|
function getTypeDependencyPackageName(npmPackage) {
|
|
2506
2455
|
if (npmPackage.startsWith("@")) {
|
|
2507
2456
|
const [scope, name] = npmPackage.split("/");
|
|
2508
|
-
return `@types/${_optionalChain([scope, 'optionalAccess',
|
|
2457
|
+
return `@types/${_optionalChain([scope, 'optionalAccess', _140 => _140.slice, 'call', _141 => _141(1)])}__${name}`;
|
|
2509
2458
|
}
|
|
2510
2459
|
return `@types/${npmPackage}`;
|
|
2511
2460
|
}
|
|
@@ -2673,6 +2622,84 @@ var shebangRenderer = {
|
|
|
2673
2622
|
}
|
|
2674
2623
|
};
|
|
2675
2624
|
|
|
2625
|
+
// ../esbuild/src/utilities/get-entry-points.ts
|
|
2626
|
+
|
|
2627
|
+
var getEntryPoints = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
|
|
2628
|
+
const workspaceRoot3 = config.workspaceRoot || findWorkspaceRoot();
|
|
2629
|
+
const entryPoints = [];
|
|
2630
|
+
if (entry) {
|
|
2631
|
+
if (typeof entry === "string") {
|
|
2632
|
+
entryPoints.push({
|
|
2633
|
+
in: entry,
|
|
2634
|
+
out: entry
|
|
2635
|
+
});
|
|
2636
|
+
} else if (Array.isArray(entry)) {
|
|
2637
|
+
entryPoints.push(...entry.map((entry2) => ({
|
|
2638
|
+
in: entry2,
|
|
2639
|
+
out: entry2
|
|
2640
|
+
})));
|
|
2641
|
+
} else {
|
|
2642
|
+
entryPoints.push(...Object.entries(entry).map(([key, value]) => {
|
|
2643
|
+
if (typeof value === "string") {
|
|
2644
|
+
return {
|
|
2645
|
+
in: key,
|
|
2646
|
+
out: value
|
|
2647
|
+
};
|
|
2648
|
+
} else {
|
|
2649
|
+
return {
|
|
2650
|
+
in: key,
|
|
2651
|
+
out: key
|
|
2652
|
+
};
|
|
2653
|
+
}
|
|
2654
|
+
}));
|
|
2655
|
+
}
|
|
2656
|
+
}
|
|
2657
|
+
if (emitOnAll) {
|
|
2658
|
+
entryPoints.push({
|
|
2659
|
+
in: joinPaths(workspaceRoot3, sourceRoot || projectRoot, "**/*.{ts,tsx}"),
|
|
2660
|
+
out: joinPaths(workspaceRoot3, sourceRoot || projectRoot, "**/*.{ts,tsx}")
|
|
2661
|
+
});
|
|
2662
|
+
}
|
|
2663
|
+
const results = await Promise.all(entryPoints.map(async (entryPoint) => {
|
|
2664
|
+
const paths = [];
|
|
2665
|
+
if (entryPoint.in.includes("*")) {
|
|
2666
|
+
const files = await _glob.glob.call(void 0, entryPoint.in, {
|
|
2667
|
+
withFileTypes: true,
|
|
2668
|
+
ignore: [
|
|
2669
|
+
"**/node_modules/**"
|
|
2670
|
+
]
|
|
2671
|
+
});
|
|
2672
|
+
paths.push(...files.reduce((ret, filePath) => {
|
|
2673
|
+
const result = correctPaths(joinPaths(filePath.path, filePath.name).replaceAll(correctPaths(workspaceRoot3), "").replaceAll(correctPaths(projectRoot), ""));
|
|
2674
|
+
if (result) {
|
|
2675
|
+
writeDebug(`Trying to add entry point ${result} at "${joinPaths(filePath.path, filePath.name)}"`, config);
|
|
2676
|
+
if (!paths.some((p) => p.in === result)) {
|
|
2677
|
+
paths.push({
|
|
2678
|
+
in: result,
|
|
2679
|
+
out: entryPoint.out.replace(entryPoint.in, result)
|
|
2680
|
+
});
|
|
2681
|
+
}
|
|
2682
|
+
}
|
|
2683
|
+
return ret;
|
|
2684
|
+
}, []));
|
|
2685
|
+
} else {
|
|
2686
|
+
writeDebug(`Trying to add entry point ${entryPoint}"`, config);
|
|
2687
|
+
if (!paths.some((p) => p.in === entryPoint.in)) {
|
|
2688
|
+
paths.push(entryPoint);
|
|
2689
|
+
}
|
|
2690
|
+
}
|
|
2691
|
+
return paths;
|
|
2692
|
+
}));
|
|
2693
|
+
return results.filter(Boolean).reduce((ret, result) => {
|
|
2694
|
+
result.forEach((res) => {
|
|
2695
|
+
if (res && !ret.some((p) => p.in === res.in)) {
|
|
2696
|
+
ret.push(res);
|
|
2697
|
+
}
|
|
2698
|
+
});
|
|
2699
|
+
return ret;
|
|
2700
|
+
}, []);
|
|
2701
|
+
}, "getEntryPoints");
|
|
2702
|
+
|
|
2676
2703
|
// ../esbuild/src/utilities/helpers.ts
|
|
2677
2704
|
function handleSync(fn) {
|
|
2678
2705
|
try {
|
|
@@ -2721,7 +2748,7 @@ function pipeSync(fn, ...fns) {
|
|
|
2721
2748
|
return (...args) => {
|
|
2722
2749
|
let result = fn(...args);
|
|
2723
2750
|
for (let i = 0; result !== skip && i < fns.length; ++i) {
|
|
2724
|
-
result = _optionalChain([fns, 'access',
|
|
2751
|
+
result = _optionalChain([fns, 'access', _142 => _142[i], 'optionalCall', _143 => _143(result)]);
|
|
2725
2752
|
}
|
|
2726
2753
|
return result;
|
|
2727
2754
|
};
|
|
@@ -2731,7 +2758,7 @@ function pipeAsync(fn, ...fns) {
|
|
|
2731
2758
|
return async (...args) => {
|
|
2732
2759
|
let result = await fn(...args);
|
|
2733
2760
|
for (let i = 0; result !== skip && i < fns.length; ++i) {
|
|
2734
|
-
result = await _optionalChain([fns, 'access',
|
|
2761
|
+
result = await _optionalChain([fns, 'access', _144 => _144[i], 'optionalCall', _145 => _145(result)]);
|
|
2735
2762
|
}
|
|
2736
2763
|
return result;
|
|
2737
2764
|
};
|
|
@@ -2761,7 +2788,7 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
2761
2788
|
const projectJson = JSON.parse(projectJsonFile);
|
|
2762
2789
|
const projectName = projectJson.name;
|
|
2763
2790
|
const projectConfigurations = _devkit.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
|
|
2764
|
-
if (!_optionalChain([projectConfigurations, 'optionalAccess',
|
|
2791
|
+
if (!_optionalChain([projectConfigurations, 'optionalAccess', _146 => _146.projects, 'optionalAccess', _147 => _147[projectName]])) {
|
|
2765
2792
|
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.");
|
|
2766
2793
|
}
|
|
2767
2794
|
const options = _defu2.default.call(void 0, userOptions, DEFAULT_BUILD_OPTIONS);
|
|
@@ -2867,19 +2894,13 @@ async function generatePackageJson(context2) {
|
|
|
2867
2894
|
packageJson.exports ??= {};
|
|
2868
2895
|
packageJson.exports["./package.json"] ??= "./package.json";
|
|
2869
2896
|
packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
|
|
2870
|
-
|
|
2897
|
+
const entryPoints = [
|
|
2871
2898
|
{
|
|
2872
2899
|
in: "./src/index.ts",
|
|
2873
2900
|
out: "./src/index.ts"
|
|
2874
2901
|
}
|
|
2875
2902
|
];
|
|
2876
2903
|
if (context2.options.entryPoints) {
|
|
2877
|
-
if (Array.isArray(context2.options.entryPoints)) {
|
|
2878
|
-
entryPoints = context2.options.entryPoints.map((entryPoint) => typeof entryPoint === "string" ? {
|
|
2879
|
-
in: entryPoint,
|
|
2880
|
-
out: correctPaths(entryPoint.replaceAll(correctPaths(context2.options.config.workspaceRoot), "").replaceAll(correctPaths(context2.options.projectRoot), ""))
|
|
2881
|
-
} : entryPoint);
|
|
2882
|
-
}
|
|
2883
2904
|
for (const entryPoint of entryPoints) {
|
|
2884
2905
|
const split = entryPoint.out.split(".");
|
|
2885
2906
|
split.pop();
|
|
@@ -2975,7 +2996,7 @@ ${formatLogMessage({
|
|
|
2975
2996
|
}
|
|
2976
2997
|
_chunk3GQAWCBQjs.__name.call(void 0, executeEsBuild, "executeEsBuild");
|
|
2977
2998
|
async function copyBuildAssets(context2) {
|
|
2978
|
-
if (_optionalChain([context2, 'access',
|
|
2999
|
+
if (_optionalChain([context2, 'access', _148 => _148.result, 'optionalAccess', _149 => _149.errors, 'access', _150 => _150.length]) === 0) {
|
|
2979
3000
|
writeDebug(` \u{1F4CB} Copying asset files to output directory: ${context2.options.outdir}`, context2.options.config);
|
|
2980
3001
|
const stopwatch = getStopwatch(`${context2.options.name} asset copy`);
|
|
2981
3002
|
await copyAssets(context2.options.config, _nullishCoalesce(context2.options.assets, () => ( [])), context2.options.outdir, context2.options.projectRoot, context2.options.sourceRoot, true, false);
|
|
@@ -2985,7 +3006,7 @@ async function copyBuildAssets(context2) {
|
|
|
2985
3006
|
}
|
|
2986
3007
|
_chunk3GQAWCBQjs.__name.call(void 0, copyBuildAssets, "copyBuildAssets");
|
|
2987
3008
|
async function reportResults(context2) {
|
|
2988
|
-
if (_optionalChain([context2, 'access',
|
|
3009
|
+
if (_optionalChain([context2, 'access', _151 => _151.result, 'optionalAccess', _152 => _152.errors, 'access', _153 => _153.length]) === 0) {
|
|
2989
3010
|
if (context2.result.warnings.length > 0) {
|
|
2990
3011
|
writeWarning(` \u{1F6A7} The following warnings occurred during the build: ${context2.result.warnings.map((warning) => warning.text).join("\n")}`, context2.options.config);
|
|
2991
3012
|
}
|
|
@@ -3086,14 +3107,14 @@ var watch = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (context2, opti
|
|
|
3086
3107
|
// ../workspace-tools/src/executors/esbuild/executor.ts
|
|
3087
3108
|
async function esbuildExecutorFn(options, context2, config) {
|
|
3088
3109
|
writeInfo("\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
|
|
3089
|
-
if (!_optionalChain([context2, 'access',
|
|
3110
|
+
if (!_optionalChain([context2, 'access', _154 => _154.projectsConfigurations, 'optionalAccess', _155 => _155.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName] || !_optionalChain([context2, 'access', _156 => _156.projectsConfigurations, 'access', _157 => _157.projects, 'access', _158 => _158[context2.projectName], 'optionalAccess', _159 => _159.root])) {
|
|
3090
3111
|
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
|
|
3091
3112
|
}
|
|
3092
3113
|
await build3({
|
|
3093
3114
|
...options,
|
|
3094
|
-
projectRoot: _optionalChain([context2, 'access',
|
|
3115
|
+
projectRoot: _optionalChain([context2, 'access', _160 => _160.projectsConfigurations, 'access', _161 => _161.projects, 'optionalAccess', _162 => _162[context2.projectName], 'access', _163 => _163.root]),
|
|
3095
3116
|
projectName: context2.projectName,
|
|
3096
|
-
sourceRoot: _optionalChain([context2, 'access',
|
|
3117
|
+
sourceRoot: _optionalChain([context2, 'access', _164 => _164.projectsConfigurations, 'access', _165 => _165.projects, 'optionalAccess', _166 => _166[context2.projectName], 'optionalAccess', _167 => _167.sourceRoot]),
|
|
3097
3118
|
format: options.format,
|
|
3098
3119
|
platform: options.format
|
|
3099
3120
|
});
|
|
@@ -3136,7 +3157,7 @@ var _esbuildwhy = require('@size-limit/esbuild-why'); var _esbuildwhy2 = _intero
|
|
|
3136
3157
|
var _file = require('@size-limit/file'); var _file2 = _interopRequireDefault(_file);
|
|
3137
3158
|
var _sizelimit = require('size-limit'); var _sizelimit2 = _interopRequireDefault(_sizelimit);
|
|
3138
3159
|
async function sizeLimitExecutorFn(options, context2, config) {
|
|
3139
|
-
if (!_optionalChain([context2, 'optionalAccess',
|
|
3160
|
+
if (!_optionalChain([context2, 'optionalAccess', _168 => _168.projectName]) || !_optionalChain([context2, 'access', _169 => _169.projectsConfigurations, 'optionalAccess', _170 => _170.projects]) || !context2.projectsConfigurations.projects[context2.projectName]) {
|
|
3140
3161
|
throw new Error("The Size-Limit process failed because the context is not valid. Please run this command from a workspace.");
|
|
3141
3162
|
}
|
|
3142
3163
|
writeInfo(`\u{1F4CF} Running Size-Limit on ${context2.projectName}`, config);
|
|
@@ -3145,7 +3166,7 @@ async function sizeLimitExecutorFn(options, context2, config) {
|
|
|
3145
3166
|
_esbuild3.default,
|
|
3146
3167
|
_esbuildwhy2.default
|
|
3147
3168
|
], {
|
|
3148
|
-
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context2, 'access',
|
|
3169
|
+
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context2, 'access', _171 => _171.projectsConfigurations, 'access', _172 => _172.projects, 'access', _173 => _173[context2.projectName], 'optionalAccess', _174 => _174.sourceRoot]))), () => ( _devkit.joinPathFragments.call(void 0, _nullishCoalesce(_optionalChain([context2, 'access', _175 => _175.projectsConfigurations, 'access', _176 => _176.projects, 'access', _177 => _177[context2.projectName], 'optionalAccess', _178 => _178.root]), () => ( "./")), "src")))
|
|
3149
3170
|
}).then((result) => {
|
|
3150
3171
|
writeInfo(`\u{1F4CF} ${context2.projectName} Size-Limit result: ${JSON.stringify(result)}`, config);
|
|
3151
3172
|
});
|
|
@@ -3204,7 +3225,7 @@ var executor_default8 = withRunExecutor("Typia runtime validation generator", ty
|
|
|
3204
3225
|
var _jiti = require('jiti');
|
|
3205
3226
|
async function unbuildExecutorFn(options, context2, config) {
|
|
3206
3227
|
writeInfo("\u{1F4E6} Running Storm Unbuild executor on the workspace", config);
|
|
3207
|
-
if (!_optionalChain([context2, 'access',
|
|
3228
|
+
if (!_optionalChain([context2, 'access', _179 => _179.projectsConfigurations, 'optionalAccess', _180 => _180.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName]) {
|
|
3208
3229
|
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace root directory.");
|
|
3209
3230
|
}
|
|
3210
3231
|
if (!context2.projectsConfigurations.projects[context2.projectName].root) {
|
|
@@ -3415,15 +3436,15 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3415
3436
|
_devkit.addProjectConfiguration.call(void 0, tree, normalized.name, projectConfig);
|
|
3416
3437
|
let repository = {
|
|
3417
3438
|
type: "github",
|
|
3418
|
-
url: _optionalChain([config, 'optionalAccess',
|
|
3439
|
+
url: _optionalChain([config, 'optionalAccess', _181 => _181.repository]) || `https://github.com/${_optionalChain([config, 'optionalAccess', _182 => _182.organization]) || "storm-software"}/${_optionalChain([config, 'optionalAccess', _183 => _183.namespace]) || _optionalChain([config, 'optionalAccess', _184 => _184.name]) || "repository"}.git`
|
|
3419
3440
|
};
|
|
3420
3441
|
let description = options.description || "A package developed by Storm Software used to create modern, scalable web applications.";
|
|
3421
3442
|
if (tree.exists("package.json")) {
|
|
3422
3443
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
3423
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3444
|
+
if (_optionalChain([packageJson, 'optionalAccess', _185 => _185.repository])) {
|
|
3424
3445
|
repository = packageJson.repository;
|
|
3425
3446
|
}
|
|
3426
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3447
|
+
if (_optionalChain([packageJson, 'optionalAccess', _186 => _186.description])) {
|
|
3427
3448
|
description = packageJson.description;
|
|
3428
3449
|
}
|
|
3429
3450
|
}
|
|
@@ -3478,9 +3499,9 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3478
3499
|
_devkit.updateJson.call(void 0, tree, "package.json", (json) => ({
|
|
3479
3500
|
...json,
|
|
3480
3501
|
pnpm: {
|
|
3481
|
-
..._optionalChain([json, 'optionalAccess',
|
|
3502
|
+
..._optionalChain([json, 'optionalAccess', _187 => _187.pnpm]),
|
|
3482
3503
|
overrides: {
|
|
3483
|
-
..._optionalChain([json, 'optionalAccess',
|
|
3504
|
+
..._optionalChain([json, 'optionalAccess', _188 => _188.pnpm, 'optionalAccess', _189 => _189.overrides]),
|
|
3484
3505
|
[_nullishCoalesce(normalized.importPath, () => ( ""))]: "workspace:*"
|
|
3485
3506
|
}
|
|
3486
3507
|
}
|
|
@@ -3494,10 +3515,10 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3494
3515
|
]);
|
|
3495
3516
|
if (tree.exists("package.json")) {
|
|
3496
3517
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
3497
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3518
|
+
if (_optionalChain([packageJson, 'optionalAccess', _190 => _190.repository])) {
|
|
3498
3519
|
repository = packageJson.repository;
|
|
3499
3520
|
}
|
|
3500
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3521
|
+
if (_optionalChain([packageJson, 'optionalAccess', _191 => _191.description])) {
|
|
3501
3522
|
description = packageJson.description;
|
|
3502
3523
|
}
|
|
3503
3524
|
}
|
|
@@ -3545,24 +3566,24 @@ _chunk3GQAWCBQjs.__name.call(void 0, getOutputPath, "getOutputPath");
|
|
|
3545
3566
|
function createProjectTsConfigJson(tree, options) {
|
|
3546
3567
|
const tsconfig = {
|
|
3547
3568
|
extends: options.rootProject ? void 0 : _js.getRelativePathToRootTsConfig.call(void 0, tree, options.projectRoot),
|
|
3548
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3569
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _192 => _192.tsconfigOptions]), () => ( {})),
|
|
3549
3570
|
compilerOptions: {
|
|
3550
3571
|
...options.rootProject ? _js.tsConfigBaseOptions : {},
|
|
3551
3572
|
outDir: joinPaths(_devkit.offsetFromRoot.call(void 0, options.projectRoot), "dist/out-tsc"),
|
|
3552
3573
|
noEmit: true,
|
|
3553
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3574
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _193 => _193.tsconfigOptions, 'optionalAccess', _194 => _194.compilerOptions]), () => ( {}))
|
|
3554
3575
|
},
|
|
3555
3576
|
files: [
|
|
3556
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3577
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _195 => _195.tsconfigOptions, 'optionalAccess', _196 => _196.files]), () => ( []))
|
|
3557
3578
|
],
|
|
3558
3579
|
include: [
|
|
3559
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3580
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _197 => _197.tsconfigOptions, 'optionalAccess', _198 => _198.include]), () => ( [])),
|
|
3560
3581
|
"src/**/*.ts",
|
|
3561
3582
|
"src/**/*.js",
|
|
3562
3583
|
"bin/**/*"
|
|
3563
3584
|
],
|
|
3564
3585
|
exclude: [
|
|
3565
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3586
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _199 => _199.tsconfigOptions, 'optionalAccess', _200 => _200.exclude]), () => ( [])),
|
|
3566
3587
|
"jest.config.ts",
|
|
3567
3588
|
"src/**/*.spec.ts",
|
|
3568
3589
|
"src/**/*.test.ts"
|
|
@@ -3573,8 +3594,8 @@ function createProjectTsConfigJson(tree, options) {
|
|
|
3573
3594
|
_chunk3GQAWCBQjs.__name.call(void 0, createProjectTsConfigJson, "createProjectTsConfigJson");
|
|
3574
3595
|
async function normalizeOptions(tree, options, config) {
|
|
3575
3596
|
let importPath = options.importPath;
|
|
3576
|
-
if (!importPath && _optionalChain([config, 'optionalAccess',
|
|
3577
|
-
importPath = `@${_optionalChain([config, 'optionalAccess',
|
|
3597
|
+
if (!importPath && _optionalChain([config, 'optionalAccess', _201 => _201.namespace])) {
|
|
3598
|
+
importPath = `@${_optionalChain([config, 'optionalAccess', _202 => _202.namespace])}/${options.name}`;
|
|
3578
3599
|
}
|
|
3579
3600
|
if (options.publishable) {
|
|
3580
3601
|
if (!importPath) {
|
|
@@ -3706,7 +3727,7 @@ async function configSchemaGeneratorFn(tree, options, config) {
|
|
|
3706
3727
|
name: "StormWorkspaceConfiguration"
|
|
3707
3728
|
});
|
|
3708
3729
|
writeTrace(jsonSchema, config);
|
|
3709
|
-
const outputPath = options.outputFile.replaceAll("{workspaceRoot}", "").replaceAll(_nullishCoalesce(_optionalChain([config, 'optionalAccess',
|
|
3730
|
+
const outputPath = options.outputFile.replaceAll("{workspaceRoot}", "").replaceAll(_nullishCoalesce(_optionalChain([config, 'optionalAccess', _203 => _203.workspaceRoot]), () => ( findWorkspaceRoot())), _optionalChain([options, 'access', _204 => _204.outputFile, 'optionalAccess', _205 => _205.startsWith, 'call', _206 => _206("./")]) ? "" : "./");
|
|
3710
3731
|
writeTrace(`\u{1F4DD} Writing Storm Configuration JSON Schema to "${outputPath}"`, config);
|
|
3711
3732
|
_devkit.writeJson.call(void 0, tree, outputPath, jsonSchema, {
|
|
3712
3733
|
spaces: 2
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkXKYTUIZKjs = require('./chunk-XKYTUIZK.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/up/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkXKYTUIZKjs.withPulumiExecutor.call(void 0, "up", (options) => [
|
|
7
7
|
"--suppress-progress",
|
|
8
8
|
options.stack && `--stack=${options.stack}`,
|
|
9
9
|
options.skipPreview && "--skip-preview",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkXKYTUIZKjs = require('./chunk-XKYTUIZK.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/preview/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkXKYTUIZKjs.withPulumiExecutor.call(void 0, "preview", (options) => [
|
|
7
7
|
options.stack && `--stack=${options.stack}`,
|
|
8
8
|
options.expectNoChanges && "--expect-no-changes"
|
|
9
9
|
]);
|
|
@@ -5,7 +5,7 @@ var _chunkDBLK3NPEjs = require('./chunk-DBLK3NPE.js');
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunk3LQFRKIUjs = require('./chunk-3LQFRKIU.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
|
|
@@ -15,7 +15,7 @@ var _devkit = require('@nx/devkit');
|
|
|
15
15
|
var _fs = require('fs');
|
|
16
16
|
var _path = require('path');
|
|
17
17
|
async function initGeneratorFn(tree, options, config) {
|
|
18
|
-
const task =
|
|
18
|
+
const task = _chunk3LQFRKIUjs.initGenerator.call(void 0, tree, options);
|
|
19
19
|
_devkit.addProjectConfiguration.call(void 0, tree, options.name || "deployment", {
|
|
20
20
|
root: options.directory || "./deployment",
|
|
21
21
|
projectType: "application",
|
|
@@ -49,11 +49,11 @@ async function initGeneratorFn(tree, options, config) {
|
|
|
49
49
|
return task;
|
|
50
50
|
}
|
|
51
51
|
_chunk3GQAWCBQjs.__name.call(void 0, initGeneratorFn, "initGeneratorFn");
|
|
52
|
-
var generator_default =
|
|
52
|
+
var generator_default = _chunk3LQFRKIUjs.withRunGenerator.call(void 0, "Initialize Storm Pulumi workspace", initGeneratorFn);
|
|
53
53
|
function generateNewPulumiProject(tree, options, config) {
|
|
54
54
|
return () => {
|
|
55
55
|
const template = _chunkDBLK3NPEjs.getCloudTemplateName.call(void 0, options.provider);
|
|
56
|
-
|
|
56
|
+
_chunk3LQFRKIUjs.run.call(void 0, config, [
|
|
57
57
|
`pulumi new ${template}`,
|
|
58
58
|
`--name=${options.name || "deployment"}`,
|
|
59
59
|
`--dir=${options.directory || "./deployment"}`,
|
|
@@ -73,7 +73,7 @@ function loginToPulumi(tree, options, config) {
|
|
|
73
73
|
if (options.login.startsWith("file://")) {
|
|
74
74
|
options.login = `file://${tree.root}/${options.directory || "./deployment"}/${options.login.replace("file://", "")}`;
|
|
75
75
|
}
|
|
76
|
-
|
|
76
|
+
_chunk3LQFRKIUjs.run.call(void 0, config, [
|
|
77
77
|
"pulumi login",
|
|
78
78
|
options.login
|
|
79
79
|
].filter(Boolean).join(" "), _path.join.call(void 0, config.workspaceRoot, options.directory || "./deployment"), "inherit", {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkXKYTUIZKjs = require('./chunk-XKYTUIZK.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/import/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkXKYTUIZKjs.withPulumiExecutor.call(void 0, "import", (options) => [
|
|
7
7
|
options.target,
|
|
8
8
|
options.name,
|
|
9
9
|
options.id,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkXKYTUIZKjs = require('./chunk-XKYTUIZK.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/refresh/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkXKYTUIZKjs.withPulumiExecutor.call(void 0, "refresh", (options) => [
|
|
7
7
|
"--suppress-progress",
|
|
8
8
|
options.stack && `--stack=${options.stack}`,
|
|
9
9
|
options.skipPreview && "--skip-preview",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk3LQFRKIUjs = require('./chunk-3LQFRKIU.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
|
|
@@ -10,7 +10,7 @@ var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
|
|
|
10
10
|
var _path = require('path');
|
|
11
11
|
var _shelljs = require('shelljs');
|
|
12
12
|
var withPulumiExecutor = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (command, argsMapper, executorOptions = {}) => async (_options, context) => {
|
|
13
|
-
return
|
|
13
|
+
return _chunk3LQFRKIUjs.withRunExecutor.call(void 0, `Pulumi \`${command}\` Command Executor`, async (options, context2, config) => {
|
|
14
14
|
if (!_shelljs.which.call(void 0, "pulumi")) {
|
|
15
15
|
throw new Error("Pulumi is not installed. Please install it before running this executor.");
|
|
16
16
|
}
|
|
@@ -18,7 +18,7 @@ var withPulumiExecutor = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (c
|
|
|
18
18
|
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
|
|
19
19
|
}
|
|
20
20
|
const { sourceRoot } = context2.projectsConfigurations.projects[context2.projectName];
|
|
21
|
-
|
|
21
|
+
_chunk3LQFRKIUjs.run.call(void 0, config, [
|
|
22
22
|
"pulumi",
|
|
23
23
|
command,
|
|
24
24
|
...argsMapper(options)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkXKYTUIZKjs = require('./chunk-XKYTUIZK.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/config/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkXKYTUIZKjs.withPulumiExecutor.call(void 0, "config", (options) => [
|
|
7
7
|
options.action,
|
|
8
8
|
options.showSecrets && `--show-secrets`,
|
|
9
9
|
options.secret && `--secret`,
|
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-OPMXGFNT.js');
|
|
3
|
+
require('./chunk-APIJLG5M.js');
|
|
4
|
+
require('./chunk-X5ZCAH2C.js');
|
|
5
|
+
require('./chunk-3XXJV3DH.js');
|
|
6
|
+
require('./chunk-ZU6W5KIM.js');
|
|
7
|
+
require('./chunk-XKYTUIZK.js');
|
|
8
|
+
require('./chunk-3LQFRKIU.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-3UGVTIGP.mjs";
|
|
3
|
+
import "./chunk-Z2ODCGRK.mjs";
|
|
4
|
+
import "./chunk-2KDIKPBS.mjs";
|
|
5
|
+
import "./chunk-TMIIM3X7.mjs";
|
|
6
|
+
import "./chunk-Q5MCQX6H.mjs";
|
|
7
|
+
import "./chunk-26S6TAKJ.mjs";
|
|
8
|
+
import "./chunk-2UCO46LO.mjs";
|
|
9
9
|
import "./chunk-2BPV2XV2.mjs";
|
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 _chunkFW7MVDHPjs = require('./chunk-FW7MVDHP.js');
|
|
5
5
|
require('./chunk-DBLK3NPE.js');
|
|
6
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-3LQFRKIU.js');
|
|
7
7
|
require('./chunk-3GQAWCBQ.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.initGeneratorFn =
|
|
10
|
+
exports.initGeneratorFn = _chunkFW7MVDHPjs.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-7AWVCCR4.mjs";
|
|
5
5
|
import "./chunk-UF7ZCXHA.mjs";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-2UCO46LO.mjs";
|
|
7
7
|
import "./chunk-2BPV2XV2.mjs";
|
|
8
8
|
export {
|
|
9
9
|
initGeneratorFn
|
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-OPMXGFNT.js');
|
|
3
|
+
require('./chunk-APIJLG5M.js');
|
|
4
|
+
require('./chunk-X5ZCAH2C.js');
|
|
5
|
+
require('./chunk-3XXJV3DH.js');
|
|
6
6
|
require('./chunk-N2YKXZ5R.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkFW7MVDHPjs = require('./chunk-FW7MVDHP.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-ZU6W5KIM.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
19
|
-
require('./chunk-
|
|
18
|
+
var _chunkXKYTUIZKjs = require('./chunk-XKYTUIZK.js');
|
|
19
|
+
require('./chunk-3LQFRKIU.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 = _chunkFW7MVDHPjs.initGeneratorFn; exports.withPulumiExecutor = _chunkXKYTUIZKjs.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-3UGVTIGP.mjs";
|
|
3
|
+
import "./chunk-Z2ODCGRK.mjs";
|
|
4
|
+
import "./chunk-2KDIKPBS.mjs";
|
|
5
|
+
import "./chunk-TMIIM3X7.mjs";
|
|
6
6
|
import "./chunk-23KFTIT2.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGeneratorFn
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-7AWVCCR4.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-Q5MCQX6H.mjs";
|
|
16
16
|
import {
|
|
17
17
|
withPulumiExecutor
|
|
18
|
-
} from "./chunk-
|
|
19
|
-
import "./chunk-
|
|
18
|
+
} from "./chunk-26S6TAKJ.mjs";
|
|
19
|
+
import "./chunk-2UCO46LO.mjs";
|
|
20
20
|
import "./chunk-2BPV2XV2.mjs";
|
|
21
21
|
export {
|
|
22
22
|
Provider,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var _chunkXKYTUIZKjs = require('../../chunk-XKYTUIZK.js');
|
|
4
|
+
require('../../chunk-3LQFRKIU.js');
|
|
5
5
|
require('../../chunk-3GQAWCBQ.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.withPulumiExecutor =
|
|
8
|
+
exports.withPulumiExecutor = _chunkXKYTUIZKjs.withPulumiExecutor;
|
package/dist/src/base/index.js
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
var _chunkDBLK3NPEjs = require('../../chunk-DBLK3NPE.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
9
|
-
require('../../chunk-
|
|
8
|
+
var _chunkXKYTUIZKjs = require('../../chunk-XKYTUIZK.js');
|
|
9
|
+
require('../../chunk-3LQFRKIU.js');
|
|
10
10
|
require('../../chunk-3GQAWCBQ.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.Provider = _chunkDBLK3NPEjs.Provider; exports.getCloudTemplateName = _chunkDBLK3NPEjs.getCloudTemplateName; exports.withPulumiExecutor =
|
|
15
|
+
exports.Provider = _chunkDBLK3NPEjs.Provider; exports.getCloudTemplateName = _chunkDBLK3NPEjs.getCloudTemplateName; exports.withPulumiExecutor = _chunkXKYTUIZKjs.withPulumiExecutor;
|
package/dist/src/base/index.mjs
CHANGED
|
@@ -5,8 +5,8 @@ import {
|
|
|
5
5
|
} from "../../chunk-UF7ZCXHA.mjs";
|
|
6
6
|
import {
|
|
7
7
|
withPulumiExecutor
|
|
8
|
-
} from "../../chunk-
|
|
9
|
-
import "../../chunk-
|
|
8
|
+
} from "../../chunk-26S6TAKJ.mjs";
|
|
9
|
+
import "../../chunk-2UCO46LO.mjs";
|
|
10
10
|
import "../../chunk-2BPV2XV2.mjs";
|
|
11
11
|
export {
|
|
12
12
|
Provider,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkZU6W5KIMjs = require('../../../chunk-ZU6W5KIM.js');
|
|
4
|
+
require('../../../chunk-XKYTUIZK.js');
|
|
5
|
+
require('../../../chunk-3LQFRKIU.js');
|
|
6
6
|
require('../../../chunk-3GQAWCBQ.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkZU6W5KIMjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-Q5MCQX6H.mjs";
|
|
4
|
+
import "../../../chunk-26S6TAKJ.mjs";
|
|
5
|
+
import "../../../chunk-2UCO46LO.mjs";
|
|
6
6
|
import "../../../chunk-2BPV2XV2.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkOPMXGFNTjs = require('../../../chunk-OPMXGFNT.js');
|
|
4
|
+
require('../../../chunk-XKYTUIZK.js');
|
|
5
|
+
require('../../../chunk-3LQFRKIU.js');
|
|
6
6
|
require('../../../chunk-3GQAWCBQ.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkOPMXGFNTjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-3UGVTIGP.mjs";
|
|
4
|
+
import "../../../chunk-26S6TAKJ.mjs";
|
|
5
|
+
import "../../../chunk-2UCO46LO.mjs";
|
|
6
6
|
import "../../../chunk-2BPV2XV2.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkAPIJLG5Mjs = require('../../../chunk-APIJLG5M.js');
|
|
4
|
+
require('../../../chunk-XKYTUIZK.js');
|
|
5
|
+
require('../../../chunk-3LQFRKIU.js');
|
|
6
6
|
require('../../../chunk-3GQAWCBQ.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkAPIJLG5Mjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-Z2ODCGRK.mjs";
|
|
4
|
+
import "../../../chunk-26S6TAKJ.mjs";
|
|
5
|
+
import "../../../chunk-2UCO46LO.mjs";
|
|
6
6
|
import "../../../chunk-2BPV2XV2.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkX5ZCAH2Cjs = require('../../../chunk-X5ZCAH2C.js');
|
|
4
|
+
require('../../../chunk-XKYTUIZK.js');
|
|
5
|
+
require('../../../chunk-3LQFRKIU.js');
|
|
6
6
|
require('../../../chunk-3GQAWCBQ.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkX5ZCAH2Cjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-2KDIKPBS.mjs";
|
|
4
|
+
import "../../../chunk-26S6TAKJ.mjs";
|
|
5
|
+
import "../../../chunk-2UCO46LO.mjs";
|
|
6
6
|
import "../../../chunk-2BPV2XV2.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunk3XXJV3DHjs = require('../../../chunk-3XXJV3DH.js');
|
|
4
|
+
require('../../../chunk-XKYTUIZK.js');
|
|
5
|
+
require('../../../chunk-3LQFRKIU.js');
|
|
6
6
|
require('../../../chunk-3GQAWCBQ.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunk3XXJV3DHjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-TMIIM3X7.mjs";
|
|
4
|
+
import "../../../chunk-26S6TAKJ.mjs";
|
|
5
|
+
import "../../../chunk-2UCO46LO.mjs";
|
|
6
6
|
import "../../../chunk-2BPV2XV2.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkFW7MVDHPjs = require('../../../chunk-FW7MVDHP.js');
|
|
5
5
|
require('../../../chunk-DBLK3NPE.js');
|
|
6
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-3LQFRKIU.js');
|
|
7
7
|
require('../../../chunk-3GQAWCBQ.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunkFW7MVDHPjs.generator_default; exports.initGeneratorFn = _chunkFW7MVDHPjs.initGeneratorFn;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-7AWVCCR4.mjs";
|
|
5
5
|
import "../../../chunk-UF7ZCXHA.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-2UCO46LO.mjs";
|
|
7
7
|
import "../../../chunk-2BPV2XV2.mjs";
|
|
8
8
|
export {
|
|
9
9
|
generator_default as default,
|