@react-grab/cli 0.1.48-dev.f8bac7f → 0.1.48-dev.fe982d7

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 CHANGED
@@ -133,7 +133,7 @@ const promptSkillInstall = async ({ yes = false, global = false, cwd = process.c
133
133
  };
134
134
  //#endregion
135
135
  //#region src/commands/add.ts
136
- const VERSION$5 = "0.1.48-dev.f8bac7f";
136
+ const VERSION$5 = "0.1.48-dev.fe982d7";
137
137
  const add = new commander.Command().name("add").alias("install").description("install the React Grab skill for your agent").option("-y, --yes", "skip confirmation prompts", false).option("-c, --cwd <cwd>", "working directory (defaults to current directory)", process.cwd()).option("-g, --global", "install the skill globally instead of in the project", false).action(async (opts) => {
138
138
  console.log(`${picocolors.default.magenta("✿")} ${picocolors.default.bold("React Grab")} ${picocolors.default.gray(VERSION$5)}`);
139
139
  console.log();
@@ -317,7 +317,7 @@ const formatActivationKeyDisplay = (activationKey) => {
317
317
  };
318
318
  //#endregion
319
319
  //#region src/commands/configure.ts
320
- const VERSION$4 = "0.1.48-dev.f8bac7f";
320
+ const VERSION$4 = "0.1.48-dev.fe982d7";
321
321
  const isMac = process.platform === "darwin";
322
322
  const META_LABEL = isMac ? "Cmd" : "Win";
323
323
  const ALT_LABEL = isMac ? "Option" : "Alt";
@@ -871,7 +871,7 @@ const isTelemetryEnabled = () => {
871
871
  };
872
872
  //#endregion
873
873
  //#region src/commands/init.ts
874
- const VERSION$3 = "0.1.48-dev.f8bac7f";
874
+ const VERSION$3 = "0.1.48-dev.fe982d7";
875
875
  const REPORT_URL = "https://react-grab.com/api/report-cli";
876
876
  const DOCS_URL = "https://github.com/aidenybai/react-grab";
877
877
  const reportToCli = (type, config, error) => {
@@ -1822,7 +1822,7 @@ const pull = new commander.Command().name("pull").description("start the watcher
1822
1822
  });
1823
1823
  //#endregion
1824
1824
  //#region src/commands/remove.ts
1825
- const VERSION$2 = "0.1.48-dev.f8bac7f";
1825
+ const VERSION$2 = "0.1.48-dev.fe982d7";
1826
1826
  const remove = new commander.Command().name("remove").description("uninstall the React Grab skill from your agent").option("-c, --cwd <cwd>", "working directory (defaults to current directory)", process.cwd()).option("-g, --global", "remove the globally-installed skill instead of the project's", false).action(async (opts) => {
1827
1827
  console.log(`${picocolors.default.magenta("✿")} ${picocolors.default.bold("React Grab")} ${picocolors.default.gray(VERSION$2)}`);
1828
1828
  console.log();
@@ -1851,7 +1851,7 @@ const stop = new commander.Command().name("stop").description("stop the React Gr
1851
1851
  });
1852
1852
  //#endregion
1853
1853
  //#region src/commands/upgrade.ts
1854
- const VERSION$1 = "0.1.48-dev.f8bac7f";
1854
+ const VERSION$1 = "0.1.48-dev.fe982d7";
1855
1855
  const NPM_REGISTRY_URL = "https://registry.npmjs.org/react-grab/latest";
1856
1856
  const fetchLatestVersion = async () => {
1857
1857
  try {
@@ -1963,7 +1963,7 @@ const watch = new commander.Command().name("watch").description("run the React G
1963
1963
  });
1964
1964
  //#endregion
1965
1965
  //#region src/cli.ts
1966
- const VERSION = "0.1.48-dev.f8bac7f";
1966
+ const VERSION = "0.1.48-dev.fe982d7";
1967
1967
  const VERSION_API_URL = "https://www.react-grab.com/api/version";
1968
1968
  process.on("SIGINT", () => process.exit(0));
1969
1969
  process.on("SIGTERM", () => process.exit(0));
package/dist/cli.js CHANGED
@@ -128,7 +128,7 @@ const promptSkillInstall = async ({ yes = false, global = false, cwd = process.c
128
128
  };
129
129
  //#endregion
130
130
  //#region src/commands/add.ts
131
- const VERSION$5 = "0.1.48-dev.f8bac7f";
131
+ const VERSION$5 = "0.1.48-dev.fe982d7";
132
132
  const add = new Command().name("add").alias("install").description("install the React Grab skill for your agent").option("-y, --yes", "skip confirmation prompts", false).option("-c, --cwd <cwd>", "working directory (defaults to current directory)", process.cwd()).option("-g, --global", "install the skill globally instead of in the project", false).action(async (opts) => {
133
133
  console.log(`${pc.magenta("✿")} ${pc.bold("React Grab")} ${pc.gray(VERSION$5)}`);
134
134
  console.log();
@@ -312,7 +312,7 @@ const formatActivationKeyDisplay = (activationKey) => {
312
312
  };
313
313
  //#endregion
314
314
  //#region src/commands/configure.ts
315
- const VERSION$4 = "0.1.48-dev.f8bac7f";
315
+ const VERSION$4 = "0.1.48-dev.fe982d7";
316
316
  const isMac = process.platform === "darwin";
317
317
  const META_LABEL = isMac ? "Cmd" : "Win";
318
318
  const ALT_LABEL = isMac ? "Option" : "Alt";
@@ -866,7 +866,7 @@ const isTelemetryEnabled = () => {
866
866
  };
867
867
  //#endregion
868
868
  //#region src/commands/init.ts
869
- const VERSION$3 = "0.1.48-dev.f8bac7f";
869
+ const VERSION$3 = "0.1.48-dev.fe982d7";
870
870
  const REPORT_URL = "https://react-grab.com/api/report-cli";
871
871
  const DOCS_URL = "https://github.com/aidenybai/react-grab";
872
872
  const reportToCli = (type, config, error) => {
@@ -1817,7 +1817,7 @@ const pull = new Command().name("pull").description("start the watcher if needed
1817
1817
  });
1818
1818
  //#endregion
1819
1819
  //#region src/commands/remove.ts
1820
- const VERSION$2 = "0.1.48-dev.f8bac7f";
1820
+ const VERSION$2 = "0.1.48-dev.fe982d7";
1821
1821
  const remove = new Command().name("remove").description("uninstall the React Grab skill from your agent").option("-c, --cwd <cwd>", "working directory (defaults to current directory)", process.cwd()).option("-g, --global", "remove the globally-installed skill instead of the project's", false).action(async (opts) => {
1822
1822
  console.log(`${pc.magenta("✿")} ${pc.bold("React Grab")} ${pc.gray(VERSION$2)}`);
1823
1823
  console.log();
@@ -1846,7 +1846,7 @@ const stop = new Command().name("stop").description("stop the React Grab watcher
1846
1846
  });
1847
1847
  //#endregion
1848
1848
  //#region src/commands/upgrade.ts
1849
- const VERSION$1 = "0.1.48-dev.f8bac7f";
1849
+ const VERSION$1 = "0.1.48-dev.fe982d7";
1850
1850
  const NPM_REGISTRY_URL = "https://registry.npmjs.org/react-grab/latest";
1851
1851
  const fetchLatestVersion = async () => {
1852
1852
  try {
@@ -1958,7 +1958,7 @@ const watch = new Command().name("watch").description("run the React Grab captur
1958
1958
  });
1959
1959
  //#endregion
1960
1960
  //#region src/cli.ts
1961
- const VERSION = "0.1.48-dev.f8bac7f";
1961
+ const VERSION = "0.1.48-dev.fe982d7";
1962
1962
  const VERSION_API_URL = "https://www.react-grab.com/api/version";
1963
1963
  process.on("SIGINT", () => process.exit(0));
1964
1964
  process.on("SIGTERM", () => process.exit(0));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-grab/cli",
3
- "version": "0.1.48-dev.f8bac7f",
3
+ "version": "0.1.48-dev.fe982d7",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/aidenybai/react-grab.git"