centoui-cli 1.14.0 → 1.15.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.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -2
  2. package/package.json +1 -1
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.14.0";
10
+ const VERSION = "1.15.0";
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
  /**
@@ -340,7 +340,7 @@ function init() {
340
340
  enabled: shouldWriteTheme,
341
341
  task: async (message) => {
342
342
  message("Fetching theme from registry.");
343
- const themeFileContent = await sendNetworkRequest("/theme.css");
343
+ const themeFileContent = await sendNetworkRequest("/css/theme.css");
344
344
  message("Writing to disk.");
345
345
  await writeToFile(themePath, themeFileContent);
346
346
  return "Theme created!";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "centoui-cli",
3
3
  "type": "module",
4
- "version": "1.14.0",
4
+ "version": "1.15.0",
5
5
  "private": false,
6
6
  "description": "Official CLI for CentoUI.",
7
7
  "author": "Favour Emeka <favorodera@gmail.com>",