@nikala-ui/cli 0.8.0 ā 0.9.0
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
|
@@ -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
|
+
console.log(`\nšØ ${pc.bold(pc.red("Nikala UI"))} ${pc.dim("v0.9.0")} ā 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.
|
|
16
|
+
.version("0.9.0");
|
|
17
17
|
program
|
|
18
18
|
.command("init")
|
|
19
19
|
.description("Initialize Nikala UI in your project")
|