chore: upgrade dependencies (#7232)

This commit is contained in:
Joshua Chen 2022-04-23 11:55:01 +08:00 committed by GitHub
parent 58f393d768
commit 242f2e780e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 342 additions and 324 deletions

View file

@ -19,8 +19,8 @@ export class FileNotTrackedError extends Error {}
* It gets the commit date instead of author date so that amended commits
* can have their dates updated.
*
* @throws {GitNotFoundError} If git is not found in `PATH`.
* @throws {FileNotTrackedError} If the current file is not tracked by git.
* @throws {@link GitNotFoundError} If git is not found in `PATH`.
* @throws {@link FileNotTrackedError} If the current file is not tracked by git.
* @throws Also throws when `git log` exited with non-zero, or when it outputs
* unexpected text.
*/
@ -47,8 +47,8 @@ export function getFileCommitDate(
* It gets the commit date instead of author date so that amended commits
* can have their dates updated.
*
* @throws {GitNotFoundError} If git is not found in `PATH`.
* @throws {FileNotTrackedError} If the current file is not tracked by git.
* @throws {@link GitNotFoundError} If git is not found in `PATH`.
* @throws {@link FileNotTrackedError} If the current file is not tracked by git.
* @throws Also throws when `git log` exited with non-zero, or when it outputs
* unexpected text.
*/