@yamada-ui/cli 2.0.0-dev-20250626073729 → 2.0.0-dev-20250626191018
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 +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8002,7 +8002,7 @@ const actionTokens = async (inputPath, { cwd: cwd$2 = path.resolve(), internal =
|
|
|
8002
8002
|
const pkg = createRequire(import.meta.url)("@yamada-ui/cli/package.json");
|
|
8003
8003
|
const run = async () => {
|
|
8004
8004
|
await initCLI();
|
|
8005
|
-
const program = new Command("Yamada UI CLI").
|
|
8005
|
+
const program = new Command("Yamada UI CLI").version(pkg.version).usage(`${c.green("<command>")} [options]`);
|
|
8006
8006
|
program.command("tokens <path>").option("--cwd <path>", "Current working directory").option("-o, --out <path>", `Output path`).option("-w, --watch [path]", "Watch directory for changes and rebuild").option("--internal", "Generate internal tokens").action(actionTokens);
|
|
8007
8007
|
program.command("theme <path>").option("-b, --branch <branch>", "Branch to download").option("--cwd <path>", "Current working directory").option("-r, --replace", "Force replace the theme").action(actionTheme);
|
|
8008
8008
|
program.parse();
|