@storm-software/workspace-tools 1.42.4 → 1.43.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 +7 -0
- package/index.js +227 -135
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +220 -128
- package/src/executors/design-tokens/executor.js +226 -134
- package/src/executors/tsup/executor.js +214 -122
- package/src/executors/tsup-browser/executor.js +214 -122
- package/src/executors/tsup-neutral/executor.js +214 -122
- package/src/executors/tsup-node/executor.js +214 -122
- package/src/generators/browser-library/generator.js +101 -92
- package/src/generators/config-schema/generator.js +81 -72
- package/src/generators/neutral-library/generator.js +101 -92
- package/src/generators/node-library/generator.js +101 -92
- package/src/generators/preset/generator.js +81 -72
|
@@ -16158,14 +16158,14 @@ var require_share = __commonJS({
|
|
|
16158
16158
|
resetConnection === null || resetConnection === void 0 ? void 0 : resetConnection.unsubscribe();
|
|
16159
16159
|
resetConnection = void 0;
|
|
16160
16160
|
};
|
|
16161
|
-
var
|
|
16161
|
+
var reset2 = function() {
|
|
16162
16162
|
cancelReset();
|
|
16163
16163
|
connection = subject = void 0;
|
|
16164
16164
|
hasCompleted = hasErrored = false;
|
|
16165
16165
|
};
|
|
16166
16166
|
var resetAndUnsubscribe = function() {
|
|
16167
16167
|
var conn = connection;
|
|
16168
|
-
|
|
16168
|
+
reset2();
|
|
16169
16169
|
conn === null || conn === void 0 ? void 0 : conn.unsubscribe();
|
|
16170
16170
|
};
|
|
16171
16171
|
return lift_1.operate(function(source, subscriber) {
|
|
@@ -16189,13 +16189,13 @@ var require_share = __commonJS({
|
|
|
16189
16189
|
error: function(err) {
|
|
16190
16190
|
hasErrored = true;
|
|
16191
16191
|
cancelReset();
|
|
16192
|
-
resetConnection = handleReset(
|
|
16192
|
+
resetConnection = handleReset(reset2, resetOnError, err);
|
|
16193
16193
|
dest.error(err);
|
|
16194
16194
|
},
|
|
16195
16195
|
complete: function() {
|
|
16196
16196
|
hasCompleted = true;
|
|
16197
16197
|
cancelReset();
|
|
16198
|
-
resetConnection = handleReset(
|
|
16198
|
+
resetConnection = handleReset(reset2, resetOnComplete);
|
|
16199
16199
|
dest.complete();
|
|
16200
16200
|
}
|
|
16201
16201
|
});
|
|
@@ -16205,13 +16205,13 @@ var require_share = __commonJS({
|
|
|
16205
16205
|
};
|
|
16206
16206
|
}
|
|
16207
16207
|
exports.share = share;
|
|
16208
|
-
function handleReset(
|
|
16208
|
+
function handleReset(reset2, on) {
|
|
16209
16209
|
var args = [];
|
|
16210
16210
|
for (var _i = 2; _i < arguments.length; _i++) {
|
|
16211
16211
|
args[_i - 2] = arguments[_i];
|
|
16212
16212
|
}
|
|
16213
16213
|
if (on === true) {
|
|
16214
|
-
|
|
16214
|
+
reset2();
|
|
16215
16215
|
return;
|
|
16216
16216
|
}
|
|
16217
16217
|
if (on === false) {
|
|
@@ -16220,7 +16220,7 @@ var require_share = __commonJS({
|
|
|
16220
16220
|
var onSubscriber = new Subscriber_1.SafeSubscriber({
|
|
16221
16221
|
next: function() {
|
|
16222
16222
|
onSubscriber.unsubscribe();
|
|
16223
|
-
|
|
16223
|
+
reset2();
|
|
16224
16224
|
}
|
|
16225
16225
|
});
|
|
16226
16226
|
return innerFrom_1.innerFrom(on.apply(void 0, __spreadArray2([], __read2(args)))).subscribe(onSubscriber);
|
|
@@ -19603,14 +19603,14 @@ var require_templates = __commonJS({
|
|
|
19603
19603
|
}
|
|
19604
19604
|
return results;
|
|
19605
19605
|
}
|
|
19606
|
-
function buildStyle(
|
|
19606
|
+
function buildStyle(chalk3, styles) {
|
|
19607
19607
|
const enabled = {};
|
|
19608
19608
|
for (const layer of styles) {
|
|
19609
19609
|
for (const style of layer.styles) {
|
|
19610
19610
|
enabled[style[0]] = layer.inverse ? null : style.slice(1);
|
|
19611
19611
|
}
|
|
19612
19612
|
}
|
|
19613
|
-
let current =
|
|
19613
|
+
let current = chalk3;
|
|
19614
19614
|
for (const [styleName, styles2] of Object.entries(enabled)) {
|
|
19615
19615
|
if (!Array.isArray(styles2)) {
|
|
19616
19616
|
continue;
|
|
@@ -19622,7 +19622,7 @@ var require_templates = __commonJS({
|
|
|
19622
19622
|
}
|
|
19623
19623
|
return current;
|
|
19624
19624
|
}
|
|
19625
|
-
module2.exports = (
|
|
19625
|
+
module2.exports = (chalk3, temporary) => {
|
|
19626
19626
|
const styles = [];
|
|
19627
19627
|
const chunks = [];
|
|
19628
19628
|
let chunk = [];
|
|
@@ -19632,13 +19632,13 @@ var require_templates = __commonJS({
|
|
|
19632
19632
|
} else if (style) {
|
|
19633
19633
|
const string = chunk.join("");
|
|
19634
19634
|
chunk = [];
|
|
19635
|
-
chunks.push(styles.length === 0 ? string : buildStyle(
|
|
19635
|
+
chunks.push(styles.length === 0 ? string : buildStyle(chalk3, styles)(string));
|
|
19636
19636
|
styles.push({ inverse, styles: parseStyle(style) });
|
|
19637
19637
|
} else if (close) {
|
|
19638
19638
|
if (styles.length === 0) {
|
|
19639
19639
|
throw new Error("Found extraneous } in Chalk template literal");
|
|
19640
19640
|
}
|
|
19641
|
-
chunks.push(buildStyle(
|
|
19641
|
+
chunks.push(buildStyle(chalk3, styles)(chunk.join("")));
|
|
19642
19642
|
chunk = [];
|
|
19643
19643
|
styles.pop();
|
|
19644
19644
|
} else {
|
|
@@ -19686,16 +19686,16 @@ var require_source = __commonJS({
|
|
|
19686
19686
|
}
|
|
19687
19687
|
};
|
|
19688
19688
|
var chalkFactory = (options) => {
|
|
19689
|
-
const
|
|
19690
|
-
applyOptions(
|
|
19691
|
-
|
|
19692
|
-
Object.setPrototypeOf(
|
|
19693
|
-
Object.setPrototypeOf(
|
|
19694
|
-
|
|
19689
|
+
const chalk4 = {};
|
|
19690
|
+
applyOptions(chalk4, options);
|
|
19691
|
+
chalk4.template = (...arguments_) => chalkTag(chalk4.template, ...arguments_);
|
|
19692
|
+
Object.setPrototypeOf(chalk4, Chalk.prototype);
|
|
19693
|
+
Object.setPrototypeOf(chalk4.template, chalk4);
|
|
19694
|
+
chalk4.template.constructor = () => {
|
|
19695
19695
|
throw new Error("`chalk.constructor()` is deprecated. Use `new chalk.Instance()` instead.");
|
|
19696
19696
|
};
|
|
19697
|
-
|
|
19698
|
-
return
|
|
19697
|
+
chalk4.template.Instance = ChalkClass;
|
|
19698
|
+
return chalk4.template;
|
|
19699
19699
|
};
|
|
19700
19700
|
function Chalk(options) {
|
|
19701
19701
|
return chalkFactory(options);
|
|
@@ -19806,7 +19806,7 @@ var require_source = __commonJS({
|
|
|
19806
19806
|
return openAll + string + closeAll;
|
|
19807
19807
|
};
|
|
19808
19808
|
var template;
|
|
19809
|
-
var chalkTag = (
|
|
19809
|
+
var chalkTag = (chalk4, ...strings) => {
|
|
19810
19810
|
const [firstString] = strings;
|
|
19811
19811
|
if (!isArray(firstString) || !isArray(firstString.raw)) {
|
|
19812
19812
|
return strings.join(" ");
|
|
@@ -19822,14 +19822,14 @@ var require_source = __commonJS({
|
|
|
19822
19822
|
if (template === void 0) {
|
|
19823
19823
|
template = require_templates();
|
|
19824
19824
|
}
|
|
19825
|
-
return template(
|
|
19825
|
+
return template(chalk4, parts.join(""));
|
|
19826
19826
|
};
|
|
19827
19827
|
Object.defineProperties(Chalk.prototype, styles);
|
|
19828
|
-
var
|
|
19829
|
-
|
|
19830
|
-
|
|
19831
|
-
|
|
19832
|
-
module2.exports =
|
|
19828
|
+
var chalk3 = Chalk();
|
|
19829
|
+
chalk3.supportsColor = stdoutColor;
|
|
19830
|
+
chalk3.stderr = Chalk({ level: stderrColor ? stderrColor.level : 0 });
|
|
19831
|
+
chalk3.stderr.supportsColor = stderrColor;
|
|
19832
|
+
module2.exports = chalk3;
|
|
19833
19833
|
}
|
|
19834
19834
|
});
|
|
19835
19835
|
|
|
@@ -20478,22 +20478,22 @@ var require_tinycolor = __commonJS({
|
|
|
20478
20478
|
};
|
|
20479
20479
|
}
|
|
20480
20480
|
function rgbToHex(r, g, b, allow3Char) {
|
|
20481
|
-
var
|
|
20482
|
-
if (allow3Char &&
|
|
20483
|
-
return
|
|
20481
|
+
var hex = [pad2(Math.round(r).toString(16)), pad2(Math.round(g).toString(16)), pad2(Math.round(b).toString(16))];
|
|
20482
|
+
if (allow3Char && hex[0].charAt(0) == hex[0].charAt(1) && hex[1].charAt(0) == hex[1].charAt(1) && hex[2].charAt(0) == hex[2].charAt(1)) {
|
|
20483
|
+
return hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0);
|
|
20484
20484
|
}
|
|
20485
|
-
return
|
|
20485
|
+
return hex.join("");
|
|
20486
20486
|
}
|
|
20487
20487
|
function rgbaToHex(r, g, b, a, allow4Char) {
|
|
20488
|
-
var
|
|
20489
|
-
if (allow4Char &&
|
|
20490
|
-
return
|
|
20488
|
+
var hex = [pad2(Math.round(r).toString(16)), pad2(Math.round(g).toString(16)), pad2(Math.round(b).toString(16)), pad2(convertDecimalToHex(a))];
|
|
20489
|
+
if (allow4Char && hex[0].charAt(0) == hex[0].charAt(1) && hex[1].charAt(0) == hex[1].charAt(1) && hex[2].charAt(0) == hex[2].charAt(1) && hex[3].charAt(0) == hex[3].charAt(1)) {
|
|
20490
|
+
return hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0) + hex[3].charAt(0);
|
|
20491
20491
|
}
|
|
20492
|
-
return
|
|
20492
|
+
return hex.join("");
|
|
20493
20493
|
}
|
|
20494
20494
|
function rgbaToArgbHex(r, g, b, a) {
|
|
20495
|
-
var
|
|
20496
|
-
return
|
|
20495
|
+
var hex = [pad2(convertDecimalToHex(a)), pad2(Math.round(r).toString(16)), pad2(Math.round(g).toString(16)), pad2(Math.round(b).toString(16))];
|
|
20496
|
+
return hex.join("");
|
|
20497
20497
|
}
|
|
20498
20498
|
tinycolor.equals = function(color1, color2) {
|
|
20499
20499
|
if (!color1 || !color2)
|
|
@@ -28499,16 +28499,16 @@ var require_template2 = __commonJS({
|
|
|
28499
28499
|
"node_modules/.pnpm/style-dictionary@3.9.1/node_modules/style-dictionary/lib/register/template.js"(exports, module2) {
|
|
28500
28500
|
var fs = require("fs");
|
|
28501
28501
|
var _template = require_template();
|
|
28502
|
-
var
|
|
28502
|
+
var chalk3 = require_source();
|
|
28503
28503
|
var GroupMessages = require_groupMessages();
|
|
28504
28504
|
var REGISTER_TEMPLATE_DEPRECATION_WARNINGS = GroupMessages.GROUP.RegisterTemplateDeprecationWarnings;
|
|
28505
28505
|
function registerTemplate(options) {
|
|
28506
28506
|
if (typeof options.name !== "string")
|
|
28507
|
-
throw new Error("Template name must be a string: " +
|
|
28507
|
+
throw new Error("Template name must be a string: " + chalk3.red(JSON.stringify(options.name)));
|
|
28508
28508
|
if (typeof options.template !== "string")
|
|
28509
|
-
throw new Error("Template path must be a string: " +
|
|
28509
|
+
throw new Error("Template path must be a string: " + chalk3.red(JSON.stringify(options.template)));
|
|
28510
28510
|
if (!fs.existsSync(options.template))
|
|
28511
|
-
throw new Error("Can't find template: " +
|
|
28511
|
+
throw new Error("Can't find template: " + chalk3.red(JSON.stringify(options.template)));
|
|
28512
28512
|
GroupMessages.add(
|
|
28513
28513
|
REGISTER_TEMPLATE_DEPRECATION_WARNINGS,
|
|
28514
28514
|
`${options.name}`
|
|
@@ -29207,7 +29207,7 @@ var require_buildFile = __commonJS({
|
|
|
29207
29207
|
"node_modules/.pnpm/style-dictionary@3.9.1/node_modules/style-dictionary/lib/buildFile.js"(exports, module2) {
|
|
29208
29208
|
var path = require("path");
|
|
29209
29209
|
var fs = require_lib();
|
|
29210
|
-
var
|
|
29210
|
+
var chalk3 = require_source();
|
|
29211
29211
|
var filterProperties = require_filterProperties();
|
|
29212
29212
|
var GroupMessages = require_groupMessages();
|
|
29213
29213
|
var createFormatArgs = require_createFormatArgs();
|
|
@@ -29237,7 +29237,7 @@ var require_buildFile = __commonJS({
|
|
|
29237
29237
|
});
|
|
29238
29238
|
if (filteredProperties.hasOwnProperty("properties") && Object.keys(filteredProperties.properties).length === 0 && filteredProperties.properties.constructor === Object) {
|
|
29239
29239
|
let warnNoFile = `No properties for ${destination}. File not created.`;
|
|
29240
|
-
console.log(
|
|
29240
|
+
console.log(chalk3.keyword("darkorange")(warnNoFile));
|
|
29241
29241
|
return null;
|
|
29242
29242
|
}
|
|
29243
29243
|
var nameCollisionObj = {};
|
|
@@ -29253,13 +29253,13 @@ var require_buildFile = __commonJS({
|
|
|
29253
29253
|
Object.keys(nameCollisionObj).forEach((propertyName) => {
|
|
29254
29254
|
if (nameCollisionObj[propertyName].length > 1) {
|
|
29255
29255
|
let collisions = nameCollisionObj[propertyName].map((properties) => {
|
|
29256
|
-
let propertyPathText =
|
|
29257
|
-
let valueText =
|
|
29256
|
+
let propertyPathText = chalk3.keyword("orangered")(properties.path.join("."));
|
|
29257
|
+
let valueText = chalk3.keyword("darkorange")(properties.value);
|
|
29258
29258
|
return propertyPathText + " " + valueText;
|
|
29259
29259
|
}).join("\n ");
|
|
29260
29260
|
GroupMessages.add(
|
|
29261
29261
|
PROPERTY_NAME_COLLISION_WARNINGS,
|
|
29262
|
-
`Output name ${
|
|
29262
|
+
`Output name ${chalk3.keyword("orangered").bold(propertyName)} was generated by:
|
|
29263
29263
|
${collisions}`
|
|
29264
29264
|
);
|
|
29265
29265
|
}
|
|
@@ -29272,13 +29272,13 @@ var require_buildFile = __commonJS({
|
|
|
29272
29272
|
}), platform, file));
|
|
29273
29273
|
let filteredReferencesCount = GroupMessages.count(GroupMessages.GROUP.FilteredOutputReferences);
|
|
29274
29274
|
if ((nested || propertyNamesCollisionCount === 0) && filteredReferencesCount === 0) {
|
|
29275
|
-
console.log(
|
|
29275
|
+
console.log(chalk3.bold.green(`\u2714\uFE0E ${fullDestination}`));
|
|
29276
29276
|
} else {
|
|
29277
29277
|
console.log(`\u26A0\uFE0F ${fullDestination}`);
|
|
29278
29278
|
if (propertyNamesCollisionCount > 0) {
|
|
29279
29279
|
let propertyNamesCollisionWarnings = GroupMessages.fetchMessages(PROPERTY_NAME_COLLISION_WARNINGS).join("\n ");
|
|
29280
|
-
let title = `While building ${
|
|
29281
|
-
let help =
|
|
29280
|
+
let title = `While building ${chalk3.keyword("orangered").bold(destination)}, token collisions were found; output may be unexpected.`;
|
|
29281
|
+
let help = chalk3.keyword("orange")([
|
|
29282
29282
|
"This many-to-one issue is usually caused by some combination of:",
|
|
29283
29283
|
"* conflicting or similar paths/names in property definitions",
|
|
29284
29284
|
"* platform transforms/transformGroups affecting names, especially when removing specificity",
|
|
@@ -29287,18 +29287,18 @@ var require_buildFile = __commonJS({
|
|
|
29287
29287
|
let warn = `${title}
|
|
29288
29288
|
${propertyNamesCollisionWarnings}
|
|
29289
29289
|
${help}`;
|
|
29290
|
-
console.log(
|
|
29290
|
+
console.log(chalk3.keyword("darkorange").bold(warn));
|
|
29291
29291
|
}
|
|
29292
29292
|
if (filteredReferencesCount > 0) {
|
|
29293
29293
|
let filteredReferencesWarnings = GroupMessages.flush(GroupMessages.GROUP.FilteredOutputReferences).join("\n ");
|
|
29294
|
-
let title = `While building ${
|
|
29295
|
-
let help =
|
|
29294
|
+
let title = `While building ${chalk3.keyword("orangered").bold(destination)}, filtered out token references were found; output may be unexpected. Here are the references that are used but not defined in the file`;
|
|
29295
|
+
let help = chalk3.keyword("orange")([
|
|
29296
29296
|
"This is caused when combining a filter and `outputReferences`."
|
|
29297
29297
|
].join("\n "));
|
|
29298
29298
|
let warn = `${title}
|
|
29299
29299
|
${filteredReferencesWarnings}
|
|
29300
29300
|
${help}`;
|
|
29301
|
-
console.log(
|
|
29301
|
+
console.log(chalk3.keyword("darkorange").bold(warn));
|
|
29302
29302
|
}
|
|
29303
29303
|
}
|
|
29304
29304
|
}
|
|
@@ -29465,7 +29465,7 @@ var require_buildAllPlatforms = __commonJS({
|
|
|
29465
29465
|
var require_cleanFile = __commonJS({
|
|
29466
29466
|
"node_modules/.pnpm/style-dictionary@3.9.1/node_modules/style-dictionary/lib/cleanFile.js"(exports, module2) {
|
|
29467
29467
|
var fs = require_lib();
|
|
29468
|
-
var
|
|
29468
|
+
var chalk3 = require_source();
|
|
29469
29469
|
function cleanFile(file = {}, platform = {}) {
|
|
29470
29470
|
var { destination } = file;
|
|
29471
29471
|
if (typeof destination !== "string")
|
|
@@ -29474,11 +29474,11 @@ var require_cleanFile = __commonJS({
|
|
|
29474
29474
|
destination = platform.buildPath + destination;
|
|
29475
29475
|
}
|
|
29476
29476
|
if (!fs.existsSync(destination)) {
|
|
29477
|
-
console.log(
|
|
29477
|
+
console.log(chalk3.bold.red("!") + " " + destination + ", does not exist");
|
|
29478
29478
|
return;
|
|
29479
29479
|
}
|
|
29480
29480
|
fs.unlinkSync(destination);
|
|
29481
|
-
console.log(
|
|
29481
|
+
console.log(chalk3.bold.red("-") + " " + destination);
|
|
29482
29482
|
}
|
|
29483
29483
|
module2.exports = cleanFile;
|
|
29484
29484
|
}
|
|
@@ -29509,7 +29509,7 @@ var require_cleanDir = __commonJS({
|
|
|
29509
29509
|
"node_modules/.pnpm/style-dictionary@3.9.1/node_modules/style-dictionary/lib/cleanDir.js"(exports, module2) {
|
|
29510
29510
|
var path = require("path");
|
|
29511
29511
|
var fs = require_lib();
|
|
29512
|
-
var
|
|
29512
|
+
var chalk3 = require_source();
|
|
29513
29513
|
function cleanDir(file = {}, platform = {}) {
|
|
29514
29514
|
var { destination } = file;
|
|
29515
29515
|
if (typeof destination !== "string")
|
|
@@ -29521,7 +29521,7 @@ var require_cleanDir = __commonJS({
|
|
|
29521
29521
|
while (dirname) {
|
|
29522
29522
|
if (fs.existsSync(dirname)) {
|
|
29523
29523
|
if (fs.readdirSync(dirname).length === 0) {
|
|
29524
|
-
console.log(
|
|
29524
|
+
console.log(chalk3.bold.red("-") + " " + dirname);
|
|
29525
29525
|
fs.rmdirSync(dirname);
|
|
29526
29526
|
} else {
|
|
29527
29527
|
break;
|
|
@@ -37595,7 +37595,7 @@ ${collisions}
|
|
|
37595
37595
|
// node_modules/.pnpm/style-dictionary@3.9.1/node_modules/style-dictionary/index.js
|
|
37596
37596
|
var require_style_dictionary = __commonJS({
|
|
37597
37597
|
"node_modules/.pnpm/style-dictionary@3.9.1/node_modules/style-dictionary/index.js"(exports, module2) {
|
|
37598
|
-
var
|
|
37598
|
+
var chalk3 = require_source();
|
|
37599
37599
|
var GroupMessages = require_groupMessages();
|
|
37600
37600
|
var TEMPLATE_DEPRECATION_WARNINGS = GroupMessages.GROUP.TemplateDeprecationWarnings;
|
|
37601
37601
|
var REGISTER_TEMPLATE_DEPRECATION_WARNINGS = GroupMessages.GROUP.RegisterTemplateDeprecationWarnings;
|
|
@@ -37637,7 +37637,7 @@ var require_style_dictionary = __commonJS({
|
|
|
37637
37637
|
process.on("exit", function() {
|
|
37638
37638
|
if (GroupMessages.count(TEMPLATE_DEPRECATION_WARNINGS) > 0) {
|
|
37639
37639
|
var template_warnings = GroupMessages.flush(TEMPLATE_DEPRECATION_WARNINGS).join("\n ");
|
|
37640
|
-
console.log(
|
|
37640
|
+
console.log(chalk3.bold.yellow(`
|
|
37641
37641
|
\u26A0\uFE0F DEPRECATION WARNING \uFE0F\uFE0F\uFE0F\uFE0F\uFE0F\u26A0\uFE0F
|
|
37642
37642
|
Templates are deprecated and will be removed, please update your config to use formats.
|
|
37643
37643
|
This is an example of how to update your config.json:
|
|
@@ -37660,7 +37660,7 @@ Your current config uses the following templates:
|
|
|
37660
37660
|
}
|
|
37661
37661
|
if (GroupMessages.count(REGISTER_TEMPLATE_DEPRECATION_WARNINGS) > 0) {
|
|
37662
37662
|
var register_template_warnings = GroupMessages.flush(REGISTER_TEMPLATE_DEPRECATION_WARNINGS).join("\n ");
|
|
37663
|
-
console.log(
|
|
37663
|
+
console.log(chalk3.bold.yellow(`
|
|
37664
37664
|
\u26A0\uFE0F DEPRECATION WARNING \uFE0F\uFE0F\uFE0F\uFE0F\uFE0F\u26A0\uFE0F
|
|
37665
37665
|
The registerTemplate method is deprecated and will be removed, please
|
|
37666
37666
|
migrate to registerFormat. You can use any templating engine you would
|
|
@@ -37691,7 +37691,7 @@ custom templates:
|
|
|
37691
37691
|
}
|
|
37692
37692
|
if (GroupMessages.count(SASS_MAP_FORMAT_DEPRECATION_WARNINGS) > 0) {
|
|
37693
37693
|
var sass_map_format_warnings = GroupMessages.flush(SASS_MAP_FORMAT_DEPRECATION_WARNINGS).join("\n ");
|
|
37694
|
-
console.log(
|
|
37694
|
+
console.log(chalk3.bold.cyan(`
|
|
37695
37695
|
\u{1F514} NOTICE \u{1F514}
|
|
37696
37696
|
The formats 'sass/map-***' have been renamed to 'scss/map-***', please update your config.
|
|
37697
37697
|
In the future 'sass/map-***' formats may output actual Sass instead of SCSS, which may break your current configuration.
|
|
@@ -45010,7 +45010,7 @@ var require_acorn = __commonJS({
|
|
|
45010
45010
|
this.groupNames = [];
|
|
45011
45011
|
this.backReferenceNames = [];
|
|
45012
45012
|
};
|
|
45013
|
-
RegExpValidationState.prototype.reset = function
|
|
45013
|
+
RegExpValidationState.prototype.reset = function reset2(start, pattern, flags) {
|
|
45014
45014
|
var unicodeSets = flags.indexOf("v") !== -1;
|
|
45015
45015
|
var unicode = flags.indexOf("u") !== -1;
|
|
45016
45016
|
this.start = start | 0;
|
|
@@ -49631,7 +49631,7 @@ ${getTopLevelAwaitHint()}`);
|
|
|
49631
49631
|
nodeReplServer = repl;
|
|
49632
49632
|
context = repl.context;
|
|
49633
49633
|
const resetEval = appendToEvalState(state, "");
|
|
49634
|
-
function
|
|
49634
|
+
function reset2() {
|
|
49635
49635
|
resetEval();
|
|
49636
49636
|
runInContext("exports = module.exports", state.path, context);
|
|
49637
49637
|
if (forceToBeModule) {
|
|
@@ -49643,8 +49643,8 @@ ${module_1.builtinModules.filter((name) => !name.startsWith("_") && !name.includ
|
|
|
49643
49643
|
`;
|
|
49644
49644
|
}
|
|
49645
49645
|
}
|
|
49646
|
-
|
|
49647
|
-
repl.on("reset",
|
|
49646
|
+
reset2();
|
|
49647
|
+
repl.on("reset", reset2);
|
|
49648
49648
|
repl.defineCommand("type", {
|
|
49649
49649
|
help: "Check the type of a TypeScript identifier",
|
|
49650
49650
|
action: function(identifier) {
|
|
@@ -56614,14 +56614,14 @@ var require_templates2 = __commonJS({
|
|
|
56614
56614
|
}
|
|
56615
56615
|
return results;
|
|
56616
56616
|
}
|
|
56617
|
-
function buildStyle(
|
|
56617
|
+
function buildStyle(chalk3, styles) {
|
|
56618
56618
|
const enabled = {};
|
|
56619
56619
|
for (const layer of styles) {
|
|
56620
56620
|
for (const style of layer.styles) {
|
|
56621
56621
|
enabled[style[0]] = layer.inverse ? null : style.slice(1);
|
|
56622
56622
|
}
|
|
56623
56623
|
}
|
|
56624
|
-
let current =
|
|
56624
|
+
let current = chalk3;
|
|
56625
56625
|
for (const styleName of Object.keys(enabled)) {
|
|
56626
56626
|
if (Array.isArray(enabled[styleName])) {
|
|
56627
56627
|
if (!(styleName in current)) {
|
|
@@ -56636,7 +56636,7 @@ var require_templates2 = __commonJS({
|
|
|
56636
56636
|
}
|
|
56637
56637
|
return current;
|
|
56638
56638
|
}
|
|
56639
|
-
module2.exports = (
|
|
56639
|
+
module2.exports = (chalk3, tmp) => {
|
|
56640
56640
|
const styles = [];
|
|
56641
56641
|
const chunks = [];
|
|
56642
56642
|
let chunk = [];
|
|
@@ -56646,13 +56646,13 @@ var require_templates2 = __commonJS({
|
|
|
56646
56646
|
} else if (style) {
|
|
56647
56647
|
const str = chunk.join("");
|
|
56648
56648
|
chunk = [];
|
|
56649
|
-
chunks.push(styles.length === 0 ? str : buildStyle(
|
|
56649
|
+
chunks.push(styles.length === 0 ? str : buildStyle(chalk3, styles)(str));
|
|
56650
56650
|
styles.push({ inverse, styles: parseStyle(style) });
|
|
56651
56651
|
} else if (close) {
|
|
56652
56652
|
if (styles.length === 0) {
|
|
56653
56653
|
throw new Error("Found extraneous } in Chalk template literal");
|
|
56654
56654
|
}
|
|
56655
|
-
chunks.push(buildStyle(
|
|
56655
|
+
chunks.push(buildStyle(chalk3, styles)(chunk.join("")));
|
|
56656
56656
|
chunk = [];
|
|
56657
56657
|
styles.pop();
|
|
56658
56658
|
} else {
|
|
@@ -56689,16 +56689,16 @@ var require_chalk = __commonJS({
|
|
|
56689
56689
|
}
|
|
56690
56690
|
function Chalk(options) {
|
|
56691
56691
|
if (!this || !(this instanceof Chalk) || this.template) {
|
|
56692
|
-
const
|
|
56693
|
-
applyOptions(
|
|
56694
|
-
|
|
56692
|
+
const chalk3 = {};
|
|
56693
|
+
applyOptions(chalk3, options);
|
|
56694
|
+
chalk3.template = function() {
|
|
56695
56695
|
const args = [].slice.call(arguments);
|
|
56696
|
-
return chalkTag.apply(null, [
|
|
56696
|
+
return chalkTag.apply(null, [chalk3.template].concat(args));
|
|
56697
56697
|
};
|
|
56698
|
-
Object.setPrototypeOf(
|
|
56699
|
-
Object.setPrototypeOf(
|
|
56700
|
-
|
|
56701
|
-
return
|
|
56698
|
+
Object.setPrototypeOf(chalk3, Chalk.prototype);
|
|
56699
|
+
Object.setPrototypeOf(chalk3.template, chalk3);
|
|
56700
|
+
chalk3.template.constructor = Chalk;
|
|
56701
|
+
return chalk3.template;
|
|
56702
56702
|
}
|
|
56703
56703
|
applyOptions(this, options);
|
|
56704
56704
|
}
|
|
@@ -56817,7 +56817,7 @@ var require_chalk = __commonJS({
|
|
|
56817
56817
|
ansiStyles.dim.open = originalDim;
|
|
56818
56818
|
return str;
|
|
56819
56819
|
}
|
|
56820
|
-
function chalkTag(
|
|
56820
|
+
function chalkTag(chalk3, strings) {
|
|
56821
56821
|
if (!Array.isArray(strings)) {
|
|
56822
56822
|
return [].slice.call(arguments, 1).join(" ");
|
|
56823
56823
|
}
|
|
@@ -56827,7 +56827,7 @@ var require_chalk = __commonJS({
|
|
|
56827
56827
|
parts.push(String(args[i - 1]).replace(/[{}\\]/g, "\\$&"));
|
|
56828
56828
|
parts.push(String(strings.raw[i]));
|
|
56829
56829
|
}
|
|
56830
|
-
return template(
|
|
56830
|
+
return template(chalk3, parts.join(""));
|
|
56831
56831
|
}
|
|
56832
56832
|
Object.defineProperties(Chalk.prototype, styles);
|
|
56833
56833
|
module2.exports = Chalk();
|
|
@@ -56873,17 +56873,17 @@ var require_lib7 = __commonJS({
|
|
|
56873
56873
|
return n.default = e, t && t.set(e, n), n;
|
|
56874
56874
|
}
|
|
56875
56875
|
var sometimesKeywords = /* @__PURE__ */ new Set(["as", "async", "from", "get", "of", "set"]);
|
|
56876
|
-
function getDefs(
|
|
56876
|
+
function getDefs(chalk3) {
|
|
56877
56877
|
return {
|
|
56878
|
-
keyword:
|
|
56879
|
-
capitalized:
|
|
56880
|
-
jsxIdentifier:
|
|
56881
|
-
punctuator:
|
|
56882
|
-
number:
|
|
56883
|
-
string:
|
|
56884
|
-
regex:
|
|
56885
|
-
comment:
|
|
56886
|
-
invalid:
|
|
56878
|
+
keyword: chalk3.cyan,
|
|
56879
|
+
capitalized: chalk3.yellow,
|
|
56880
|
+
jsxIdentifier: chalk3.yellow,
|
|
56881
|
+
punctuator: chalk3.yellow,
|
|
56882
|
+
number: chalk3.magenta,
|
|
56883
|
+
string: chalk3.green,
|
|
56884
|
+
regex: chalk3.magenta,
|
|
56885
|
+
comment: chalk3.grey,
|
|
56886
|
+
invalid: chalk3.white.bgRed.bold
|
|
56887
56887
|
};
|
|
56888
56888
|
}
|
|
56889
56889
|
var NEWLINE = /\r\n|[\n\r\u2028\u2029]/;
|
|
@@ -57014,11 +57014,11 @@ var require_lib8 = __commonJS({
|
|
|
57014
57014
|
return _chalk.default;
|
|
57015
57015
|
}
|
|
57016
57016
|
var deprecationWarningShown = false;
|
|
57017
|
-
function getDefs(
|
|
57017
|
+
function getDefs(chalk3) {
|
|
57018
57018
|
return {
|
|
57019
|
-
gutter:
|
|
57020
|
-
marker:
|
|
57021
|
-
message:
|
|
57019
|
+
gutter: chalk3.grey,
|
|
57020
|
+
marker: chalk3.red.bold,
|
|
57021
|
+
message: chalk3.red.bold
|
|
57022
57022
|
};
|
|
57023
57023
|
}
|
|
57024
57024
|
var NEWLINE = /\r\n|[\n\r\u2028\u2029]/;
|
|
@@ -57080,8 +57080,8 @@ var require_lib8 = __commonJS({
|
|
|
57080
57080
|
}
|
|
57081
57081
|
function codeFrameColumns(rawLines, loc, opts = {}) {
|
|
57082
57082
|
const highlighted = (opts.highlightCode || opts.forceColor) && (0, _highlight.shouldHighlight)(opts);
|
|
57083
|
-
const
|
|
57084
|
-
const defs = getDefs(
|
|
57083
|
+
const chalk3 = getChalk(opts.forceColor);
|
|
57084
|
+
const defs = getDefs(chalk3);
|
|
57085
57085
|
const maybeHighlight = (chalkFn, string) => {
|
|
57086
57086
|
return highlighted ? chalkFn(string) : string;
|
|
57087
57087
|
};
|
|
@@ -57120,7 +57120,7 @@ var require_lib8 = __commonJS({
|
|
|
57120
57120
|
${frame}`;
|
|
57121
57121
|
}
|
|
57122
57122
|
if (highlighted) {
|
|
57123
|
-
return
|
|
57123
|
+
return chalk3.reset(frame);
|
|
57124
57124
|
} else {
|
|
57125
57125
|
return frame;
|
|
57126
57126
|
}
|
|
@@ -61444,6 +61444,7 @@ var LogLevel = {
|
|
|
61444
61444
|
ERROR: 20,
|
|
61445
61445
|
WARN: 30,
|
|
61446
61446
|
INFO: 40,
|
|
61447
|
+
SUCCESS: 45,
|
|
61447
61448
|
DEBUG: 60,
|
|
61448
61449
|
TRACE: 70,
|
|
61449
61450
|
ALL: 100
|
|
@@ -65241,6 +65242,8 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
65241
65242
|
// packages/config-tools/src/utilities/get-log-level.ts
|
|
65242
65243
|
var getLogLevel = (label) => {
|
|
65243
65244
|
switch (label) {
|
|
65245
|
+
case "all":
|
|
65246
|
+
return LogLevel.ALL;
|
|
65244
65247
|
case "trace":
|
|
65245
65248
|
return LogLevel.TRACE;
|
|
65246
65249
|
case "debug":
|
|
@@ -65260,6 +65263,9 @@ var getLogLevel = (label) => {
|
|
|
65260
65263
|
}
|
|
65261
65264
|
};
|
|
65262
65265
|
var getLogLevelLabel = (logLevel) => {
|
|
65266
|
+
if (logLevel >= LogLevel.ALL) {
|
|
65267
|
+
return LogLevelLabel.ALL;
|
|
65268
|
+
}
|
|
65263
65269
|
if (logLevel >= LogLevel.TRACE) {
|
|
65264
65270
|
return LogLevelLabel.TRACE;
|
|
65265
65271
|
}
|
|
@@ -65284,6 +65290,89 @@ var getLogLevelLabel = (logLevel) => {
|
|
|
65284
65290
|
return LogLevelLabel.INFO;
|
|
65285
65291
|
};
|
|
65286
65292
|
|
|
65293
|
+
// packages/config-tools/src/utilities/logger.ts
|
|
65294
|
+
var chalk = __toESM(require_source(), 1);
|
|
65295
|
+
var getLogFn = (config = {}, logLevel = LogLevel.INFO) => {
|
|
65296
|
+
if (typeof logLevel === "number" && (logLevel >= getLogLevel(config.logLevel ?? process.env?.STORM_LOG_LEVEL) || logLevel <= LogLevel.SILENT) || typeof logLevel === "string" && getLogLevel(logLevel) >= getLogLevel(config.logLevel ?? process.env?.STORM_LOG_LEVEL)) {
|
|
65297
|
+
return (message) => {
|
|
65298
|
+
};
|
|
65299
|
+
}
|
|
65300
|
+
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel || typeof logLevel === "string" && LogLevel.FATAL >= getLogLevel(logLevel)) {
|
|
65301
|
+
return (message) => {
|
|
65302
|
+
console.error(
|
|
65303
|
+
` ${chalk.bold.bgHex(config?.colors?.fatal ? config.colors.fatal : "#1fb2a6").inverse("\n\n \u{1F480} Fatal ")} ${chalk.reset.hex(
|
|
65304
|
+
config?.colors?.fatal ? config.colors.fatal : "#1fb2a6"
|
|
65305
|
+
)(message)}
|
|
65306
|
+
`
|
|
65307
|
+
);
|
|
65308
|
+
};
|
|
65309
|
+
}
|
|
65310
|
+
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel || typeof logLevel === "string" && LogLevel.ERROR >= getLogLevel(logLevel)) {
|
|
65311
|
+
return (message) => {
|
|
65312
|
+
console.error(
|
|
65313
|
+
` ${chalk.bold.bgHex(config?.colors?.error ? config.colors.error : "#7d1a1a").inverse("\n\n \u{1F6D1} Error ")} ${chalk.reset.hex(
|
|
65314
|
+
config?.colors?.error ? config.colors.error : "#7d1a1a"
|
|
65315
|
+
)(message)}
|
|
65316
|
+
`
|
|
65317
|
+
);
|
|
65318
|
+
};
|
|
65319
|
+
}
|
|
65320
|
+
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel || typeof logLevel === "string" && LogLevel.WARN >= getLogLevel(logLevel)) {
|
|
65321
|
+
return (message) => {
|
|
65322
|
+
console.warn(
|
|
65323
|
+
` ${chalk.bold.bgHex(config?.colors?.warning ? config.colors.warning : "#fcc419").inverse("\n\n \u26A0\uFE0F Warn ")} ${chalk.reset.hex(
|
|
65324
|
+
config?.colors?.warning ? config.colors.warning : "#fcc419"
|
|
65325
|
+
)(message)}
|
|
65326
|
+
`
|
|
65327
|
+
);
|
|
65328
|
+
};
|
|
65329
|
+
}
|
|
65330
|
+
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
|
|
65331
|
+
return (message) => {
|
|
65332
|
+
console.info(
|
|
65333
|
+
` ${chalk.bold.bgHex(config?.colors?.info ? config.colors.info : "#0ea5e9").inverse("\n\n \u{1F4EC} Info ")} ${chalk.reset.hex(
|
|
65334
|
+
config?.colors?.info ? config.colors.info : "#0ea5e9"
|
|
65335
|
+
)(message)}
|
|
65336
|
+
`
|
|
65337
|
+
);
|
|
65338
|
+
};
|
|
65339
|
+
}
|
|
65340
|
+
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
|
|
65341
|
+
return (message) => {
|
|
65342
|
+
console.info(
|
|
65343
|
+
` ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").inverse("\n\n \u{1F389} Success ")} ${chalk.reset.hex(
|
|
65344
|
+
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
65345
|
+
)(message)}
|
|
65346
|
+
`
|
|
65347
|
+
);
|
|
65348
|
+
};
|
|
65349
|
+
}
|
|
65350
|
+
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel || typeof logLevel === "string" && LogLevel.DEBUG >= getLogLevel(logLevel)) {
|
|
65351
|
+
return (message) => {
|
|
65352
|
+
console.debug(
|
|
65353
|
+
` ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").inverse("\n\n \u{1F9EA} Debug ")} ${chalk.reset.hex(
|
|
65354
|
+
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
65355
|
+
)(message)}
|
|
65356
|
+
`
|
|
65357
|
+
);
|
|
65358
|
+
};
|
|
65359
|
+
}
|
|
65360
|
+
return (message) => {
|
|
65361
|
+
console.log(
|
|
65362
|
+
` ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").inverse("\n\n \u{1F4E2} System ")} ${chalk.bold.hex(
|
|
65363
|
+
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
65364
|
+
)(message)}
|
|
65365
|
+
`
|
|
65366
|
+
);
|
|
65367
|
+
};
|
|
65368
|
+
};
|
|
65369
|
+
var writeFatal = (config, message) => getLogFn(config, LogLevel.FATAL)(message);
|
|
65370
|
+
var writeError = (config, message) => getLogFn(config, LogLevel.ERROR)(message);
|
|
65371
|
+
var writeInfo = (config, message) => getLogFn(config, LogLevel.INFO)(message);
|
|
65372
|
+
var writeSuccess = (config, message) => getLogFn(config, LogLevel.SUCCESS)(message);
|
|
65373
|
+
var writeDebug = (config, message) => getLogFn(config, LogLevel.DEBUG)(message);
|
|
65374
|
+
var writeTrace = (config, message) => getLogFn(config, LogLevel.TRACE)(message);
|
|
65375
|
+
|
|
65287
65376
|
// packages/config-tools/src/env/get-env.ts
|
|
65288
65377
|
var getExtensionEnv = (extensionName) => {
|
|
65289
65378
|
const prefix = `STORM_EXTENSION_${extensionName.toUpperCase()}_`;
|
|
@@ -65486,7 +65575,7 @@ var setConfigEnv = (config) => {
|
|
|
65486
65575
|
};
|
|
65487
65576
|
|
|
65488
65577
|
// packages/workspace-tools/src/base/base-executor.ts
|
|
65489
|
-
var
|
|
65578
|
+
var chalk2 = __toESM(require_source());
|
|
65490
65579
|
|
|
65491
65580
|
// packages/workspace-tools/src/utils/get-workspace-root.ts
|
|
65492
65581
|
var import_find_workspace_root2 = require("nx/src/utils/find-workspace-root.js");
|
|
@@ -65577,10 +65666,10 @@ var applyWorkspaceTokens = (options, config, tokenizerFn) => {
|
|
|
65577
65666
|
var withRunExecutor = (name, executorFn, executorOptions) => async (_options, context) => {
|
|
65578
65667
|
const startTime = Date.now();
|
|
65579
65668
|
let options = _options;
|
|
65669
|
+
let config;
|
|
65580
65670
|
try {
|
|
65581
|
-
|
|
65582
|
-
|
|
65583
|
-
`));
|
|
65671
|
+
writeInfo(config, `\u26A1 Running the ${name} executor...
|
|
65672
|
+
`);
|
|
65584
65673
|
if (!context.projectsConfigurations?.projects || !context.projectName || !context.projectsConfigurations.projects[context.projectName]) {
|
|
65585
65674
|
throw new Error(
|
|
65586
65675
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
@@ -65590,35 +65679,37 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
65590
65679
|
const projectRoot = context.projectsConfigurations.projects[context.projectName].root;
|
|
65591
65680
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName].sourceRoot;
|
|
65592
65681
|
const projectName = context.projectsConfigurations.projects[context.projectName].name;
|
|
65593
|
-
let config;
|
|
65594
65682
|
if (!executorOptions.skipReadingConfig) {
|
|
65595
|
-
|
|
65596
|
-
|
|
65597
|
-
|
|
65598
|
-
-
|
|
65599
|
-
-
|
|
65600
|
-
-
|
|
65601
|
-
|
|
65683
|
+
writeDebug(
|
|
65684
|
+
config,
|
|
65685
|
+
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
65686
|
+
- workspaceRoot: ${workspaceRoot}
|
|
65687
|
+
- projectRoot: ${projectRoot}
|
|
65688
|
+
- sourceRoot: ${sourceRoot}
|
|
65689
|
+
- projectName: ${projectName}
|
|
65690
|
+
`
|
|
65602
65691
|
);
|
|
65603
65692
|
config = getDefaultConfig({
|
|
65604
65693
|
...await getConfigFile(),
|
|
65605
65694
|
...getConfigEnv()
|
|
65606
65695
|
});
|
|
65607
65696
|
setConfigEnv(config);
|
|
65608
|
-
|
|
65609
|
-
|
|
65610
|
-
|
|
65611
|
-
${Object.keys(process.env).map((key) => ` - ${key}=${process.env[key]}`).join("\n")}
|
|
65612
|
-
`
|
|
65613
|
-
)
|
|
65697
|
+
writeTrace(
|
|
65698
|
+
config,
|
|
65699
|
+
`Loaded Storm config into env:
|
|
65700
|
+
${Object.keys(process.env).map((key) => ` - ${key}=${JSON.stringify(process.env[key])}`).join("\n")}`
|
|
65614
65701
|
);
|
|
65615
65702
|
}
|
|
65616
65703
|
if (executorOptions?.hooks?.applyDefaultOptions) {
|
|
65617
|
-
|
|
65704
|
+
writeDebug(config, "Running the applyDefaultOptions hook...");
|
|
65618
65705
|
options = await Promise.resolve(executorOptions.hooks.applyDefaultOptions(options, config));
|
|
65619
|
-
|
|
65706
|
+
writeDebug(config, "Completed the applyDefaultOptions hook");
|
|
65620
65707
|
}
|
|
65621
|
-
|
|
65708
|
+
writeTrace(
|
|
65709
|
+
config,
|
|
65710
|
+
`Executor schema options \u2699\uFE0F
|
|
65711
|
+
${Object.keys(options).map((key) => ` - ${key}=${JSON.stringify(options[key])}`).join("\n")}`
|
|
65712
|
+
);
|
|
65622
65713
|
const tokenized = applyWorkspaceTokens(
|
|
65623
65714
|
options,
|
|
65624
65715
|
{
|
|
@@ -65633,9 +65724,9 @@ ${Object.keys(process.env).map((key) => ` - ${key}=${process.env[key]}`).join("\
|
|
|
65633
65724
|
applyWorkspaceExecutorTokens
|
|
65634
65725
|
);
|
|
65635
65726
|
if (executorOptions?.hooks?.preProcess) {
|
|
65636
|
-
|
|
65727
|
+
writeDebug(config, "Running the preProcess hook...");
|
|
65637
65728
|
await Promise.resolve(executorOptions.hooks.preProcess(tokenized, config));
|
|
65638
|
-
|
|
65729
|
+
writeDebug(config, "Completed the preProcess hook");
|
|
65639
65730
|
}
|
|
65640
65731
|
const result = await Promise.resolve(executorFn(tokenized, context, config));
|
|
65641
65732
|
if (result && (!result.success || result.error && result?.error?.message && typeof result?.error?.message === "string" && result?.error?.name && typeof result?.error?.name === "string")) {
|
|
@@ -65644,31 +65735,32 @@ ${Object.keys(process.env).map((key) => ` - ${key}=${process.env[key]}`).join("\
|
|
|
65644
65735
|
});
|
|
65645
65736
|
}
|
|
65646
65737
|
if (executorOptions?.hooks?.postProcess) {
|
|
65647
|
-
|
|
65738
|
+
writeDebug(config, "Running the postProcess hook...");
|
|
65648
65739
|
await Promise.resolve(executorOptions.hooks.postProcess(config));
|
|
65649
|
-
|
|
65740
|
+
writeDebug(config, "Completed the postProcess hook");
|
|
65650
65741
|
}
|
|
65651
|
-
|
|
65652
|
-
|
|
65653
|
-
|
|
65654
|
-
\u{1F389} Successfully completed running the ${name} executor!
|
|
65655
|
-
|
|
65656
|
-
`)
|
|
65657
|
-
);
|
|
65742
|
+
writeSuccess(config, `Completed running the ${name} task executor!
|
|
65743
|
+
`);
|
|
65658
65744
|
return {
|
|
65659
65745
|
success: true
|
|
65660
65746
|
};
|
|
65661
65747
|
} catch (error) {
|
|
65662
|
-
|
|
65663
|
-
|
|
65664
|
-
error
|
|
65748
|
+
writeFatal(
|
|
65749
|
+
config,
|
|
65750
|
+
"A fatal error occurred while running the executor - the process was forced to terminate"
|
|
65751
|
+
);
|
|
65752
|
+
writeError(
|
|
65753
|
+
config,
|
|
65754
|
+
`An exception was thrown in the executor's process
|
|
65755
|
+
- Details: ${error.message}
|
|
65756
|
+
- Stacktrace: ${error.stack}`
|
|
65665
65757
|
);
|
|
65666
65758
|
return {
|
|
65667
65759
|
success: false
|
|
65668
65760
|
};
|
|
65669
65761
|
} finally {
|
|
65670
65762
|
console.info(
|
|
65671
|
-
|
|
65763
|
+
chalk2.dim(
|
|
65672
65764
|
`\u23F1\uFE0F The${name ? ` ${name}` : ""} generator took ${Date.now() - startTime}ms to complete`
|
|
65673
65765
|
)
|
|
65674
65766
|
);
|