@vixt/vitepress 0.6.6 → 0.6.8

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.
@@ -8,13 +8,13 @@ import DefaultTheme from "vitepress/theme";
8
8
  //#region src/client/entry.ts
9
9
  var entry_default = {
10
10
  extends: DefaultTheme,
11
- async enhanceApp(ctx) {
11
+ enhanceApp(ctx) {
12
12
  const vixt = createVixtApp({
13
13
  ...ctx,
14
14
  appConfig
15
15
  });
16
16
  try {
17
- await applyPlugins(vixt, plugins);
17
+ applyPlugins(vixt, plugins);
18
18
  } catch (err) {
19
19
  console.error(err);
20
20
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vixt/vitepress",
3
3
  "type": "module",
4
- "version": "0.6.6",
4
+ "version": "0.6.8",
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.6",
28
- "@vixt/vue": "0.6.6"
27
+ "@vixt/core": "0.6.8",
28
+ "@vixt/vue": "0.6.8"
29
29
  }
30
30
  }