centoui 1.0.0-alpha.28 → 1.0.0-alpha.29
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/dist/index.d.ts +3 -3
- package/package.json +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CentoUIConfig } from "centoui-cli";
|
|
1
|
+
import { CentoUIConfig, CentoUIConfig as CentoUIConfig$1 } from "centoui-cli";
|
|
2
2
|
|
|
3
3
|
//#region src/index.d.ts
|
|
4
4
|
/**
|
|
@@ -6,6 +6,6 @@ import { CentoUIConfig } from "centoui-cli";
|
|
|
6
6
|
* @param config - CentoUI config
|
|
7
7
|
* @returns CentoUI config
|
|
8
8
|
*/
|
|
9
|
-
declare function defineConfig(config: CentoUIConfig): CentoUIConfig;
|
|
9
|
+
declare function defineConfig(config: CentoUIConfig$1): CentoUIConfig$1;
|
|
10
10
|
//#endregion
|
|
11
|
-
export { defineConfig };
|
|
11
|
+
export { type CentoUIConfig, defineConfig };
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "Vue components for modern interfaces",
|
|
5
5
|
"private": false,
|
|
6
|
-
"version": "1.0.0-alpha.
|
|
6
|
+
"version": "1.0.0-alpha.29",
|
|
7
7
|
"author": "Favour Emeka <favorodera@gmail.com>",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"homepage": "https://centoui.vercel.app",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"centoui": "./bin/centoui.js"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"centoui-cli": "1.0.0-alpha.
|
|
31
|
+
"centoui-cli": "1.0.0-alpha.29"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@clack/prompts": "^1.2.0",
|
|
@@ -77,7 +77,8 @@
|
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
79
|
"engines": {
|
|
80
|
-
"node": ">=22.0.0"
|
|
80
|
+
"node": ">=22.0.0",
|
|
81
|
+
"pnpm": ">=11.0.0"
|
|
81
82
|
},
|
|
82
83
|
"scripts": {
|
|
83
84
|
"build:registry": "tsx scripts/build-registry.ts",
|