centoui-cli 1.0.0-alpha.17 → 1.0.0-alpha.18

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
@@ -1,12 +1,12 @@
1
1
  # centoui-cli
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/centoui-cli.svg?style=flat-square)](https://www.npmjs.com/package/centoui-cli)
4
- [![npm downloads](https://img.shields.io/npm/dm/centoui-cli.svg?style=flat-square)](https://www.npmjs.com/package/centoui-cli)
5
- [![license](https://img.shields.io/github/license/favorodera/centoui.svg?style=flat-square)](https://github.com/favorodera/centoui/blob/main/LICENSE)
3
+ [![npm version](https://img.shields.io/npm/v/centoui-cli.svg?style=plastic)](https://npmx.dev/package/centoui-cli)
4
+ [![npm downloads](https://img.shields.io/npm/dm/centoui-cli.svg?style=plastic)](https://npmx.dev/package/centoui-cli)
5
+ [![NPM Unpacked Size](https://img.shields.io/npm/unpacked-size/centoui-cli?style=plastic)](https://npmx.dev/package/centoui-cli)
6
6
 
7
- **CentoUI CLI: Manage your CentoUI components with ease.**
7
+ **Manage CentoUI Components with Ease.**
8
8
 
9
- `centoui-cli` is the official command-line interface for [CentoUI](https://github.com/favorodera/centoui). It allows you to initialize CentoUI in your project, add new components, and manage their versions directly from your terminal.
9
+ `centoui-cli` is the official command-line interface for [CentoUI](../core). It allows you to initialize CentoUI in your project, add new components, and manage their versions directly from your terminal.
10
10
 
11
11
  ## Commands
12
12
 
@@ -32,7 +32,6 @@ The CLI generates a `centoui.config.ts` file in your root directory. You can cus
32
32
  import { defineConfig } from "centoui"
33
33
 
34
34
  export default defineConfig({
35
- version: "1.0.0",
36
35
  componentsDir: "./src/components/centoui",
37
36
  themeFilePath: "./src/assets/css/centoui.css",
38
37
  icons: {
@@ -41,4 +40,4 @@ export default defineConfig({
41
40
  menu: "lucide:menu",
42
41
  },
43
42
  })
44
- ```
43
+ ```
package/dist/index.mjs CHANGED
@@ -8,7 +8,7 @@ import { pathToFileURL } from "node:url";
8
8
  //#endregion
9
9
  //#region src/constants.ts
10
10
  /** CentoUI current package version, sourced directly from package.json. */
11
- const VERSION = "1.0.0-alpha.17";
11
+ const VERSION = "1.0.0-alpha.18";
12
12
  /** File name for the user-side CentoUI config (created by `centoui init`). */
13
13
  const CONFIG_FILE_NAME = "centoui.config.ts";
14
14
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "centoui-cli",
3
3
  "type": "module",
4
- "version": "1.0.0-alpha.17",
4
+ "version": "1.0.0-alpha.18",
5
5
  "private": false,
6
6
  "description": "Official CLI for CentoUI.",
7
7
  "author": "Favour Emeka <favorodera@gmail.com>",