@base44-preview/cli 0.0.30-pr.217.2ff8369 → 0.0.30-pr.217.dfb8642
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/dist/cli/index.js +8 -8
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -162808,10 +162808,10 @@ var applyOptions = (object2, options = {}) => {
|
|
|
162808
162808
|
object2.level = options.level === undefined ? colorLevel : options.level;
|
|
162809
162809
|
};
|
|
162810
162810
|
var chalkFactory = (options) => {
|
|
162811
|
-
const
|
|
162812
|
-
applyOptions(
|
|
162813
|
-
Object.setPrototypeOf(
|
|
162814
|
-
return
|
|
162811
|
+
const chalk2 = (...strings) => strings.join(" ");
|
|
162812
|
+
applyOptions(chalk2, options);
|
|
162813
|
+
Object.setPrototypeOf(chalk2, createChalk.prototype);
|
|
162814
|
+
return chalk2;
|
|
162815
162815
|
};
|
|
162816
162816
|
function createChalk(options) {
|
|
162817
162817
|
return chalkFactory(options);
|
|
@@ -162931,9 +162931,9 @@ var applyStyle = (self2, string4) => {
|
|
|
162931
162931
|
return openAll + string4 + closeAll;
|
|
162932
162932
|
};
|
|
162933
162933
|
Object.defineProperties(createChalk.prototype, styles2);
|
|
162934
|
-
var
|
|
162934
|
+
var chalk2 = createChalk();
|
|
162935
162935
|
var chalkStderr = createChalk({ level: stderrColor ? stderrColor.level : 0 });
|
|
162936
|
-
var source_default =
|
|
162936
|
+
var source_default = chalk2;
|
|
162937
162937
|
|
|
162938
162938
|
// src/cli/utils/theme.ts
|
|
162939
162939
|
var theme = {
|
|
@@ -169956,7 +169956,7 @@ function printSummary(results, oauthOutcomes) {
|
|
|
169956
169956
|
M2.info(theme.styles.dim(`Removed: ${removed.join(", ")}`));
|
|
169957
169957
|
}
|
|
169958
169958
|
if (skipped.length > 0) {
|
|
169959
|
-
M2.
|
|
169959
|
+
M2.info(chalk.yellow(` Skipped: ${skipped.join(", ")}`));
|
|
169960
169960
|
}
|
|
169961
169961
|
for (const r2 of failed) {
|
|
169962
169962
|
M2.error(`Failed: ${r2.type}${r2.error ? ` - ${r2.error}` : ""}`);
|
|
@@ -174958,4 +174958,4 @@ export {
|
|
|
174958
174958
|
CLIExitError
|
|
174959
174959
|
};
|
|
174960
174960
|
|
|
174961
|
-
//# debugId=
|
|
174961
|
+
//# debugId=82791EE73BA8132464756E2164756E21
|