mano-coding 0.1.24 → 0.1.25
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/bin.js
CHANGED
|
@@ -38977,7 +38977,8 @@ var init_spinner = __esm({
|
|
|
38977
38977
|
this.stop();
|
|
38978
38978
|
if (this.enabled) {
|
|
38979
38979
|
const reset = "\x1B[0m";
|
|
38980
|
-
const
|
|
38980
|
+
const cleanText = text.replace(/^[✔✖⚠ℹ\s]+/, "");
|
|
38981
|
+
const output = `${color}${symbol}${reset} ${redactString(cleanText)}
|
|
38981
38982
|
`;
|
|
38982
38983
|
process.stdout.write(output);
|
|
38983
38984
|
}
|
|
@@ -42259,7 +42260,7 @@ import { createRequire as createRequire2 } from "node:module";
|
|
|
42259
42260
|
import { readFileSync as readFileSync4 } from "node:fs";
|
|
42260
42261
|
import { fileURLToPath as fileURLToPath5 } from "node:url";
|
|
42261
42262
|
function resolveVersion() {
|
|
42262
|
-
if (true) return "0.1.
|
|
42263
|
+
if (true) return "0.1.25";
|
|
42263
42264
|
const candidates = [
|
|
42264
42265
|
new URL("../package.json", import.meta.url),
|
|
42265
42266
|
new URL("../../package.json", import.meta.url),
|
package/package.json
CHANGED