@membank/cli 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -812,6 +812,6 @@ program.on("command:*", () => {
812
812
  program.outputHelp();
813
813
  process.exit(1);
814
814
  });
815
- program.parse(process.argv);
815
+ if (!process.argv.includes("--mcp")) program.parse(process.argv);
816
816
  //#endregion
817
817
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@membank/cli",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,8 +17,8 @@
17
17
  "@huggingface/transformers": "^4.2.0",
18
18
  "commander": "^14.0.3",
19
19
  "ora": "^9.4.0",
20
- "@membank/core": "0.0.1",
21
- "@membank/mcp": "0.0.1"
20
+ "@membank/core": "0.0.2",
21
+ "@membank/mcp": "0.0.2"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/node": "^25.6.0",