@docusaurus/core 3.6.3-canary-6186 → 3.6.3-canary-6190

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/lib/webpack/base.js +5 -5
  2. package/package.json +11 -11
@@ -100,11 +100,11 @@ async function createBaseConfig({ props, isServer, minify, faster, configureWebp
100
100
  // See https://rspack.dev/config/experiments#experimentsincremental
101
101
  // Produces warnings in production builds
102
102
  // See https://github.com/web-infra-dev/rspack/pull/8311#issuecomment-2476014664
103
- // @ts-expect-error: Rspack-only
104
- // incremental: !isProd,
105
- // TODO restore incremental mode in dev + opt-in/opt-out flag?
106
- // temporarily disabled due to https://github.com/facebook/docusaurus/issues/10646#issuecomment-2490675451
107
- incremental: undefined,
103
+ // We use the same integration as Rspress, with ability to disable
104
+ // See https://github.com/web-infra-dev/rspress/pull/1631
105
+ // See https://github.com/facebook/docusaurus/issues/10646
106
+ // @ts-expect-error: Rspack-only, not available in Webpack typedefs
107
+ incremental: !isProd && !process.env.DISABLE_RSPACK_INCREMENTAL,
108
108
  };
109
109
  }
110
110
  return undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@docusaurus/core",
3
3
  "description": "Easy to Maintain Open Source Documentation Websites",
4
- "version": "3.6.3-canary-6186",
4
+ "version": "3.6.3-canary-6190",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -33,13 +33,13 @@
33
33
  "url": "https://github.com/facebook/docusaurus/issues"
34
34
  },
35
35
  "dependencies": {
36
- "@docusaurus/babel": "3.6.3-canary-6186",
37
- "@docusaurus/bundler": "3.6.3-canary-6186",
38
- "@docusaurus/logger": "3.6.3-canary-6186",
39
- "@docusaurus/mdx-loader": "3.6.3-canary-6186",
40
- "@docusaurus/utils": "3.6.3-canary-6186",
41
- "@docusaurus/utils-common": "3.6.3-canary-6186",
42
- "@docusaurus/utils-validation": "3.6.3-canary-6186",
36
+ "@docusaurus/babel": "3.6.3-canary-6190",
37
+ "@docusaurus/bundler": "3.6.3-canary-6190",
38
+ "@docusaurus/logger": "3.6.3-canary-6190",
39
+ "@docusaurus/mdx-loader": "3.6.3-canary-6190",
40
+ "@docusaurus/utils": "3.6.3-canary-6190",
41
+ "@docusaurus/utils-common": "3.6.3-canary-6190",
42
+ "@docusaurus/utils-validation": "3.6.3-canary-6190",
43
43
  "boxen": "^6.2.1",
44
44
  "chalk": "^4.1.2",
45
45
  "chokidar": "^3.5.3",
@@ -77,8 +77,8 @@
77
77
  "webpack-merge": "^6.0.1"
78
78
  },
79
79
  "devDependencies": {
80
- "@docusaurus/module-type-aliases": "3.6.3-canary-6186",
81
- "@docusaurus/types": "3.6.3-canary-6186",
80
+ "@docusaurus/module-type-aliases": "3.6.3-canary-6190",
81
+ "@docusaurus/types": "3.6.3-canary-6190",
82
82
  "@total-typescript/shoehorn": "^0.1.2",
83
83
  "@types/detect-port": "^1.3.3",
84
84
  "@types/react-dom": "^18.2.7",
@@ -98,5 +98,5 @@
98
98
  "engines": {
99
99
  "node": ">=18.0"
100
100
  },
101
- "gitHead": "b72269ca94865ff6862b8898c1f63a67537f13fa"
101
+ "gitHead": "0615b943690c71de1eaf8d30b69510695dfe0e1e"
102
102
  }