@vixt/core 0.8.0 → 0.9.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.
@@ -1,5 +1,5 @@
1
1
  import { ConfigLayer, ConfigLayerMeta, LoadConfigOptions, ResolvedConfig } from "c12";
2
- import * as vite0 from "vite";
2
+ import * as vite from "vite";
3
3
  import { HtmlTagDescriptor, InlineConfig, LogLevel, PluginOption, ServerOptions, UserConfig } from "vite";
4
4
  import Legacy from "@vitejs/plugin-legacy";
5
5
  import Analyzer from "vite-bundle-analyzer";
@@ -15,7 +15,7 @@ interface Vixt {
15
15
  _modules: VixtModule[];
16
16
  }
17
17
  declare function loadVixt(opts?: LoadConfigOptions<VixtOptions>): Promise<Vixt>;
18
- declare function createVixtPlugin(loadOptions: LoadConfigOptions<VixtOptions>): (options?: VixtOptions | undefined) => vite0.PluginOption;
18
+ declare function createVixtPlugin(loadOptions: LoadConfigOptions<VixtOptions>): (options?: VixtOptions | undefined) => vite.PluginOption;
19
19
  //#endregion
20
20
  //#region src/node/module.d.ts
21
21
  type ExtractPluginOptions<Options = any> = (Options extends ((...args: any[]) => any) ? Parameters<Options>[0] : Options);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vixt/core",
3
3
  "type": "module",
4
- "version": "0.8.0",
4
+ "version": "0.9.0",
5
5
  "author": "SoulLyoko<https://github.com/SoulLyoko>",
6
6
  "license": "MIT",
7
7
  "homepage": "https://soullyoko.github.io/vixt/",
@@ -30,21 +30,21 @@
30
30
  "dependencies": {
31
31
  "@types/fs-extra": "^11.0.4",
32
32
  "@vitejs/plugin-basic-ssl": "^2.1.4",
33
- "@vitejs/plugin-legacy": "^8.0.0-beta.1",
33
+ "@vitejs/plugin-legacy": "^8.0.0-beta.3",
34
34
  "@vue/tsconfig": "^0.8.1",
35
35
  "c12": "^3.3.3",
36
36
  "cac": "^6.7.14",
37
- "citty": "^0.2.0",
37
+ "citty": "^0.2.1",
38
38
  "defu": "^6.1.4",
39
39
  "find-up": "^8.0.0",
40
40
  "fs-extra": "^11.3.3",
41
41
  "jiti": "^2.6.1",
42
- "magicast": "^0.5.1",
42
+ "magicast": "^0.5.2",
43
43
  "mlly": "^1.8.0",
44
44
  "pathe": "^2.0.3",
45
45
  "pkg-types": "^2.3.0",
46
46
  "vite": "^7.3.1",
47
- "vite-bundle-analyzer": "^1.3.2",
47
+ "vite-bundle-analyzer": "^1.3.6",
48
48
  "vite-plugin-checker": "^0.12.0"
49
49
  }
50
50
  }