@vixt/vitepress 0.6.1 → 0.6.2

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 +4 -2
  2. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -85,15 +85,17 @@ var preset_vitepress_default = defineVixtModule({
85
85
 
86
86
  //#endregion
87
87
  //#region src/index.ts
88
+ const plugins = ["@vixt/vitepress/client/plugins/pinia"];
88
89
  var src_default = createVixtPlugin({ defaults: {
89
90
  srcDir: path.resolve(cwd(), ".vitepress/theme"),
90
91
  modules: [preset_vitepress_default],
91
- plugins: ["@vixt/vitepress/client/plugins/pinia"],
92
+ plugins,
92
93
  app: {
93
94
  entryFile: "index.ts",
94
95
  entryCode: fs.readFileSync(resolvePathSync("@vixt/vitepress/client/entry"), "utf-8")
95
96
  },
96
- typescript: { tsConfig: { compilerOptions: { types: ["@vixt/vitepress/types"] } } }
97
+ typescript: { tsConfig: { compilerOptions: { types: ["@vixt/vitepress/types"] } } },
98
+ vite: { optimizeDeps: { exclude: plugins } }
97
99
  } });
98
100
 
99
101
  //#endregion
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vixt/vitepress",
3
3
  "type": "module",
4
- "version": "0.6.1",
4
+ "version": "0.6.2",
5
5
  "author": "SoulLyoko<https://github.com/SoulLyoko>",
6
6
  "license": "MIT",
7
7
  "homepage": "https://soullyoko.github.io/vixt/",
@@ -24,7 +24,7 @@
24
24
  ],
25
25
  "dependencies": {
26
26
  "vitepress": "^1.6.4",
27
- "@vixt/core": "0.6.1",
28
- "@vixt/vue": "0.6.1"
27
+ "@vixt/core": "0.6.2",
28
+ "@vixt/vue": "0.6.2"
29
29
  }
30
30
  }