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.
This pull request includes various updates to dependencies, the addition of Vercel Analytics, and a new script for scraping job codes and descriptions from MOSDB. The most important changes include updating the
next
dependency versioning, adding Vercel Analytics to the application, and the new script for scraping job codes.Dependency Updates:
package.json
: Updated thenext
dependency to use a version range instead of a fixed version. ([package.jsonL40-R41](https://github.com/Vets-Who-Code/vets-who-code-app/pull/623/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L40-R41)
)New Features:
package.json
: Added the@vercel/analytics
dependency. ([package.jsonR25](https://github.com/Vets-Who-Code/vets-who-code-app/pull/623/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519R25)
)src/pages/_app.tsx
: Imported and integrated Vercel Analytics into the application. ([[1]](https://github.com/Vets-Who-Code/vets-who-code-app/pull/623/files#diff-88a36bc7a53bfa58c6f451464798d631d785160dfacfdaf9479be7a0b1d7e5e5R12)
,[[2]](https://github.com/Vets-Who-Code/vets-who-code-app/pull/623/files#diff-88a36bc7a53bfa58c6f451464798d631d785160dfacfdaf9479be7a0b1d7e5e5R46)
)tests-examples/scrape_job_codes.py
: Added a new script to scrape job codes and descriptions from MOSDB and save them to Excel files. ([tests-examples/scrape_job_codes.pyR1-R98](https://github.com/Vets-Who-Code/vets-who-code-app/pull/623/files#diff-963f6a8d3758a0f832e91a99cad8ae5314fabb1287157ffa79cc870cf0900cecR1-R98)
)