@docusaurus/types 3.7.0-canary-6195 → 3.7.0-canary-6196

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/package.json +2 -2
  2. package/src/plugin.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/types",
3
- "version": "3.7.0-canary-6195",
3
+ "version": "3.7.0-canary-6196",
4
4
  "description": "Common types for Docusaurus packages.",
5
5
  "types": "./src/index.d.ts",
6
6
  "publishConfig": {
@@ -27,5 +27,5 @@
27
27
  "react": "^18.0.0 || ^19.0.0",
28
28
  "react-dom": "^18.0.0 || ^19.0.0"
29
29
  },
30
- "gitHead": "b1b170b6d74d001472826cb2bab7d2d1eda23fb1"
30
+ "gitHead": "99dd9d1280009460ca30e7a78e06cc109be4dc8d"
31
31
  }
package/src/plugin.d.ts CHANGED
@@ -140,7 +140,7 @@ export type Plugin<Content = unknown> = {
140
140
  isServer: boolean,
141
141
  configureWebpackUtils: ConfigureWebpackUtils,
142
142
  content: Content,
143
- ) => ConfigureWebpackResult;
143
+ ) => ConfigureWebpackResult | void;
144
144
  configurePostCss?: (options: PostCssOptions) => PostCssOptions;
145
145
  getThemePath?: () => string;
146
146
  getTypeScriptThemePath?: () => string;