@storm-software/workspace-tools 1.175.6 → 1.176.0
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 +8 -0
- package/index.js +9 -3
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/base-executor.js +7 -1
- package/src/base/index.js +7 -1
- package/src/executors/cargo-build/executor.js +7 -1
- package/src/executors/cargo-check/executor.js +7 -1
- package/src/executors/cargo-clippy/executor.js +7 -1
- package/src/executors/cargo-doc/executor.js +7 -1
- package/src/executors/cargo-format/executor.js +7 -1
- package/src/executors/clean-package/executor.js +7 -1
- package/src/executors/rolldown/executor.js +7 -1
- package/src/executors/rollup/executor.js +9 -3
- package/src/executors/size-limit/executor.js +7 -1
- package/src/executors/tsup/executor.js +7 -1
- package/src/executors/tsup-browser/executor.js +7 -1
- package/src/executors/tsup-neutral/executor.js +7 -1
- package/src/executors/tsup-node/executor.js +7 -1
- package/src/executors/typia/executor.js +7 -1
- package/src/executors/unbuild/executor.js +7 -1
package/package.json
CHANGED
|
@@ -68340,7 +68340,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68340
68340
|
writeSuccess: writeSuccess2,
|
|
68341
68341
|
writeTrace: writeTrace2,
|
|
68342
68342
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68343
|
-
loadStormConfig: loadStormConfig2
|
|
68343
|
+
loadStormConfig: loadStormConfig2,
|
|
68344
|
+
formatLogMessage: formatLogMessage2
|
|
68344
68345
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68345
68346
|
const stopwatch = getStopwatch2(name);
|
|
68346
68347
|
let options = _options;
|
|
@@ -68414,6 +68415,11 @@ ${Object.keys(options).map(
|
|
|
68414
68415
|
ret
|
|
68415
68416
|
);
|
|
68416
68417
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68418
|
+
writeTrace2(
|
|
68419
|
+
`Failure determined by the ${name} executor
|
|
68420
|
+
${formatLogMessage2(result)}`,
|
|
68421
|
+
config
|
|
68422
|
+
);
|
|
68417
68423
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68418
68424
|
cause: result?.error
|
|
68419
68425
|
});
|
package/src/base/index.js
CHANGED
|
@@ -68348,7 +68348,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68348
68348
|
writeSuccess: writeSuccess2,
|
|
68349
68349
|
writeTrace: writeTrace2,
|
|
68350
68350
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68351
|
-
loadStormConfig: loadStormConfig2
|
|
68351
|
+
loadStormConfig: loadStormConfig2,
|
|
68352
|
+
formatLogMessage: formatLogMessage2
|
|
68352
68353
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68353
68354
|
const stopwatch = getStopwatch2(name);
|
|
68354
68355
|
let options = _options;
|
|
@@ -68422,6 +68423,11 @@ ${Object.keys(options).map(
|
|
|
68422
68423
|
ret
|
|
68423
68424
|
);
|
|
68424
68425
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68426
|
+
writeTrace2(
|
|
68427
|
+
`Failure determined by the ${name} executor
|
|
68428
|
+
${formatLogMessage2(result)}`,
|
|
68429
|
+
config
|
|
68430
|
+
);
|
|
68425
68431
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68426
68432
|
cause: result?.error
|
|
68427
68433
|
});
|
|
@@ -68343,7 +68343,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68343
68343
|
writeSuccess: writeSuccess2,
|
|
68344
68344
|
writeTrace: writeTrace2,
|
|
68345
68345
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68346
|
-
loadStormConfig: loadStormConfig2
|
|
68346
|
+
loadStormConfig: loadStormConfig2,
|
|
68347
|
+
formatLogMessage: formatLogMessage2
|
|
68347
68348
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68348
68349
|
const stopwatch = getStopwatch2(name);
|
|
68349
68350
|
let options = _options;
|
|
@@ -68417,6 +68418,11 @@ ${Object.keys(options).map(
|
|
|
68417
68418
|
ret
|
|
68418
68419
|
);
|
|
68419
68420
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68421
|
+
writeTrace2(
|
|
68422
|
+
`Failure determined by the ${name} executor
|
|
68423
|
+
${formatLogMessage2(result)}`,
|
|
68424
|
+
config
|
|
68425
|
+
);
|
|
68420
68426
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68421
68427
|
cause: result?.error
|
|
68422
68428
|
});
|
|
@@ -68343,7 +68343,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68343
68343
|
writeSuccess: writeSuccess2,
|
|
68344
68344
|
writeTrace: writeTrace2,
|
|
68345
68345
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68346
|
-
loadStormConfig: loadStormConfig2
|
|
68346
|
+
loadStormConfig: loadStormConfig2,
|
|
68347
|
+
formatLogMessage: formatLogMessage2
|
|
68347
68348
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68348
68349
|
const stopwatch = getStopwatch2(name);
|
|
68349
68350
|
let options = _options;
|
|
@@ -68417,6 +68418,11 @@ ${Object.keys(options).map(
|
|
|
68417
68418
|
ret
|
|
68418
68419
|
);
|
|
68419
68420
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68421
|
+
writeTrace2(
|
|
68422
|
+
`Failure determined by the ${name} executor
|
|
68423
|
+
${formatLogMessage2(result)}`,
|
|
68424
|
+
config
|
|
68425
|
+
);
|
|
68420
68426
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68421
68427
|
cause: result?.error
|
|
68422
68428
|
});
|
|
@@ -68343,7 +68343,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68343
68343
|
writeSuccess: writeSuccess2,
|
|
68344
68344
|
writeTrace: writeTrace2,
|
|
68345
68345
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68346
|
-
loadStormConfig: loadStormConfig2
|
|
68346
|
+
loadStormConfig: loadStormConfig2,
|
|
68347
|
+
formatLogMessage: formatLogMessage2
|
|
68347
68348
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68348
68349
|
const stopwatch = getStopwatch2(name);
|
|
68349
68350
|
let options = _options;
|
|
@@ -68417,6 +68418,11 @@ ${Object.keys(options).map(
|
|
|
68417
68418
|
ret
|
|
68418
68419
|
);
|
|
68419
68420
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68421
|
+
writeTrace2(
|
|
68422
|
+
`Failure determined by the ${name} executor
|
|
68423
|
+
${formatLogMessage2(result)}`,
|
|
68424
|
+
config
|
|
68425
|
+
);
|
|
68420
68426
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68421
68427
|
cause: result?.error
|
|
68422
68428
|
});
|
|
@@ -68374,7 +68374,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68374
68374
|
writeSuccess: writeSuccess2,
|
|
68375
68375
|
writeTrace: writeTrace2,
|
|
68376
68376
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68377
|
-
loadStormConfig: loadStormConfig2
|
|
68377
|
+
loadStormConfig: loadStormConfig2,
|
|
68378
|
+
formatLogMessage: formatLogMessage2
|
|
68378
68379
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68379
68380
|
const stopwatch = getStopwatch2(name);
|
|
68380
68381
|
let options = _options;
|
|
@@ -68448,6 +68449,11 @@ ${Object.keys(options).map(
|
|
|
68448
68449
|
ret
|
|
68449
68450
|
);
|
|
68450
68451
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68452
|
+
writeTrace2(
|
|
68453
|
+
`Failure determined by the ${name} executor
|
|
68454
|
+
${formatLogMessage2(result)}`,
|
|
68455
|
+
config
|
|
68456
|
+
);
|
|
68451
68457
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68452
68458
|
cause: result?.error
|
|
68453
68459
|
});
|
|
@@ -68343,7 +68343,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68343
68343
|
writeSuccess: writeSuccess2,
|
|
68344
68344
|
writeTrace: writeTrace2,
|
|
68345
68345
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68346
|
-
loadStormConfig: loadStormConfig2
|
|
68346
|
+
loadStormConfig: loadStormConfig2,
|
|
68347
|
+
formatLogMessage: formatLogMessage2
|
|
68347
68348
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68348
68349
|
const stopwatch = getStopwatch2(name);
|
|
68349
68350
|
let options = _options;
|
|
@@ -68417,6 +68418,11 @@ ${Object.keys(options).map(
|
|
|
68417
68418
|
ret
|
|
68418
68419
|
);
|
|
68419
68420
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68421
|
+
writeTrace2(
|
|
68422
|
+
`Failure determined by the ${name} executor
|
|
68423
|
+
${formatLogMessage2(result)}`,
|
|
68424
|
+
config
|
|
68425
|
+
);
|
|
68420
68426
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68421
68427
|
cause: result?.error
|
|
68422
68428
|
});
|
|
@@ -79692,7 +79692,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
79692
79692
|
writeSuccess: writeSuccess2,
|
|
79693
79693
|
writeTrace: writeTrace2,
|
|
79694
79694
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
79695
|
-
loadStormConfig: loadStormConfig2
|
|
79695
|
+
loadStormConfig: loadStormConfig2,
|
|
79696
|
+
formatLogMessage: formatLogMessage2
|
|
79696
79697
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
79697
79698
|
const stopwatch = getStopwatch2(name);
|
|
79698
79699
|
let options = _options;
|
|
@@ -79766,6 +79767,11 @@ ${Object.keys(options).map(
|
|
|
79766
79767
|
ret
|
|
79767
79768
|
);
|
|
79768
79769
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
79770
|
+
writeTrace2(
|
|
79771
|
+
`Failure determined by the ${name} executor
|
|
79772
|
+
${formatLogMessage2(result)}`,
|
|
79773
|
+
config
|
|
79774
|
+
);
|
|
79769
79775
|
throw new Error(`The ${name} executor failed to run`, {
|
|
79770
79776
|
cause: result?.error
|
|
79771
79777
|
});
|
|
@@ -68343,7 +68343,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68343
68343
|
writeSuccess: writeSuccess2,
|
|
68344
68344
|
writeTrace: writeTrace2,
|
|
68345
68345
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68346
|
-
loadStormConfig: loadStormConfig2
|
|
68346
|
+
loadStormConfig: loadStormConfig2,
|
|
68347
|
+
formatLogMessage: formatLogMessage2
|
|
68347
68348
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68348
68349
|
const stopwatch = getStopwatch2(name);
|
|
68349
68350
|
let options = _options;
|
|
@@ -68417,6 +68418,11 @@ ${Object.keys(options).map(
|
|
|
68417
68418
|
ret
|
|
68418
68419
|
);
|
|
68419
68420
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68421
|
+
writeTrace2(
|
|
68422
|
+
`Failure determined by the ${name} executor
|
|
68423
|
+
${formatLogMessage2(result)}`,
|
|
68424
|
+
config
|
|
68425
|
+
);
|
|
68420
68426
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68421
68427
|
cause: result?.error
|
|
68422
68428
|
});
|
|
@@ -101551,7 +101551,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
101551
101551
|
writeSuccess: writeSuccess2,
|
|
101552
101552
|
writeTrace: writeTrace2,
|
|
101553
101553
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
101554
|
-
loadStormConfig: loadStormConfig2
|
|
101554
|
+
loadStormConfig: loadStormConfig2,
|
|
101555
|
+
formatLogMessage: formatLogMessage2
|
|
101555
101556
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
101556
101557
|
const stopwatch = getStopwatch2(name);
|
|
101557
101558
|
let options = _options;
|
|
@@ -101625,6 +101626,11 @@ ${Object.keys(options).map(
|
|
|
101625
101626
|
ret
|
|
101626
101627
|
);
|
|
101627
101628
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
101629
|
+
writeTrace2(
|
|
101630
|
+
`Failure determined by the ${name} executor
|
|
101631
|
+
${formatLogMessage2(result)}`,
|
|
101632
|
+
config
|
|
101633
|
+
);
|
|
101628
101634
|
throw new Error(`The ${name} executor failed to run`, {
|
|
101629
101635
|
cause: result?.error
|
|
101630
101636
|
});
|
|
@@ -101841,9 +101847,9 @@ function convertRollupLogLevel(logLevel) {
|
|
|
101841
101847
|
switch (logLevel) {
|
|
101842
101848
|
case "info":
|
|
101843
101849
|
return "info";
|
|
101850
|
+
case "debug":
|
|
101844
101851
|
case "trace":
|
|
101845
101852
|
case "all":
|
|
101846
|
-
case "debug":
|
|
101847
101853
|
return "debug";
|
|
101848
101854
|
default:
|
|
101849
101855
|
return "warn";
|
|
@@ -101855,7 +101861,7 @@ function resolveOutfile(context, options) {
|
|
|
101855
101861
|
return (0, import_path3.resolve)(context.root, options.outputPath, `${name}.cjs.js`);
|
|
101856
101862
|
}
|
|
101857
101863
|
var executor_default = withRunExecutor(
|
|
101858
|
-
"Rollup build
|
|
101864
|
+
"Rollup build",
|
|
101859
101865
|
rollupExecutorFn,
|
|
101860
101866
|
{
|
|
101861
101867
|
skipReadingConfig: false,
|
|
@@ -69715,7 +69715,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
69715
69715
|
writeSuccess: writeSuccess2,
|
|
69716
69716
|
writeTrace: writeTrace2,
|
|
69717
69717
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
69718
|
-
loadStormConfig: loadStormConfig2
|
|
69718
|
+
loadStormConfig: loadStormConfig2,
|
|
69719
|
+
formatLogMessage: formatLogMessage2
|
|
69719
69720
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
69720
69721
|
const stopwatch = getStopwatch2(name);
|
|
69721
69722
|
let options = _options;
|
|
@@ -69789,6 +69790,11 @@ ${Object.keys(options).map(
|
|
|
69789
69790
|
ret
|
|
69790
69791
|
);
|
|
69791
69792
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
69793
|
+
writeTrace2(
|
|
69794
|
+
`Failure determined by the ${name} executor
|
|
69795
|
+
${formatLogMessage2(result)}`,
|
|
69796
|
+
config
|
|
69797
|
+
);
|
|
69792
69798
|
throw new Error(`The ${name} executor failed to run`, {
|
|
69793
69799
|
cause: result?.error
|
|
69794
69800
|
});
|
|
@@ -68344,7 +68344,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68344
68344
|
writeSuccess: writeSuccess2,
|
|
68345
68345
|
writeTrace: writeTrace2,
|
|
68346
68346
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68347
|
-
loadStormConfig: loadStormConfig2
|
|
68347
|
+
loadStormConfig: loadStormConfig2,
|
|
68348
|
+
formatLogMessage: formatLogMessage2
|
|
68348
68349
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68349
68350
|
const stopwatch = getStopwatch2(name);
|
|
68350
68351
|
let options = _options;
|
|
@@ -68418,6 +68419,11 @@ ${Object.keys(options).map(
|
|
|
68418
68419
|
ret
|
|
68419
68420
|
);
|
|
68420
68421
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68422
|
+
writeTrace2(
|
|
68423
|
+
`Failure determined by the ${name} executor
|
|
68424
|
+
${formatLogMessage2(result)}`,
|
|
68425
|
+
config
|
|
68426
|
+
);
|
|
68421
68427
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68422
68428
|
cause: result?.error
|
|
68423
68429
|
});
|
|
@@ -68344,7 +68344,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68344
68344
|
writeSuccess: writeSuccess2,
|
|
68345
68345
|
writeTrace: writeTrace2,
|
|
68346
68346
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68347
|
-
loadStormConfig: loadStormConfig2
|
|
68347
|
+
loadStormConfig: loadStormConfig2,
|
|
68348
|
+
formatLogMessage: formatLogMessage2
|
|
68348
68349
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68349
68350
|
const stopwatch = getStopwatch2(name);
|
|
68350
68351
|
let options = _options;
|
|
@@ -68418,6 +68419,11 @@ ${Object.keys(options).map(
|
|
|
68418
68419
|
ret
|
|
68419
68420
|
);
|
|
68420
68421
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68422
|
+
writeTrace2(
|
|
68423
|
+
`Failure determined by the ${name} executor
|
|
68424
|
+
${formatLogMessage2(result)}`,
|
|
68425
|
+
config
|
|
68426
|
+
);
|
|
68421
68427
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68422
68428
|
cause: result?.error
|
|
68423
68429
|
});
|
|
@@ -68344,7 +68344,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68344
68344
|
writeSuccess: writeSuccess2,
|
|
68345
68345
|
writeTrace: writeTrace2,
|
|
68346
68346
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68347
|
-
loadStormConfig: loadStormConfig2
|
|
68347
|
+
loadStormConfig: loadStormConfig2,
|
|
68348
|
+
formatLogMessage: formatLogMessage2
|
|
68348
68349
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68349
68350
|
const stopwatch = getStopwatch2(name);
|
|
68350
68351
|
let options = _options;
|
|
@@ -68418,6 +68419,11 @@ ${Object.keys(options).map(
|
|
|
68418
68419
|
ret
|
|
68419
68420
|
);
|
|
68420
68421
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68422
|
+
writeTrace2(
|
|
68423
|
+
`Failure determined by the ${name} executor
|
|
68424
|
+
${formatLogMessage2(result)}`,
|
|
68425
|
+
config
|
|
68426
|
+
);
|
|
68421
68427
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68422
68428
|
cause: result?.error
|
|
68423
68429
|
});
|
|
@@ -68344,7 +68344,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68344
68344
|
writeSuccess: writeSuccess2,
|
|
68345
68345
|
writeTrace: writeTrace2,
|
|
68346
68346
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68347
|
-
loadStormConfig: loadStormConfig2
|
|
68347
|
+
loadStormConfig: loadStormConfig2,
|
|
68348
|
+
formatLogMessage: formatLogMessage2
|
|
68348
68349
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68349
68350
|
const stopwatch = getStopwatch2(name);
|
|
68350
68351
|
let options = _options;
|
|
@@ -68418,6 +68419,11 @@ ${Object.keys(options).map(
|
|
|
68418
68419
|
ret
|
|
68419
68420
|
);
|
|
68420
68421
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68422
|
+
writeTrace2(
|
|
68423
|
+
`Failure determined by the ${name} executor
|
|
68424
|
+
${formatLogMessage2(result)}`,
|
|
68425
|
+
config
|
|
68426
|
+
);
|
|
68421
68427
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68422
68428
|
cause: result?.error
|
|
68423
68429
|
});
|
|
@@ -301609,7 +301609,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
301609
301609
|
writeSuccess: writeSuccess2,
|
|
301610
301610
|
writeTrace: writeTrace2,
|
|
301611
301611
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
301612
|
-
loadStormConfig: loadStormConfig2
|
|
301612
|
+
loadStormConfig: loadStormConfig2,
|
|
301613
|
+
formatLogMessage: formatLogMessage2
|
|
301613
301614
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
301614
301615
|
const stopwatch = getStopwatch2(name);
|
|
301615
301616
|
let options = _options;
|
|
@@ -301683,6 +301684,11 @@ ${Object.keys(options).map(
|
|
|
301683
301684
|
ret
|
|
301684
301685
|
);
|
|
301685
301686
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
301687
|
+
writeTrace2(
|
|
301688
|
+
`Failure determined by the ${name} executor
|
|
301689
|
+
${formatLogMessage2(result)}`,
|
|
301690
|
+
config
|
|
301691
|
+
);
|
|
301686
301692
|
throw new Error(`The ${name} executor failed to run`, {
|
|
301687
301693
|
cause: result?.error
|
|
301688
301694
|
});
|
|
@@ -68343,7 +68343,8 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
68343
68343
|
writeSuccess: writeSuccess2,
|
|
68344
68344
|
writeTrace: writeTrace2,
|
|
68345
68345
|
findWorkspaceRoot: findWorkspaceRoot2,
|
|
68346
|
-
loadStormConfig: loadStormConfig2
|
|
68346
|
+
loadStormConfig: loadStormConfig2,
|
|
68347
|
+
formatLogMessage: formatLogMessage2
|
|
68347
68348
|
} = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
68348
68349
|
const stopwatch = getStopwatch2(name);
|
|
68349
68350
|
let options = _options;
|
|
@@ -68417,6 +68418,11 @@ ${Object.keys(options).map(
|
|
|
68417
68418
|
ret
|
|
68418
68419
|
);
|
|
68419
68420
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
68421
|
+
writeTrace2(
|
|
68422
|
+
`Failure determined by the ${name} executor
|
|
68423
|
+
${formatLogMessage2(result)}`,
|
|
68424
|
+
config
|
|
68425
|
+
);
|
|
68420
68426
|
throw new Error(`The ${name} executor failed to run`, {
|
|
68421
68427
|
cause: result?.error
|
|
68422
68428
|
});
|