@nikala-ui/cli 0.9.6 → 0.9.7

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.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6,14 +6,14 @@ import { add } from "./commands/add.js";
6
6
  import { themeCommand } from "./commands/theme.js";
7
7
  import { validateCommand } from "./commands/validate.js";
8
8
  import { diffCommand } from "./commands/diff.js";
9
- console.log(`\nšŸŽØ ${pc.bold(pc.red("Nikala UI"))} ${pc.dim("v0.9.6")} — SolidJS + Tailwind v4 components`);
9
+ console.log(`\nšŸŽØ ${pc.bold(pc.red("Nikala UI"))} ${pc.dim("v0.9.7")} — SolidJS + Tailwind v4 components`);
10
10
  console.log(` ${pc.italic(pc.dim("Honoring Niko Pirosmani (Nikala)"))}\n`);
11
11
  console.log(` ${pc.dim("Docs:")} ${pc.underline(pc.cyan("https://nikala.magradze.dev"))}\n`);
12
12
  const program = new Command();
13
13
  program
14
14
  .name("nikala")
15
15
  .description("Nikala UI — SolidJS + Tailwind v4 components")
16
- .version("0.9.6");
16
+ .version("0.9.7");
17
17
  program
18
18
  .command("init")
19
19
  .description("Initialize Nikala UI in your project")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nikala-ui/cli",
3
- "version": "0.9.6",
3
+ "version": "0.9.7",
4
4
  "description": "Command line interface for Nikala UI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",