@storm-software/pulumi-tools 0.7.55 → 0.7.56
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-X3NRJ4N7.js → chunk-3E7U32YZ.js} +205 -36
- package/dist/{chunk-YCVKG6JS.js → chunk-3HKYDFFV.js} +2 -2
- package/dist/{chunk-2GIUPJHS.js → chunk-APBJOTY3.js} +2 -2
- package/dist/{chunk-DK54HN4K.mjs → chunk-BPD7ONO7.mjs} +1 -1
- package/dist/{chunk-U4TQH734.js → chunk-CS4YJFOV.js} +2 -2
- package/dist/{chunk-3OZWQ5QE.mjs → chunk-ELJDSZB2.mjs} +1 -1
- package/dist/{chunk-2UH4RRNW.js → chunk-GBL7OLQF.js} +2 -2
- package/dist/{chunk-I4V7RFTZ.mjs → chunk-HJNJ7YU6.mjs} +1 -1
- package/dist/{chunk-5IVEJ34A.mjs → chunk-HRV4XKW4.mjs} +1 -1
- package/dist/{chunk-PJF55MGD.js → chunk-KDNAYWKN.js} +2 -2
- package/dist/{chunk-HJVG56K3.mjs → chunk-L2IHRS7N.mjs} +197 -28
- package/dist/{chunk-TVI5BFN7.mjs → chunk-NFQLTGXG.mjs} +1 -1
- package/dist/{chunk-E5YDCCYW.mjs → chunk-QCE5MXIG.mjs} +1 -1
- package/dist/{chunk-HFYFHIZK.mjs → chunk-QNO5QCOA.mjs} +1 -1
- package/dist/{chunk-5C2GNELZ.js → chunk-TU3Q3T7D.js} +5 -5
- package/dist/{chunk-763TSWDB.js → chunk-UXXOZVCJ.js} +3 -3
- 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.56](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.7.56) (2025-04-16)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([762e7076f](https://github.com/storm-software/storm-ops/commit/762e7076f))
|
|
11
|
+
|
|
5
12
|
## [0.7.55](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.7.55) (2025-04-15)
|
|
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 -->
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } 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; }
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } 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; } var _class;
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
|
|
@@ -934,12 +934,12 @@ var getConfigEnv = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, () => {
|
|
|
934
934
|
configFile: process.env[`${prefix}CONFIG_FILE`] ? correctPaths(process.env[`${prefix}CONFIG_FILE`]) : void 0,
|
|
935
935
|
workspaceRoot: process.env[`${prefix}WORKSPACE_ROOT`] ? correctPaths(process.env[`${prefix}WORKSPACE_ROOT`]) : void 0,
|
|
936
936
|
directories: {
|
|
937
|
-
cache: process.env[`${prefix}CACHE_DIR`] ? correctPaths(process.env[`${prefix}CACHE_DIR`]) : void 0,
|
|
938
|
-
data: process.env[`${prefix}DATA_DIR`] ? correctPaths(process.env[`${prefix}DATA_DIR`]) : void 0,
|
|
939
|
-
config: process.env[`${prefix}CONFIG_DIR`] ? correctPaths(process.env[`${prefix}CONFIG_DIR`]) : void 0,
|
|
940
|
-
temp: process.env[`${prefix}TEMP_DIR`] ? correctPaths(process.env[`${prefix}TEMP_DIR`]) : void 0,
|
|
941
|
-
log: process.env[`${prefix}LOG_DIR`] ? correctPaths(process.env[`${prefix}LOG_DIR`]) : void 0,
|
|
942
|
-
build: process.env[`${prefix}BUILD_DIR`] ? correctPaths(process.env[`${prefix}BUILD_DIR`]) : void 0
|
|
937
|
+
cache: process.env[`${prefix}CACHE_DIR`] ? correctPaths(process.env[`${prefix}CACHE_DIR`]) : process.env[`${prefix}CACHE_DIRECTORY`] ? correctPaths(process.env[`${prefix}CACHE_DIRECTORY`]) : void 0,
|
|
938
|
+
data: process.env[`${prefix}DATA_DIR`] ? correctPaths(process.env[`${prefix}DATA_DIR`]) : process.env[`${prefix}DATA_DIRECTORY`] ? correctPaths(process.env[`${prefix}DATA_DIRECTORY`]) : void 0,
|
|
939
|
+
config: process.env[`${prefix}CONFIG_DIR`] ? correctPaths(process.env[`${prefix}CONFIG_DIR`]) : process.env[`${prefix}CONFIG_DIRECTORY`] ? correctPaths(process.env[`${prefix}CONFIG_DIRECTORY`]) : void 0,
|
|
940
|
+
temp: process.env[`${prefix}TEMP_DIR`] ? correctPaths(process.env[`${prefix}TEMP_DIR`]) : process.env[`${prefix}TEMP_DIRECTORY`] ? correctPaths(process.env[`${prefix}TEMP_DIRECTORY`]) : void 0,
|
|
941
|
+
log: process.env[`${prefix}LOG_DIR`] ? correctPaths(process.env[`${prefix}LOG_DIR`]) : process.env[`${prefix}LOG_DIRECTORY`] ? correctPaths(process.env[`${prefix}LOG_DIRECTORY`]) : void 0,
|
|
942
|
+
build: process.env[`${prefix}BUILD_DIR`] ? correctPaths(process.env[`${prefix}BUILD_DIR`]) : process.env[`${prefix}BUILD_DIRECTORY`] ? correctPaths(process.env[`${prefix}BUILD_DIRECTORY`]) : void 0
|
|
943
943
|
},
|
|
944
944
|
skipCache: process.env[`${prefix}SKIP_CACHE`] !== void 0 ? Boolean(process.env[`${prefix}SKIP_CACHE`]) : void 0,
|
|
945
945
|
mode: (_nullishCoalesce(_nullishCoalesce(process.env[`${prefix}MODE`], () => ( process.env.NODE_ENV)), () => ( process.env.ENVIRONMENT))) || void 0,
|
|
@@ -1159,21 +1159,27 @@ var setConfigEnv = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (config)
|
|
|
1159
1159
|
if (config.directories) {
|
|
1160
1160
|
if (!config.skipCache && config.directories.cache) {
|
|
1161
1161
|
process.env[`${prefix}CACHE_DIR`] = correctPaths(config.directories.cache);
|
|
1162
|
+
process.env[`${prefix}CACHE_DIRECTORY`] = process.env[`${prefix}CACHE_DIR`];
|
|
1162
1163
|
}
|
|
1163
1164
|
if (config.directories.data) {
|
|
1164
1165
|
process.env[`${prefix}DATA_DIR`] = correctPaths(config.directories.data);
|
|
1166
|
+
process.env[`${prefix}DATA_DIRECTORY`] = process.env[`${prefix}DATA_DIR`];
|
|
1165
1167
|
}
|
|
1166
1168
|
if (config.directories.config) {
|
|
1167
1169
|
process.env[`${prefix}CONFIG_DIR`] = correctPaths(config.directories.config);
|
|
1170
|
+
process.env[`${prefix}CONFIG_DIRECTORY`] = process.env[`${prefix}CONFIG_DIR`];
|
|
1168
1171
|
}
|
|
1169
1172
|
if (config.directories.temp) {
|
|
1170
1173
|
process.env[`${prefix}TEMP_DIR`] = correctPaths(config.directories.temp);
|
|
1174
|
+
process.env[`${prefix}TEMP_DIRECTORY`] = process.env[`${prefix}TEMP_DIR`];
|
|
1171
1175
|
}
|
|
1172
1176
|
if (config.directories.log) {
|
|
1173
1177
|
process.env[`${prefix}LOG_DIR`] = correctPaths(config.directories.log);
|
|
1178
|
+
process.env[`${prefix}LOG_DIRECTORY`] = process.env[`${prefix}LOG_DIR`];
|
|
1174
1179
|
}
|
|
1175
1180
|
if (config.directories.build) {
|
|
1176
1181
|
process.env[`${prefix}BUILD_DIR`] = correctPaths(config.directories.build);
|
|
1182
|
+
process.env[`${prefix}BUILD_DIRECTORY`] = process.env[`${prefix}BUILD_DIR`];
|
|
1177
1183
|
}
|
|
1178
1184
|
}
|
|
1179
1185
|
if (config.skipCache !== void 0) {
|
|
@@ -2422,7 +2428,7 @@ _chunk3GQAWCBQjs.__name.call(void 0, bundleTypeDefinitions, "bundleTypeDefinitio
|
|
|
2422
2428
|
var tscPlugin = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (options, resolvedOptions) => ({
|
|
2423
2429
|
name: "storm:tsc",
|
|
2424
2430
|
setup(build4) {
|
|
2425
|
-
if (options.
|
|
2431
|
+
if (options.dts === false) {
|
|
2426
2432
|
return;
|
|
2427
2433
|
}
|
|
2428
2434
|
build4.onStart(async () => {
|
|
@@ -2474,7 +2480,7 @@ var getDefaultBuildPlugins = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0
|
|
|
2474
2480
|
var DEFAULT_BUILD_OPTIONS = {
|
|
2475
2481
|
platform: "node",
|
|
2476
2482
|
target: "node22",
|
|
2477
|
-
format: "
|
|
2483
|
+
format: "esm",
|
|
2478
2484
|
external: [],
|
|
2479
2485
|
logLevel: "error",
|
|
2480
2486
|
tsconfig: "tsconfig.json",
|
|
@@ -2623,6 +2629,155 @@ var shebangRenderer = {
|
|
|
2623
2629
|
}
|
|
2624
2630
|
};
|
|
2625
2631
|
|
|
2632
|
+
// ../esbuild/src/tsc.ts
|
|
2633
|
+
var _bundlerequire = require('bundle-require');
|
|
2634
|
+
|
|
2635
|
+
|
|
2636
|
+
|
|
2637
|
+
var _typescript = require('typescript'); var _typescript2 = _interopRequireDefault(_typescript);
|
|
2638
|
+
function ensureTempDeclarationDir(workspaceConfig) {
|
|
2639
|
+
const root = workspaceConfig.directories.temp || _path.join.call(void 0, workspaceConfig.workspaceRoot, "tmp");
|
|
2640
|
+
const dirPath = _path.join.call(void 0, root, ".tsc", "declaration");
|
|
2641
|
+
if (_fs.existsSync.call(void 0, dirPath)) {
|
|
2642
|
+
return dirPath;
|
|
2643
|
+
}
|
|
2644
|
+
_fs.mkdirSync.call(void 0, dirPath, {
|
|
2645
|
+
recursive: true
|
|
2646
|
+
});
|
|
2647
|
+
const gitIgnorePath = _path.join.call(void 0, root, ".tsc", ".gitignore");
|
|
2648
|
+
_fs.writeFileSync.call(void 0, gitIgnorePath, "**/*\n");
|
|
2649
|
+
return dirPath;
|
|
2650
|
+
}
|
|
2651
|
+
_chunk3GQAWCBQjs.__name.call(void 0, ensureTempDeclarationDir, "ensureTempDeclarationDir");
|
|
2652
|
+
function slash(path7) {
|
|
2653
|
+
const isExtendedLengthPath = path7.startsWith("\\\\?\\");
|
|
2654
|
+
if (isExtendedLengthPath) {
|
|
2655
|
+
return path7;
|
|
2656
|
+
}
|
|
2657
|
+
return path7.replace(/\\/g, "/");
|
|
2658
|
+
}
|
|
2659
|
+
_chunk3GQAWCBQjs.__name.call(void 0, slash, "slash");
|
|
2660
|
+
function toAbsolutePath(workspaceConfig, p, cwd) {
|
|
2661
|
+
if (_path.isAbsolute.call(void 0, p)) {
|
|
2662
|
+
return p;
|
|
2663
|
+
}
|
|
2664
|
+
return slash(_path.normalize.call(void 0, _path.join.call(void 0, cwd || workspaceConfig.workspaceRoot, p)));
|
|
2665
|
+
}
|
|
2666
|
+
_chunk3GQAWCBQjs.__name.call(void 0, toAbsolutePath, "toAbsolutePath");
|
|
2667
|
+
var AliasPool = (_class = class AliasPool2 {constructor() { _class.prototype.__init.call(this); }
|
|
2668
|
+
static {
|
|
2669
|
+
_chunk3GQAWCBQjs.__name.call(void 0, this, "AliasPool");
|
|
2670
|
+
}
|
|
2671
|
+
__init() {this.seen = /* @__PURE__ */ new Set()}
|
|
2672
|
+
assign(name) {
|
|
2673
|
+
let suffix = 0;
|
|
2674
|
+
let alias = name === "default" ? "default_alias" : name;
|
|
2675
|
+
while (this.seen.has(alias)) {
|
|
2676
|
+
alias = `${name}_alias_${++suffix}`;
|
|
2677
|
+
if (suffix >= 1e3) {
|
|
2678
|
+
throw new Error("Alias generation exceeded limit. Possible infinite loop detected.");
|
|
2679
|
+
}
|
|
2680
|
+
}
|
|
2681
|
+
this.seen.add(alias);
|
|
2682
|
+
return alias;
|
|
2683
|
+
}
|
|
2684
|
+
}, _class);
|
|
2685
|
+
function getExports(workspaceConfig, program, fileMapping) {
|
|
2686
|
+
const checker = program.getTypeChecker();
|
|
2687
|
+
const aliasPool = new AliasPool();
|
|
2688
|
+
const assignAlias = aliasPool.assign.bind(aliasPool);
|
|
2689
|
+
function extractExports(sourceFileName) {
|
|
2690
|
+
const cwd = program.getCurrentDirectory();
|
|
2691
|
+
sourceFileName = toAbsolutePath(workspaceConfig, sourceFileName, cwd);
|
|
2692
|
+
const sourceFile = program.getSourceFile(sourceFileName);
|
|
2693
|
+
if (!sourceFile) {
|
|
2694
|
+
return [];
|
|
2695
|
+
}
|
|
2696
|
+
const destFileName = fileMapping.get(sourceFileName);
|
|
2697
|
+
if (!destFileName) {
|
|
2698
|
+
return [];
|
|
2699
|
+
}
|
|
2700
|
+
const moduleSymbol = checker.getSymbolAtLocation(sourceFile);
|
|
2701
|
+
if (!moduleSymbol) {
|
|
2702
|
+
return [];
|
|
2703
|
+
}
|
|
2704
|
+
const exports = [];
|
|
2705
|
+
const exportSymbols = checker.getExportsOfModule(moduleSymbol);
|
|
2706
|
+
exportSymbols.forEach((symbol) => {
|
|
2707
|
+
const name = symbol.getName();
|
|
2708
|
+
exports.push({
|
|
2709
|
+
kind: "named",
|
|
2710
|
+
sourceFileName,
|
|
2711
|
+
destFileName,
|
|
2712
|
+
name,
|
|
2713
|
+
alias: assignAlias(name),
|
|
2714
|
+
isTypeOnly: false
|
|
2715
|
+
});
|
|
2716
|
+
});
|
|
2717
|
+
return exports;
|
|
2718
|
+
}
|
|
2719
|
+
_chunk3GQAWCBQjs.__name.call(void 0, extractExports, "extractExports");
|
|
2720
|
+
return program.getRootFileNames().flatMap(extractExports);
|
|
2721
|
+
}
|
|
2722
|
+
_chunk3GQAWCBQjs.__name.call(void 0, getExports, "getExports");
|
|
2723
|
+
function emitDtsFiles(workspaceConfig, program, host, emitOnlyDtsFiles = true, customTransformers) {
|
|
2724
|
+
const fileMapping = /* @__PURE__ */ new Map();
|
|
2725
|
+
const writeFile3 = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (fileName, text, writeByteOrderMark, onError, sourceFiles, data) => {
|
|
2726
|
+
const sourceFile = _optionalChain([sourceFiles, 'optionalAccess', _142 => _142[0]]);
|
|
2727
|
+
const sourceFileName = _optionalChain([sourceFile, 'optionalAccess', _143 => _143.fileName]);
|
|
2728
|
+
if (sourceFileName && !fileName.endsWith(".map")) {
|
|
2729
|
+
const cwd = program.getCurrentDirectory();
|
|
2730
|
+
fileMapping.set(toAbsolutePath(workspaceConfig, sourceFileName, cwd), toAbsolutePath(workspaceConfig, fileName, cwd));
|
|
2731
|
+
}
|
|
2732
|
+
return host.writeFile(fileName, text, writeByteOrderMark, onError, sourceFiles, data);
|
|
2733
|
+
}, "writeFile");
|
|
2734
|
+
const emitResult = program.emit(void 0, writeFile3, void 0, emitOnlyDtsFiles, customTransformers);
|
|
2735
|
+
const diagnostics = _typescript2.default.getPreEmitDiagnostics(program).concat(emitResult.diagnostics);
|
|
2736
|
+
const diagnosticMessages = [];
|
|
2737
|
+
diagnostics.forEach((diagnostic) => {
|
|
2738
|
+
if (diagnostic.file) {
|
|
2739
|
+
const { line, character } = _typescript2.default.getLineAndCharacterOfPosition(diagnostic.file, diagnostic.start);
|
|
2740
|
+
const message = _typescript2.default.flattenDiagnosticMessageText(diagnostic.messageText, "\n");
|
|
2741
|
+
diagnosticMessages.push(`${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message}`);
|
|
2742
|
+
} else {
|
|
2743
|
+
const message = _typescript2.default.flattenDiagnosticMessageText(diagnostic.messageText, "\n");
|
|
2744
|
+
diagnosticMessages.push(message);
|
|
2745
|
+
}
|
|
2746
|
+
});
|
|
2747
|
+
const diagnosticMessage = diagnosticMessages.join("\n");
|
|
2748
|
+
if (diagnosticMessage) {
|
|
2749
|
+
writeError(`Failed to emit declaration files.
|
|
2750
|
+
|
|
2751
|
+
${diagnosticMessage}`, workspaceConfig);
|
|
2752
|
+
throw new Error("TypeScript compilation failed");
|
|
2753
|
+
}
|
|
2754
|
+
return fileMapping;
|
|
2755
|
+
}
|
|
2756
|
+
_chunk3GQAWCBQjs.__name.call(void 0, emitDtsFiles, "emitDtsFiles");
|
|
2757
|
+
function emitDts(workspaceConfig, tsconfig, tsconfigRaw, emitOnlyDtsFiles = true, customTransformers) {
|
|
2758
|
+
const rawTsconfig = _bundlerequire.loadTsConfig.call(void 0, workspaceConfig.workspaceRoot, tsconfig);
|
|
2759
|
+
if (!rawTsconfig) {
|
|
2760
|
+
throw new Error(`Unable to find ${tsconfig || "tsconfig.json"} in ${workspaceConfig.workspaceRoot}`);
|
|
2761
|
+
}
|
|
2762
|
+
const declarationDir = ensureTempDeclarationDir(workspaceConfig);
|
|
2763
|
+
const parsedTsconfig = _typescript2.default.parseJsonConfigFileContent(_defu2.default.call(void 0, {
|
|
2764
|
+
compilerOptions: {
|
|
2765
|
+
// Enable declaration emit and disable javascript emit
|
|
2766
|
+
noEmit: false,
|
|
2767
|
+
declaration: true,
|
|
2768
|
+
declarationMap: true,
|
|
2769
|
+
declarationDir,
|
|
2770
|
+
emitDeclarationOnly: true
|
|
2771
|
+
}
|
|
2772
|
+
}, _nullishCoalesce(_optionalChain([tsconfigRaw, 'optionalAccess', _144 => _144.compilerOptions]), () => ( {})), _nullishCoalesce(rawTsconfig.data, () => ( {}))), _typescript2.default.sys, tsconfig ? _path.dirname.call(void 0, tsconfig) : "./");
|
|
2773
|
+
const options = parsedTsconfig.options;
|
|
2774
|
+
const host = _typescript2.default.createCompilerHost(options);
|
|
2775
|
+
const program = _typescript2.default.createProgram(parsedTsconfig.fileNames, options, host);
|
|
2776
|
+
const fileMapping = emitDtsFiles(workspaceConfig, program, host, emitOnlyDtsFiles, customTransformers);
|
|
2777
|
+
return getExports(workspaceConfig, program, fileMapping);
|
|
2778
|
+
}
|
|
2779
|
+
_chunk3GQAWCBQjs.__name.call(void 0, emitDts, "emitDts");
|
|
2780
|
+
|
|
2626
2781
|
// ../esbuild/src/utilities/get-entry-points.ts
|
|
2627
2782
|
|
|
2628
2783
|
var getEntryPoints = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
|
|
@@ -2751,7 +2906,7 @@ function pipeSync(fn, ...fns) {
|
|
|
2751
2906
|
return (...args) => {
|
|
2752
2907
|
let result = fn(...args);
|
|
2753
2908
|
for (let i = 0; result !== skip && i < fns.length; ++i) {
|
|
2754
|
-
result = _optionalChain([fns, 'access',
|
|
2909
|
+
result = _optionalChain([fns, 'access', _145 => _145[i], 'optionalCall', _146 => _146(result)]);
|
|
2755
2910
|
}
|
|
2756
2911
|
return result;
|
|
2757
2912
|
};
|
|
@@ -2761,7 +2916,7 @@ function pipeAsync(fn, ...fns) {
|
|
|
2761
2916
|
return async (...args) => {
|
|
2762
2917
|
let result = await fn(...args);
|
|
2763
2918
|
for (let i = 0; result !== skip && i < fns.length; ++i) {
|
|
2764
|
-
result = await _optionalChain([fns, 'access',
|
|
2919
|
+
result = await _optionalChain([fns, 'access', _147 => _147[i], 'optionalCall', _148 => _148(result)]);
|
|
2765
2920
|
}
|
|
2766
2921
|
return result;
|
|
2767
2922
|
};
|
|
@@ -2791,7 +2946,7 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
2791
2946
|
const projectJson = JSON.parse(projectJsonFile);
|
|
2792
2947
|
const projectName = projectJson.name;
|
|
2793
2948
|
const projectConfigurations = _devkit.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
|
|
2794
|
-
if (!_optionalChain([projectConfigurations, 'optionalAccess',
|
|
2949
|
+
if (!_optionalChain([projectConfigurations, 'optionalAccess', _149 => _149.projects, 'optionalAccess', _150 => _150[projectName]])) {
|
|
2795
2950
|
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.");
|
|
2796
2951
|
}
|
|
2797
2952
|
const options = _defu2.default.call(void 0, userOptions, DEFAULT_BUILD_OPTIONS);
|
|
@@ -2955,6 +3110,7 @@ async function executeEsBuild(context2) {
|
|
|
2955
3110
|
options.inject === {}) {
|
|
2956
3111
|
delete options.inject;
|
|
2957
3112
|
}
|
|
3113
|
+
delete options.dts;
|
|
2958
3114
|
delete options.env;
|
|
2959
3115
|
delete options.name;
|
|
2960
3116
|
delete options.assets;
|
|
@@ -2990,8 +3146,18 @@ ${formatLogMessage({
|
|
|
2990
3146
|
return context2;
|
|
2991
3147
|
}
|
|
2992
3148
|
_chunk3GQAWCBQjs.__name.call(void 0, executeEsBuild, "executeEsBuild");
|
|
3149
|
+
async function executeTypescript(context2) {
|
|
3150
|
+
if (_optionalChain([context2, 'access', _151 => _151.result, 'optionalAccess', _152 => _152.errors, 'access', _153 => _153.length]) === 0 && context2.options.dts) {
|
|
3151
|
+
writeDebug(` \u{1F4CB} Running TypeScript Compiler for ${context2.options.name}`, context2.options.config);
|
|
3152
|
+
const stopwatch = getStopwatch(`${context2.options.name} asset copy`);
|
|
3153
|
+
await emitDts(context2.options.config, context2.options.tsconfig, context2.options.tsconfigRaw, true);
|
|
3154
|
+
stopwatch();
|
|
3155
|
+
}
|
|
3156
|
+
return context2;
|
|
3157
|
+
}
|
|
3158
|
+
_chunk3GQAWCBQjs.__name.call(void 0, executeTypescript, "executeTypescript");
|
|
2993
3159
|
async function copyBuildAssets(context2) {
|
|
2994
|
-
if (_optionalChain([context2, 'access',
|
|
3160
|
+
if (_optionalChain([context2, 'access', _154 => _154.result, 'optionalAccess', _155 => _155.errors, 'access', _156 => _156.length]) === 0) {
|
|
2995
3161
|
writeDebug(` \u{1F4CB} Copying asset files to output directory: ${context2.options.outdir}`, context2.options.config);
|
|
2996
3162
|
const stopwatch = getStopwatch(`${context2.options.name} asset copy`);
|
|
2997
3163
|
await copyAssets(context2.options.config, _nullishCoalesce(context2.options.assets, () => ( [])), context2.options.outdir, context2.options.projectRoot, context2.options.sourceRoot, true, false);
|
|
@@ -3001,11 +3167,14 @@ async function copyBuildAssets(context2) {
|
|
|
3001
3167
|
}
|
|
3002
3168
|
_chunk3GQAWCBQjs.__name.call(void 0, copyBuildAssets, "copyBuildAssets");
|
|
3003
3169
|
async function reportResults(context2) {
|
|
3004
|
-
if (_optionalChain([context2, 'access',
|
|
3170
|
+
if (_optionalChain([context2, 'access', _157 => _157.result, 'optionalAccess', _158 => _158.errors, 'access', _159 => _159.length]) === 0) {
|
|
3005
3171
|
if (context2.result.warnings.length > 0) {
|
|
3006
3172
|
writeWarning(` \u{1F6A7} The following warnings occurred during the build: ${context2.result.warnings.map((warning) => warning.text).join("\n")}`, context2.options.config);
|
|
3007
3173
|
}
|
|
3008
3174
|
writeSuccess(` \u{1F4E6} The ${context2.options.name} build completed successfully`, context2.options.config);
|
|
3175
|
+
} else if (_optionalChain([context2, 'access', _160 => _160.result, 'optionalAccess', _161 => _161.errors]) && _optionalChain([context2, 'access', _162 => _162.result, 'optionalAccess', _163 => _163.errors, 'access', _164 => _164.length]) > 0) {
|
|
3176
|
+
writeError(` \u274C The ${context2.options.name} build failed with the following errors: ${context2.result.errors.map((error) => error.text).join("\n")}`, context2.options.config);
|
|
3177
|
+
throw new Error(`The ${context2.options.name} build failed with the following errors: ${context2.result.errors.map((error) => error.text).join("\n")}`);
|
|
3009
3178
|
}
|
|
3010
3179
|
}
|
|
3011
3180
|
_chunk3GQAWCBQjs.__name.call(void 0, reportResults, "reportResults");
|
|
@@ -3060,7 +3229,7 @@ async function build3(options) {
|
|
|
3060
3229
|
throw new Error("No build options were provided");
|
|
3061
3230
|
}
|
|
3062
3231
|
void transduce.async(opts, dependencyCheck);
|
|
3063
|
-
await transduce.async(await createOptions(opts), pipe.async(generateContext, cleanOutputPath, generatePackageJson, executeEsBuild, copyBuildAssets, reportResults));
|
|
3232
|
+
await transduce.async(await createOptions(opts), pipe.async(generateContext, cleanOutputPath, generatePackageJson, executeTypescript, executeEsBuild, copyBuildAssets, reportResults));
|
|
3064
3233
|
writeSuccess(" \u{1F3C1} ESBuild pipeline build completed successfully");
|
|
3065
3234
|
} catch (error) {
|
|
3066
3235
|
writeFatal("Fatal errors that the build process could not recover from have occured. The build process has been terminated.");
|
|
@@ -3102,14 +3271,14 @@ var watch = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (context2, opti
|
|
|
3102
3271
|
// ../workspace-tools/src/executors/esbuild/executor.ts
|
|
3103
3272
|
async function esbuildExecutorFn(options, context2, config) {
|
|
3104
3273
|
writeInfo("\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
|
|
3105
|
-
if (!_optionalChain([context2, 'access',
|
|
3274
|
+
if (!_optionalChain([context2, 'access', _165 => _165.projectsConfigurations, 'optionalAccess', _166 => _166.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName] || !_optionalChain([context2, 'access', _167 => _167.projectsConfigurations, 'access', _168 => _168.projects, 'access', _169 => _169[context2.projectName], 'optionalAccess', _170 => _170.root])) {
|
|
3106
3275
|
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
|
|
3107
3276
|
}
|
|
3108
3277
|
await build3({
|
|
3109
3278
|
...options,
|
|
3110
|
-
projectRoot: _optionalChain([context2, 'access',
|
|
3279
|
+
projectRoot: _optionalChain([context2, 'access', _171 => _171.projectsConfigurations, 'access', _172 => _172.projects, 'optionalAccess', _173 => _173[context2.projectName], 'access', _174 => _174.root]),
|
|
3111
3280
|
projectName: context2.projectName,
|
|
3112
|
-
sourceRoot: _optionalChain([context2, 'access',
|
|
3281
|
+
sourceRoot: _optionalChain([context2, 'access', _175 => _175.projectsConfigurations, 'access', _176 => _176.projects, 'optionalAccess', _177 => _177[context2.projectName], 'optionalAccess', _178 => _178.sourceRoot]),
|
|
3113
3282
|
format: options.format,
|
|
3114
3283
|
platform: options.format
|
|
3115
3284
|
});
|
|
@@ -3152,7 +3321,7 @@ var _esbuildwhy = require('@size-limit/esbuild-why'); var _esbuildwhy2 = _intero
|
|
|
3152
3321
|
var _file = require('@size-limit/file'); var _file2 = _interopRequireDefault(_file);
|
|
3153
3322
|
var _sizelimit = require('size-limit'); var _sizelimit2 = _interopRequireDefault(_sizelimit);
|
|
3154
3323
|
async function sizeLimitExecutorFn(options, context2, config) {
|
|
3155
|
-
if (!_optionalChain([context2, 'optionalAccess',
|
|
3324
|
+
if (!_optionalChain([context2, 'optionalAccess', _179 => _179.projectName]) || !_optionalChain([context2, 'access', _180 => _180.projectsConfigurations, 'optionalAccess', _181 => _181.projects]) || !context2.projectsConfigurations.projects[context2.projectName]) {
|
|
3156
3325
|
throw new Error("The Size-Limit process failed because the context is not valid. Please run this command from a workspace.");
|
|
3157
3326
|
}
|
|
3158
3327
|
writeInfo(`\u{1F4CF} Running Size-Limit on ${context2.projectName}`, config);
|
|
@@ -3161,7 +3330,7 @@ async function sizeLimitExecutorFn(options, context2, config) {
|
|
|
3161
3330
|
_esbuild3.default,
|
|
3162
3331
|
_esbuildwhy2.default
|
|
3163
3332
|
], {
|
|
3164
|
-
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context2, 'access',
|
|
3333
|
+
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context2, 'access', _182 => _182.projectsConfigurations, 'access', _183 => _183.projects, 'access', _184 => _184[context2.projectName], 'optionalAccess', _185 => _185.sourceRoot]))), () => ( _devkit.joinPathFragments.call(void 0, _nullishCoalesce(_optionalChain([context2, 'access', _186 => _186.projectsConfigurations, 'access', _187 => _187.projects, 'access', _188 => _188[context2.projectName], 'optionalAccess', _189 => _189.root]), () => ( "./")), "src")))
|
|
3165
3334
|
}).then((result) => {
|
|
3166
3335
|
writeInfo(`\u{1F4CF} ${context2.projectName} Size-Limit result: ${JSON.stringify(result)}`, config);
|
|
3167
3336
|
});
|
|
@@ -3220,7 +3389,7 @@ var executor_default8 = withRunExecutor("Typia runtime validation generator", ty
|
|
|
3220
3389
|
var _jiti = require('jiti');
|
|
3221
3390
|
async function unbuildExecutorFn(options, context2, config) {
|
|
3222
3391
|
writeInfo("\u{1F4E6} Running Storm Unbuild executor on the workspace", config);
|
|
3223
|
-
if (!_optionalChain([context2, 'access',
|
|
3392
|
+
if (!_optionalChain([context2, 'access', _190 => _190.projectsConfigurations, 'optionalAccess', _191 => _191.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName]) {
|
|
3224
3393
|
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace root directory.");
|
|
3225
3394
|
}
|
|
3226
3395
|
if (!context2.projectsConfigurations.projects[context2.projectName].root) {
|
|
@@ -3432,15 +3601,15 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3432
3601
|
_devkit.addProjectConfiguration.call(void 0, tree, normalized.name, projectConfig);
|
|
3433
3602
|
let repository = {
|
|
3434
3603
|
type: "github",
|
|
3435
|
-
url: _optionalChain([config, 'optionalAccess',
|
|
3604
|
+
url: _optionalChain([config, 'optionalAccess', _192 => _192.repository]) || `https://github.com/${_optionalChain([config, 'optionalAccess', _193 => _193.organization]) || "storm-software"}/${_optionalChain([config, 'optionalAccess', _194 => _194.namespace]) || _optionalChain([config, 'optionalAccess', _195 => _195.name]) || "repository"}.git`
|
|
3436
3605
|
};
|
|
3437
3606
|
let description = options.description || "A package developed by Storm Software used to create modern, scalable web applications.";
|
|
3438
3607
|
if (tree.exists("package.json")) {
|
|
3439
3608
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
3440
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3609
|
+
if (_optionalChain([packageJson, 'optionalAccess', _196 => _196.repository])) {
|
|
3441
3610
|
repository = packageJson.repository;
|
|
3442
3611
|
}
|
|
3443
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3612
|
+
if (_optionalChain([packageJson, 'optionalAccess', _197 => _197.description])) {
|
|
3444
3613
|
description = packageJson.description;
|
|
3445
3614
|
}
|
|
3446
3615
|
}
|
|
@@ -3495,9 +3664,9 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3495
3664
|
_devkit.updateJson.call(void 0, tree, "package.json", (json) => ({
|
|
3496
3665
|
...json,
|
|
3497
3666
|
pnpm: {
|
|
3498
|
-
..._optionalChain([json, 'optionalAccess',
|
|
3667
|
+
..._optionalChain([json, 'optionalAccess', _198 => _198.pnpm]),
|
|
3499
3668
|
overrides: {
|
|
3500
|
-
..._optionalChain([json, 'optionalAccess',
|
|
3669
|
+
..._optionalChain([json, 'optionalAccess', _199 => _199.pnpm, 'optionalAccess', _200 => _200.overrides]),
|
|
3501
3670
|
[_nullishCoalesce(normalized.importPath, () => ( ""))]: "workspace:*"
|
|
3502
3671
|
}
|
|
3503
3672
|
}
|
|
@@ -3511,10 +3680,10 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3511
3680
|
]);
|
|
3512
3681
|
if (tree.exists("package.json")) {
|
|
3513
3682
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
3514
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3683
|
+
if (_optionalChain([packageJson, 'optionalAccess', _201 => _201.repository])) {
|
|
3515
3684
|
repository = packageJson.repository;
|
|
3516
3685
|
}
|
|
3517
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3686
|
+
if (_optionalChain([packageJson, 'optionalAccess', _202 => _202.description])) {
|
|
3518
3687
|
description = packageJson.description;
|
|
3519
3688
|
}
|
|
3520
3689
|
}
|
|
@@ -3562,24 +3731,24 @@ _chunk3GQAWCBQjs.__name.call(void 0, getOutputPath, "getOutputPath");
|
|
|
3562
3731
|
function createProjectTsConfigJson(tree, options) {
|
|
3563
3732
|
const tsconfig = {
|
|
3564
3733
|
extends: options.rootProject ? void 0 : _js.getRelativePathToRootTsConfig.call(void 0, tree, options.projectRoot),
|
|
3565
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3734
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _203 => _203.tsconfigOptions]), () => ( {})),
|
|
3566
3735
|
compilerOptions: {
|
|
3567
3736
|
...options.rootProject ? _js.tsConfigBaseOptions : {},
|
|
3568
3737
|
outDir: joinPaths(_devkit.offsetFromRoot.call(void 0, options.projectRoot), "dist/out-tsc"),
|
|
3569
3738
|
noEmit: true,
|
|
3570
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3739
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _204 => _204.tsconfigOptions, 'optionalAccess', _205 => _205.compilerOptions]), () => ( {}))
|
|
3571
3740
|
},
|
|
3572
3741
|
files: [
|
|
3573
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3742
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _206 => _206.tsconfigOptions, 'optionalAccess', _207 => _207.files]), () => ( []))
|
|
3574
3743
|
],
|
|
3575
3744
|
include: [
|
|
3576
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3745
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _208 => _208.tsconfigOptions, 'optionalAccess', _209 => _209.include]), () => ( [])),
|
|
3577
3746
|
"src/**/*.ts",
|
|
3578
3747
|
"src/**/*.js",
|
|
3579
3748
|
"bin/**/*"
|
|
3580
3749
|
],
|
|
3581
3750
|
exclude: [
|
|
3582
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3751
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _210 => _210.tsconfigOptions, 'optionalAccess', _211 => _211.exclude]), () => ( [])),
|
|
3583
3752
|
"jest.config.ts",
|
|
3584
3753
|
"src/**/*.spec.ts",
|
|
3585
3754
|
"src/**/*.test.ts"
|
|
@@ -3590,8 +3759,8 @@ function createProjectTsConfigJson(tree, options) {
|
|
|
3590
3759
|
_chunk3GQAWCBQjs.__name.call(void 0, createProjectTsConfigJson, "createProjectTsConfigJson");
|
|
3591
3760
|
async function normalizeOptions(tree, options, config) {
|
|
3592
3761
|
let importPath = options.importPath;
|
|
3593
|
-
if (!importPath && _optionalChain([config, 'optionalAccess',
|
|
3594
|
-
importPath = `@${_optionalChain([config, 'optionalAccess',
|
|
3762
|
+
if (!importPath && _optionalChain([config, 'optionalAccess', _212 => _212.namespace])) {
|
|
3763
|
+
importPath = `@${_optionalChain([config, 'optionalAccess', _213 => _213.namespace])}/${options.name}`;
|
|
3595
3764
|
}
|
|
3596
3765
|
if (options.publishable) {
|
|
3597
3766
|
if (!importPath) {
|
|
@@ -3723,7 +3892,7 @@ async function configSchemaGeneratorFn(tree, options, config) {
|
|
|
3723
3892
|
name: "StormWorkspaceConfiguration"
|
|
3724
3893
|
});
|
|
3725
3894
|
writeTrace(jsonSchema, config);
|
|
3726
|
-
const outputPath = options.outputFile.replaceAll("{workspaceRoot}", "").replaceAll(_nullishCoalesce(_optionalChain([config, 'optionalAccess',
|
|
3895
|
+
const outputPath = options.outputFile.replaceAll("{workspaceRoot}", "").replaceAll(_nullishCoalesce(_optionalChain([config, 'optionalAccess', _214 => _214.workspaceRoot]), () => ( findWorkspaceRoot())), _optionalChain([options, 'access', _215 => _215.outputFile, 'optionalAccess', _216 => _216.startsWith, 'call', _217 => _217("./")]) ? "" : "./");
|
|
3727
3896
|
writeTrace(`\u{1F4DD} Writing Storm Configuration JSON Schema to "${outputPath}"`, config);
|
|
3728
3897
|
_devkit.writeJson.call(void 0, tree, outputPath, jsonSchema, {
|
|
3729
3898
|
spaces: 2
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkUXXOZVCJjs = require('./chunk-UXXOZVCJ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/preview/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkUXXOZVCJjs.withPulumiExecutor.call(void 0, "preview", (options) => [
|
|
7
7
|
options.stack && `--stack=${options.stack}`,
|
|
8
8
|
options.expectNoChanges && "--expect-no-changes"
|
|
9
9
|
]);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkUXXOZVCJjs = require('./chunk-UXXOZVCJ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/config/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkUXXOZVCJjs.withPulumiExecutor.call(void 0, "config", (options) => [
|
|
7
7
|
options.action,
|
|
8
8
|
options.showSecrets && `--show-secrets`,
|
|
9
9
|
options.secret && `--secret`,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkUXXOZVCJjs = require('./chunk-UXXOZVCJ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/up/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkUXXOZVCJjs.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 _chunkUXXOZVCJjs = require('./chunk-UXXOZVCJ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/import/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkUXXOZVCJjs.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 _chunkUXXOZVCJjs = require('./chunk-UXXOZVCJ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/refresh/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkUXXOZVCJjs.withPulumiExecutor.call(void 0, "refresh", (options) => [
|
|
7
7
|
"--suppress-progress",
|
|
8
8
|
options.stack && `--stack=${options.stack}`,
|
|
9
9
|
options.skipPreview && "--skip-preview",
|