1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2025-05-21 23:21:29 +02:00

fix: update dependencies to latest

This commit is contained in:
Divlo
2023-01-10 22:15:14 +01:00
parent 6ca7722fcf
commit 943b3d1fd6
14 changed files with 1387 additions and 13283 deletions

View File

@ -43,12 +43,12 @@ const printResults = (results: Result[]): void => {
}
export class HTMLValidatorCommand extends Command {
static usage = {
static override usage = {
description:
'CLI for validating multiple html pages using <https://validator.w3.org/>.'
}
async execute(): Promise<number> {
public async execute(): Promise<number> {
const configPath = path.join(CURRENT_DIRECTORY, CONFIG_FILE_NAME)
try {
if (!(await isExistingPath(configPath))) {