chore(deps): update dependency html-loader to v5#48
Conversation
📝 WalkthroughWalkthroughThe 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
44049b9 to
0c1b99c
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@package.json`:
- Line 39: The package.json file declares html-loader@5.1.0 which requires
Node.js >= 18.12.0, but this Node.js engine constraint is not declared in the
engines field. Add or update the engines field in package.json to specify the
minimum Node.js version as 18.12.0 to ensure developers and CI systems are aware
of this requirement and prevent runtime failures.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro Plus
Run ID: 0351837e-412d-47ed-945e-6cb069a8c385
⛔ Files ignored due to path filters (1)
pnpm-lock.yamlis excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (1)
package.json
| "file-loader": "^6.2.0", | ||
| "get-port": "^5.1.1", | ||
| "html-loader": "2.1.2", | ||
| "html-loader": "5.1.0", |
There was a problem hiding this comment.
Add Node.js engine requirement to match html-loader 5.1.0's constraint.
The html-loader@5.1.0 requires Node.js >= 18.12.0 (as shown in the pnpm-lock.yaml resolution), but the engines field in package.json does not declare this constraint. Without this declaration, developers and CI agents using Node < 18.12.0 will encounter runtime failures despite successful installation, as pnpm does not enforce peer/transitive engine constraints at install time.
🛠️ Proposed fix to declare Node.js engine requirement
"engines": {
+ "node": ">= 18.12.0",
"pnpm": "11.1.2"
},🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@package.json` at line 39, The package.json file declares html-loader@5.1.0
which requires Node.js >= 18.12.0, but this Node.js engine constraint is not
declared in the engines field. Add or update the engines field in package.json
to specify the minimum Node.js version as 18.12.0 to ensure developers and CI
systems are aware of this requirement and prevent runtime failures.
0c1b99c to
36dfa59
Compare
90ca5d1 to
c3ff134
Compare
83c3c6f to
f818304
Compare
f818304 to
6deb943
Compare
This PR contains the following updates:
2.1.2→5.1.0Release Notes
webpack-contrib/html-loader (html-loader)
v5.1.0Compare Source
Features
postprocessoroption (#518) (536a204)v5.0.0Compare Source
⚠ BREAKING CHANGES
18.12.0(#504) (c82cfea)v4.2.0Compare Source
Features
v4.1.0Compare Source
Features
scriptingEnabledoption (#448) (6ed9f9c)4.0.0 (2022-06-15)
⚠ BREAKING CHANGES
Node.jsversion is14.15.0parse5to7.0.0Bug Fixes
<script>in thescriptelement (#444) (9949d82)v4.0.0Compare Source
Features
scriptingEnabledoption (#448) (6ed9f9c)4.0.0 (2022-06-15)
⚠ BREAKING CHANGES
Node.jsversion is14.15.0parse5to7.0.0Bug Fixes
<script>in thescriptelement (#444) (9949d82)v3.1.2Compare Source
Fix
v3.1.1Compare Source
v3.1.0Compare Source
Features
scriptingEnabledoption (#448) (6ed9f9c)4.0.0 (2022-06-15)
⚠ BREAKING CHANGES
Node.jsversion is14.15.0parse5to7.0.0Bug Fixes
<script>in thescriptelement (#444) (9949d82)v3.0.1Compare Source
Features
3.0.1 (2021-11-02)
Bug Fixes
v3.0.0Compare Source
Features
3.0.1 (2021-11-02)
Bug Fixes
Configuration
📅 Schedule: (in timezone Asia/Shanghai)
* 0-3 1,15 * *)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.