centoui-cli 1.4.0 → 1.5.1
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 +1 -2
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,11 +101,10 @@ export default defineConfig({
|
|
|
101
101
|
chevronLeft: 'lucide:chevron-left',
|
|
102
102
|
chevronRight: 'lucide:chevron-right',
|
|
103
103
|
chevronUp: 'lucide:chevron-up',
|
|
104
|
-
close: 'lucide:x',
|
|
105
104
|
ellipsis: 'lucide:ellipsis',
|
|
105
|
+
x: 'lucide:x',
|
|
106
106
|
},
|
|
107
107
|
themeFilePath: './src/assets/css/centoui.css',
|
|
108
|
-
utilsFilePath: './src/utils/centoui-utils.ts',
|
|
109
108
|
})
|
|
110
109
|
```
|
|
111
110
|
|
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.
|
|
10
|
+
const VERSION = "1.5.1";
|
|
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
|
/**
|