chore: bump eslint-markdown to 0.5.0#1463
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
Size changesDetails📦 Next.js Bundle Analysis for undefinedThis analysis was generated by the Next.js Bundle Analysis action. 🤖 This PR introduced no changes to the JavaScript bundle! 🙌 |
There was a problem hiding this comment.
Pull request overview
This PR upgrades the eslint-markdown package from a pre-release canary version (0.1.0-canary.12) to a stable release (0.5.0). This is a routine dependency upgrade that moves from a pre-release to a stable version of the linting tool used for markdown files in the codebase. The upgrade also includes workflow improvements to trigger the lint job when dependencies change.
Changes:
- Bumped
eslint-markdownfrom^0.1.0-canary.12to^0.5.0in package.json and updated yarn.lock accordingly - Enhanced the
textlint_lint.ymlworkflow to includepackage.jsonin the path filters, ensuring the workflow runs when dependencies are updated - Updated quote style from single to double quotes in the workflow path filters
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Updated eslint-markdown version from ^0.1.0-canary.12 to ^0.5.0 in devDependencies |
| yarn.lock | Updated lockfile entries for eslint-markdown with new version, resolved URL, and integrity hash |
| .github/workflows/textlint_lint.yml | Added package.json to path filters and standardized quotes to double quotes |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This pull request makes minor updates to the workflow configuration and development dependencies. The workflow for text linting is expanded to include
package.jsonas a trigger, and theeslint-markdowndependency is updated to a newer version.Workflow Configuration Updates:
.github/workflows/textlint_lint.ymlworkflow now also triggers on changes topackage.json, in addition to the existing paths.Dependency Updates:
eslint-markdownpackage inpackage.jsonfrom version^0.1.0-canary.12to^0.5.0.