centoui-cli 0.0.1 → 0.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 +6 -10
- package/dist/index.mjs +2 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
[](https://www.npmjs.com/package/centoui-cli)
|
|
5
5
|
[](https://github.com/favorodera/centoui/blob/main/LICENSE)
|
|
6
6
|
|
|
7
|
-
**CentoUI CLI: Manage your components with ease.**
|
|
7
|
+
**CentoUI CLI: Manage your CentoUI components with ease.**
|
|
8
8
|
|
|
9
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.
|
|
10
10
|
|
|
11
11
|
## Commands
|
|
12
12
|
|
|
13
|
-
- **`init`**: Set up a new CentoUI project (generates `centoui.config.ts` and `
|
|
13
|
+
- **`init`**: Set up a new CentoUI project (generates `centoui.config.ts` and `centoui.css`).
|
|
14
14
|
- **`add [component]`**: Add specific components to your project. Peer dependencies install automatically.
|
|
15
15
|
- **`remove [component]`**: Cleanly remove components and their dependencies.
|
|
16
16
|
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
# Initialize CentoUI in your project
|
|
21
|
-
|
|
21
|
+
pnpm dlx centoui init
|
|
22
22
|
|
|
23
23
|
# Add components
|
|
24
|
-
|
|
24
|
+
pnpm dlx centoui add button dialog input select
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
## Configuration
|
|
@@ -34,15 +34,11 @@ import { defineConfig } from "centoui"
|
|
|
34
34
|
export default defineConfig({
|
|
35
35
|
version: "1.0.0",
|
|
36
36
|
componentsDir: "./src/components/centoui",
|
|
37
|
-
|
|
37
|
+
themeFilePath: "./src/assets/css/centoui.css",
|
|
38
38
|
icons: {
|
|
39
39
|
check: "lucide:check",
|
|
40
40
|
close: "lucide:x",
|
|
41
41
|
menu: "lucide:menu",
|
|
42
42
|
},
|
|
43
43
|
})
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
## License
|
|
47
|
-
|
|
48
|
-
[MIT](../../LICENSE) © [Favour Emeka](https://github.com/favorodera)
|
|
44
|
+
```
|
package/dist/index.mjs
CHANGED
|
@@ -7,13 +7,13 @@ import { addDependency } from "nypm";
|
|
|
7
7
|
//#endregion
|
|
8
8
|
//#region src/constants.ts
|
|
9
9
|
/** CentoUI current package version */
|
|
10
|
-
const VERSION = "0.0
|
|
10
|
+
const VERSION = "0.2.0";
|
|
11
11
|
/** CentoUI config file name */
|
|
12
12
|
const CONFIG_FILE_NAME = "centoui.config.ts";
|
|
13
13
|
/** CentoUI registry file name */
|
|
14
14
|
const REGISTRY_FILE_NAME = "index.json";
|
|
15
15
|
/** CentoUI core base API URL */
|
|
16
|
-
const BASE_URL =
|
|
16
|
+
const BASE_URL = "https://raw.githubusercontent.com/favorodera/centoui/main/packages/core/src";
|
|
17
17
|
/** CentoUI registry files URL */
|
|
18
18
|
const REGISTRY_URL = `${BASE_URL}/registry`;
|
|
19
19
|
/** CentoUI theme file URL */
|