@react-grab/cli 0.1.35 → 0.1.36
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.cjs +6 -6
- package/dist/cli.js +6 -6
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -587,7 +587,7 @@ const promptMcpInstall = async () => {
|
|
|
587
587
|
};
|
|
588
588
|
//#endregion
|
|
589
589
|
//#region src/commands/add.ts
|
|
590
|
-
const VERSION$5 = "0.1.
|
|
590
|
+
const VERSION$5 = "0.1.36";
|
|
591
591
|
const add = new commander.Command().name("add").alias("install").description("connect React Grab to your agent via MCP").argument("[agent]", "agent to connect (mcp)").option("-y, --yes", "skip confirmation prompts", false).option("-c, --cwd <cwd>", "working directory (defaults to current directory)", process.cwd()).action(async (agentArg, opts) => {
|
|
592
592
|
console.log(`${picocolors.default.magenta("✿")} ${picocolors.default.bold("React Grab")} ${picocolors.default.gray(VERSION$5)}`);
|
|
593
593
|
console.log();
|
|
@@ -1217,7 +1217,7 @@ const formatActivationKeyDisplay = (activationKey) => {
|
|
|
1217
1217
|
};
|
|
1218
1218
|
//#endregion
|
|
1219
1219
|
//#region src/commands/configure.ts
|
|
1220
|
-
const VERSION$4 = "0.1.
|
|
1220
|
+
const VERSION$4 = "0.1.36";
|
|
1221
1221
|
const isMac = process.platform === "darwin";
|
|
1222
1222
|
const META_LABEL = isMac ? "Cmd" : "Win";
|
|
1223
1223
|
const ALT_LABEL = isMac ? "Option" : "Alt";
|
|
@@ -1836,7 +1836,7 @@ const installPackagesWithFeedback = async (packages, packageManager, projectRoot
|
|
|
1836
1836
|
};
|
|
1837
1837
|
//#endregion
|
|
1838
1838
|
//#region src/commands/init.ts
|
|
1839
|
-
const VERSION$3 = "0.1.
|
|
1839
|
+
const VERSION$3 = "0.1.36";
|
|
1840
1840
|
const REPORT_URL = "https://react-grab.com/api/report-cli";
|
|
1841
1841
|
const DOCS_URL = "https://github.com/aidenybai/react-grab";
|
|
1842
1842
|
const reportToCli = (type, config, error) => {
|
|
@@ -2214,7 +2214,7 @@ const init = new commander.Command().name("init").alias("setup").description("in
|
|
|
2214
2214
|
});
|
|
2215
2215
|
//#endregion
|
|
2216
2216
|
//#region src/commands/remove.ts
|
|
2217
|
-
const VERSION$2 = "0.1.
|
|
2217
|
+
const VERSION$2 = "0.1.36";
|
|
2218
2218
|
const remove = new commander.Command().name("remove").description("disconnect React Grab from your agent").argument("[agent]", "agent to disconnect (mcp)").option("-y, --yes", "skip confirmation prompts", false).option("-c, --cwd <cwd>", "working directory (defaults to current directory)", process.cwd()).action(async (agentArg, opts) => {
|
|
2219
2219
|
console.log(`${picocolors.default.magenta("✿")} ${picocolors.default.bold("React Grab")} ${picocolors.default.gray(VERSION$2)}`);
|
|
2220
2220
|
console.log();
|
|
@@ -2244,7 +2244,7 @@ const remove = new commander.Command().name("remove").description("disconnect Re
|
|
|
2244
2244
|
});
|
|
2245
2245
|
//#endregion
|
|
2246
2246
|
//#region src/commands/upgrade.ts
|
|
2247
|
-
const VERSION$1 = "0.1.
|
|
2247
|
+
const VERSION$1 = "0.1.36";
|
|
2248
2248
|
const NPM_REGISTRY_URL = "https://registry.npmjs.org/react-grab/latest";
|
|
2249
2249
|
const fetchLatestVersion = async () => {
|
|
2250
2250
|
try {
|
|
@@ -2319,7 +2319,7 @@ const upgrade = new commander.Command().name("upgrade").alias("update").descript
|
|
|
2319
2319
|
});
|
|
2320
2320
|
//#endregion
|
|
2321
2321
|
//#region src/cli.ts
|
|
2322
|
-
const VERSION = "0.1.
|
|
2322
|
+
const VERSION = "0.1.36";
|
|
2323
2323
|
const VERSION_API_URL = "https://www.react-grab.com/api/version";
|
|
2324
2324
|
process.on("SIGINT", () => process.exit(0));
|
|
2325
2325
|
process.on("SIGTERM", () => process.exit(0));
|
package/dist/cli.js
CHANGED
|
@@ -555,7 +555,7 @@ const promptMcpInstall = async () => {
|
|
|
555
555
|
};
|
|
556
556
|
//#endregion
|
|
557
557
|
//#region src/commands/add.ts
|
|
558
|
-
const VERSION$5 = "0.1.
|
|
558
|
+
const VERSION$5 = "0.1.36";
|
|
559
559
|
const add = new Command().name("add").alias("install").description("connect React Grab to your agent via MCP").argument("[agent]", "agent to connect (mcp)").option("-y, --yes", "skip confirmation prompts", false).option("-c, --cwd <cwd>", "working directory (defaults to current directory)", process.cwd()).action(async (agentArg, opts) => {
|
|
560
560
|
console.log(`${pc.magenta("✿")} ${pc.bold("React Grab")} ${pc.gray(VERSION$5)}`);
|
|
561
561
|
console.log();
|
|
@@ -1185,7 +1185,7 @@ const formatActivationKeyDisplay = (activationKey) => {
|
|
|
1185
1185
|
};
|
|
1186
1186
|
//#endregion
|
|
1187
1187
|
//#region src/commands/configure.ts
|
|
1188
|
-
const VERSION$4 = "0.1.
|
|
1188
|
+
const VERSION$4 = "0.1.36";
|
|
1189
1189
|
const isMac = process.platform === "darwin";
|
|
1190
1190
|
const META_LABEL = isMac ? "Cmd" : "Win";
|
|
1191
1191
|
const ALT_LABEL = isMac ? "Option" : "Alt";
|
|
@@ -1804,7 +1804,7 @@ const installPackagesWithFeedback = async (packages, packageManager, projectRoot
|
|
|
1804
1804
|
};
|
|
1805
1805
|
//#endregion
|
|
1806
1806
|
//#region src/commands/init.ts
|
|
1807
|
-
const VERSION$3 = "0.1.
|
|
1807
|
+
const VERSION$3 = "0.1.36";
|
|
1808
1808
|
const REPORT_URL = "https://react-grab.com/api/report-cli";
|
|
1809
1809
|
const DOCS_URL = "https://github.com/aidenybai/react-grab";
|
|
1810
1810
|
const reportToCli = (type, config, error) => {
|
|
@@ -2182,7 +2182,7 @@ const init = new Command().name("init").alias("setup").description("initialize R
|
|
|
2182
2182
|
});
|
|
2183
2183
|
//#endregion
|
|
2184
2184
|
//#region src/commands/remove.ts
|
|
2185
|
-
const VERSION$2 = "0.1.
|
|
2185
|
+
const VERSION$2 = "0.1.36";
|
|
2186
2186
|
const remove = new Command().name("remove").description("disconnect React Grab from your agent").argument("[agent]", "agent to disconnect (mcp)").option("-y, --yes", "skip confirmation prompts", false).option("-c, --cwd <cwd>", "working directory (defaults to current directory)", process.cwd()).action(async (agentArg, opts) => {
|
|
2187
2187
|
console.log(`${pc.magenta("✿")} ${pc.bold("React Grab")} ${pc.gray(VERSION$2)}`);
|
|
2188
2188
|
console.log();
|
|
@@ -2212,7 +2212,7 @@ const remove = new Command().name("remove").description("disconnect React Grab f
|
|
|
2212
2212
|
});
|
|
2213
2213
|
//#endregion
|
|
2214
2214
|
//#region src/commands/upgrade.ts
|
|
2215
|
-
const VERSION$1 = "0.1.
|
|
2215
|
+
const VERSION$1 = "0.1.36";
|
|
2216
2216
|
const NPM_REGISTRY_URL = "https://registry.npmjs.org/react-grab/latest";
|
|
2217
2217
|
const fetchLatestVersion = async () => {
|
|
2218
2218
|
try {
|
|
@@ -2287,7 +2287,7 @@ const upgrade = new Command().name("upgrade").alias("update").description("upgra
|
|
|
2287
2287
|
});
|
|
2288
2288
|
//#endregion
|
|
2289
2289
|
//#region src/cli.ts
|
|
2290
|
-
const VERSION = "0.1.
|
|
2290
|
+
const VERSION = "0.1.36";
|
|
2291
2291
|
const VERSION_API_URL = "https://www.react-grab.com/api/version";
|
|
2292
2292
|
process.on("SIGINT", () => process.exit(0));
|
|
2293
2293
|
process.on("SIGTERM", () => process.exit(0));
|