Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: webpack/webpack.js.org
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b7822be37c7f24e76a430cecf54194c9ff970d79
Choose a base ref
..
head repository: webpack/webpack.js.org
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c45bf3645c7a7dfcb5dc564a0aff1bbb77ea4e31
Choose a head ref
Showing with 152 additions and 91 deletions.
  1. +1 −1 package.json
  2. +1 −1 src/content/api/normalmodulefactory-hooks.mdx
  3. +150 −89 yarn.lock
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -70,7 +70,7 @@
]
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.15.8",
2 changes: 1 addition & 1 deletion src/content/api/normalmodulefactory-hooks.mdx
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ depending on the type of hook.

Called when a new dependency request is encountered. A dependency can be ignored by returning `false`. Otherwise, it should return `undefined` to proceed.

- Callback Parameters: `ResolveData`
- Callback Parameters: `resolveData`

### factorize

Loading