centoui-cli 1.0.0 → 1.2.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
@@ -3,7 +3,7 @@
3
3
  <p><strong>Manage CentoUI components from the terminal.</strong></p>
4
4
  <p>
5
5
  <a href="https://npmx.dev/package/centoui-cli"><img src="https://img.shields.io/npm/v/centoui-cli.svg?style=plastic&label=NPM%20Version&color=blue" alt="NPM Version"></a>
6
- <a href="https://npmx.dev/package/centoui-cli"><img src="https://img.shields.io/npm/dw/centoui-cli.svg?style=plastic&label=NPM%20Downloads&color=blue" alt="NPM Downloads"></a>
6
+ <a href="https://npmx.dev/package/centoui-cli"><img src="https://img.shields.io/npm/dt/centoui-cli.svg?style=plastic&label=NPM%20Downloads&color=blue" alt="NPM Downloads"></a>
7
7
  <a href="https://npmx.dev/package/centoui-cli"><img src="https://img.shields.io/npm/unpacked-size/centoui-cli?style=plastic&label=NPM%20Unpacked%20Size&color=blue" alt="NPM Unpacked Size"></a>
8
8
  </p>
9
9
  </div>
@@ -24,7 +24,7 @@ pnpm dlx centoui init
24
24
 
25
25
  **What it does:**
26
26
 
27
- 1. Prompts you for a component directory (default: `src/components/centoui`), a utils file path (default: `src/utils/centoui-utils.ts`), and theme CSS path (default: `src/assets/css/centoui.css`).
27
+ 1. Prompts you for a component directory (default: `src/components/centoui`) and theme CSS path (default: `src/assets/css/centoui.css`).
28
28
  2. Writes `centoui.config.ts` with your chosen paths and default icon mappings.
29
29
  3. Fetches and writes the `centoui.css` theme file with all light/dark color tokens.
30
30
  4. Writes the `centoui-utils.ts` file with all utility functions.
package/dist/index.mjs CHANGED
@@ -7,7 +7,7 @@ import { addDependency, removeDependency } from "nypm";
7
7
  //#endregion
8
8
  //#region src/constants.ts
9
9
  /** CentoUI current package version, sourced directly from package.json. */
10
- const VERSION = "1.0.0";
10
+ const VERSION = "1.2.0";
11
11
  /** File name for the user-side CentoUI config (created by `centoui init`). */
12
12
  const CONFIG_FILE_NAME = "centoui.config.ts";
13
13
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "centoui-cli",
3
3
  "type": "module",
4
- "version": "1.0.0",
4
+ "version": "1.2.0",
5
5
  "private": false,
6
6
  "description": "Official CLI for CentoUI.",
7
7
  "author": "Favour Emeka <favorodera@gmail.com>",