Upgraded TypeScript from 5.0.4 to 5.2.2 and vue-tsc from 1.8.8 to 1.8.10 in both package.json and pnpm-lock.yaml. The upgrade also cascades effect to other dependencies in pnpm-lock.yaml. The update brings in new language features, bug fixes, and improvements from TypeScript. The vue-tsc update enhances the type checking of Vue Single File Components. Regular updates ensure application remains compatible with the latest TypeScript language enhancements and vue-tsc updates.
Upgraded concurrently from 7.6.0 to 8.2.1 and lint-staged from 13.1.0 to 14.0.1 in both package.json and pnpm-lock.yaml. Also updated other indirect dependencies in pnpm-lock.yaml. These updates bring improvements, bug fixes, and potential api changes from the respective packages. It's typically a good practice to keep dependencies updated so we can benefit from their improvements and make sure our project remains compatible with them.
The change consists in replacing husky which was used for managing git hooks with simple-git-hooks. The simple-git-hooks library is lighter, simpler, and offers almost the same set of features as husky. This change will make the codebase easier to maintain and understand.
Upgraded vue-router package version from 4.1.6 to 4.2.4 as part of project's current dependencies update routine. Also, the '@vue/devtools-api' package dependency of vue-router has been updated from version 6.4.5 to 6.5.0. This is in line with ensuring that our application utilizes the latest features, benefits from updated documentation, and remains secure from vulnerabilities that may have been patched in the new release.
close#136
Upgraded the 'marked' package from version 4.2.5 to version 8.0.1 to make the application compatible with the latest features provided by the package. This caused a breaking change, which led to the need to remove the ids from the H1, H2, H3, H4 heading tags from ArticleDetail component for precise snapshot testing. Also removed '@types/marked' as it is no longer needed due to the updated 'marked' package version.
close#145