@vuepress-plume/plugin-fonts 1.0.0-rc.192 → 1.0.0-rc.194

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,7 +1,5 @@
1
1
  import "./styles/fonts.css";
2
-
3
2
  //#region src/client/config.ts
4
3
  var config_default = {};
5
-
6
4
  //#endregion
7
- export { config_default as default };
5
+ export { config_default as default };
package/lib/node/index.js CHANGED
@@ -1,5 +1,4 @@
1
1
  import { getDirname, path } from "vuepress/utils";
2
-
3
2
  //#region src/node/plugin.ts
4
3
  function fontsPlugin() {
5
4
  return {
@@ -7,6 +6,5 @@ function fontsPlugin() {
7
6
  clientConfigFile: path.resolve(getDirname(import.meta.url), "../client/config.js")
8
7
  };
9
8
  }
10
-
11
9
  //#endregion
12
- export { fontsPlugin };
10
+ export { fontsPlugin };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuepress-plume/plugin-fonts",
3
3
  "type": "module",
4
- "version": "1.0.0-rc.192",
4
+ "version": "1.0.0-rc.194",
5
5
  "description": "The Plugin for VuePress 2 - fonts",
6
6
  "author": "pengzhanbo <volodymyr@foxmail.com>",
7
7
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  "lib"
28
28
  ],
29
29
  "peerDependencies": {
30
- "vuepress": "2.0.0-rc.26"
30
+ "vuepress": "2.0.0-rc.28"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public",
@@ -43,6 +43,6 @@
43
43
  "build": "pnpm run tsdown && pnpm run copy",
44
44
  "clean": "rimraf --glob ./lib",
45
45
  "copy": "cpx \"src/**/*.{d.ts,vue,css,scss,jpg,png,woff2}\" lib",
46
- "tsdown": "tsdown"
46
+ "tsdown": "tsdown --config-loader unrun"
47
47
  }
48
48
  }