Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Type
Enhancement, Tests
Description
vue-axe
を統合し、アクセシビリティの問題を検出するポップアップを表示する機能を追加しました。eslint-plugin-vuejs-accessibility
を導入し、Vueコンポーネントのアクセシビリティルールを強化しました。axe-core
を最適化依存関係として追加しました。package.json
およびpackage-lock.json
に新しい依存関係を追加しました。Changes walkthrough 📝
env.d.ts
Add module declaration for `vue-axe`.
src/env.d.ts
vue-axe
.main.ts
Integrate `vue-axe` for accessibility in development.
src/main.ts
vue-axe
for developmentenvironments.
vue-axe
and its popup component.eslint.config.js
Configure `eslint-plugin-vuejs-accessibility` for improved linting.
eslint.config.js
eslint-plugin-vuejs-accessibility
configuration.vite.config.ts
Optimize `axe-core` dependency in Vite configuration.
vite.config.ts
axe-core
tooptimizeDeps
for dependency optimization.mockServiceWorker.js
Update Mock Service Worker for compatibility improvements.
public/mockServiceWorker.js
PACKAGE_VERSION
andINTEGRITY_CHECKSUM
.package-lock.json
Update package-lock.json with new dependencies.
package-lock.json
vue-axe
,eslint-plugin-vuejs-accessibility
, andrelated packages.
package.json
Add `vue-axe` and `eslint-plugin-vuejs-accessibility` to project.
package.json
vue-axe
andeslint-plugin-vuejs-accessibility
to devdependencies.