@nikala-ui/cli 0.6.1 → 0.7.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/README.md CHANGED
@@ -32,8 +32,8 @@ npx @nikala-ui/cli init
32
32
 
33
33
  ## Documentation
34
34
 
35
- For full documentation, component lists, and theming guides, visit the official repository at [github.com/magradze/nikala-ui](https://github.com/magradze/nikala-ui).
35
+ For full documentation, component lists, and theming guides, visit the official repository at [github.com/nikala-ui/ui](https://github.com/nikala-ui/ui).
36
36
 
37
37
  ## License
38
38
 
39
- [MIT](https://github.com/magradze/nikala-ui/blob/main/LICENSE)
39
+ [MIT](https://github.com/nikala-ui/ui/blob/main/LICENSE)
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.6.1")} — SolidJS + Tailwind v4 components`);
9
+ console.log(`\nšŸŽØ ${pc.bold(pc.red("Nikala UI"))} ${pc.dim("v0.7.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.6.1");
16
+ .version("0.7.0");
17
17
  program
18
18
  .command("init")
19
19
  .description("Initialize Nikala UI in your project")
@@ -1,6 +1,6 @@
1
1
  import type { RegistryIndex, RegistryItem } from "../types/registry.js";
2
2
  /** Official remote registry CDN URL hosted on GitHub main branch */
3
- export declare const OFFICIAL_REGISTRY_URL = "https://raw.githubusercontent.com/magradze/nikala-ui/main/packages/core/registry";
3
+ export declare const OFFICIAL_REGISTRY_URL = "https://raw.githubusercontent.com/nikala-ui/ui/main/packages/core/registry";
4
4
  /**
5
5
  * Reads and parses the central registry index manifest.
6
6
  * Bypasses GitHub Raw CDN caching using timestamps and fetches fresh index files.
@@ -2,7 +2,7 @@ import fs from "fs-extra";
2
2
  import path from "node:path";
3
3
  import { fileURLToPath } from "node:url";
4
4
  /** Official remote registry CDN URL hosted on GitHub main branch */
5
- export const OFFICIAL_REGISTRY_URL = "https://raw.githubusercontent.com/magradze/nikala-ui/main/packages/core/registry";
5
+ export const OFFICIAL_REGISTRY_URL = "https://raw.githubusercontent.com/nikala-ui/ui/main/packages/core/registry";
6
6
  /**
7
7
  * Resolves the absolute path to the local fallback registry directory inside the Nikala UI package.
8
8
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nikala-ui/cli",
3
- "version": "0.6.1",
3
+ "version": "0.7.0",
4
4
  "description": "Command line interface for Nikala UI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",