@vuepress/oxfmt-config 8.0.0 → 8.0.1

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.
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { FormatConfig } from "oxfmt";
1
+ import { FormatOptions } from "oxfmt";
2
2
 
3
3
  //#region src/config.d.ts
4
4
  /**
@@ -50,6 +50,6 @@ declare const config: {
50
50
  };
51
51
  //#endregion
52
52
  //#region src/vuepress.d.ts
53
- declare const vuepress: (userConfig?: Partial<FormatConfig>) => FormatConfig;
53
+ declare const vuepress: (userConfig?: Partial<FormatOptions>) => FormatOptions;
54
54
  //#endregion
55
55
  export { config, vuepress };
package/dist/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { FormatConfig } from "oxfmt";
1
+ import { FormatOptions } from "oxfmt";
2
2
 
3
3
  //#region src/config.d.ts
4
4
  /**
@@ -50,6 +50,6 @@ declare const config: {
50
50
  };
51
51
  //#endregion
52
52
  //#region src/vuepress.d.ts
53
- declare const vuepress: (userConfig?: Partial<FormatConfig>) => FormatConfig;
53
+ declare const vuepress: (userConfig?: Partial<FormatOptions>) => FormatOptions;
54
54
  //#endregion
55
55
  export { config, vuepress };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuepress/oxfmt-config",
3
- "version": "8.0.0",
3
+ "version": "8.0.1",
4
4
  "description": "Oxfmt config for VuePress Team",
5
5
  "homepage": "https://github.com/vuepress",
6
6
  "license": "MIT",
@@ -26,15 +26,14 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "scripts": {
30
- "build": "tsdown",
31
- "clean": "rimraf ./dist"
32
- },
33
29
  "dependencies": {
34
- "oxfmt": "^0.41.0"
30
+ "oxfmt": "^0.40.0"
35
31
  },
36
32
  "devDependencies": {
37
33
  "tsdown": "^0.21.3"
38
34
  },
39
- "gitHead": "650dd668b28470673f70d8473c2aea64f3b5f3ef"
40
- }
35
+ "scripts": {
36
+ "build": "tsdown",
37
+ "clean": "rimraf ./dist"
38
+ }
39
+ }