@the-grove/cli 0.1.11 → 0.1.13
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import ora from "ora";
|
|
|
9
9
|
import chalk from "chalk";
|
|
10
10
|
import prompts from "prompts";
|
|
11
11
|
import fs from "fs-extra";
|
|
12
|
-
var REGISTRY_BASE_URL = "https://raw.githubusercontent.com/matthewnaples/the-grove/main/packages/registry/
|
|
12
|
+
var REGISTRY_BASE_URL = "https://raw.githubusercontent.com/matthewnaples/the-grove/main/packages/registry/public/r";
|
|
13
13
|
async function add(components, options) {
|
|
14
14
|
if (!components || components.length === 0) {
|
|
15
15
|
console.log(chalk.yellow("No components specified."));
|
|
@@ -285,7 +285,7 @@ ${files.map((f) => `- ${f.localPath}`).join("\n")}
|
|
|
285
285
|
|
|
286
286
|
// src/commands/list.ts
|
|
287
287
|
import chalk3 from "chalk";
|
|
288
|
-
var REGISTRY_BASE_URL2 = "https://raw.githubusercontent.com/matthewnaples/the-grove/main/packages/registry/
|
|
288
|
+
var REGISTRY_BASE_URL2 = "https://raw.githubusercontent.com/matthewnaples/the-grove/main/packages/registry/public/r";
|
|
289
289
|
async function list(options) {
|
|
290
290
|
console.log(chalk3.bold("\n\u{1F4E6} Available Components\n"));
|
|
291
291
|
const categories = options.category ? [options.category] : ["core", "convex", "clerk", "convex-clerk"];
|