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 output = `${color}${symbol}${reset} ${redactString(text)}
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.24";
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),
@@ -35,6 +35,11 @@
35
35
  "pattern": "^[a-zA-Z][a-zA-Z0-9_-]*$",
36
36
  "maxLength": 64
37
37
  },
38
+ "name": {
39
+ "type": "string",
40
+ "minLength": 1,
41
+ "maxLength": 100
42
+ },
38
43
  "command": {
39
44
  "type": "string",
40
45
  "minLength": 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mano-coding",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "description": "Mano Coding CLI and toolchain",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -35,6 +35,11 @@
35
35
  "pattern": "^[a-zA-Z][a-zA-Z0-9_-]*$",
36
36
  "maxLength": 64
37
37
  },
38
+ "name": {
39
+ "type": "string",
40
+ "minLength": 1,
41
+ "maxLength": 100
42
+ },
38
43
  "command": {
39
44
  "type": "string",
40
45
  "minLength": 1,