centoui-cli 1.0.0-alpha.16 → 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 +6 -7
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# centoui-cli
|
|
2
2
|
|
|
3
|
-
[](https://npmx.dev/package/centoui-cli)
|
|
4
|
+
[](https://npmx.dev/package/centoui-cli)
|
|
5
|
+
[](https://npmx.dev/package/centoui-cli)
|
|
6
6
|
|
|
7
|
-
**
|
|
7
|
+
**Manage CentoUI Components with Ease.**
|
|
8
8
|
|
|
9
|
-
`centoui-cli` is the official command-line interface for [CentoUI](
|
|
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.
|
|
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
|
/**
|