From a2b8fa23e9240590b8437824970062728c7b52d5 Mon Sep 17 00:00:00 2001 From: dpilafian Date: Sun, 5 Nov 2023 01:53:47 -0800 Subject: [PATCH] Release v1.6.0 --- dist/w3c-html-validator.d.ts | 2 +- dist/w3c-html-validator.js | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/w3c-html-validator.d.ts b/dist/w3c-html-validator.d.ts index 6ba42cc..33c1e9c 100644 --- a/dist/w3c-html-validator.d.ts +++ b/dist/w3c-html-validator.d.ts @@ -1,4 +1,4 @@ -//! w3c-html-validator v1.5.1 ~~ https://github.com/center-key/w3c-html-validator ~~ MIT License +//! w3c-html-validator v1.6.0 ~~ https://github.com/center-key/w3c-html-validator ~~ MIT License export type ValidatorSettings = { html: string; diff --git a/dist/w3c-html-validator.js b/dist/w3c-html-validator.js index b8d7901..655b468 100644 --- a/dist/w3c-html-validator.js +++ b/dist/w3c-html-validator.js @@ -1,11 +1,11 @@ -//! w3c-html-validator v1.5.1 ~~ https://github.com/center-key/w3c-html-validator ~~ MIT License +//! w3c-html-validator v1.6.0 ~~ https://github.com/center-key/w3c-html-validator ~~ MIT License import chalk from 'chalk'; import fs from 'fs'; import log from 'fancy-log'; import request from 'superagent'; const w3cHtmlValidator = { - version: '1.5.1', + version: '1.6.0', validate(options) { const defaults = { checkUrl: 'https://validator.w3.org/nu/', diff --git a/package.json b/package.json index bb37d98..d1cdebe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "w3c-html-validator", - "version": "1.5.1", + "version": "1.6.0", "description": "Check the markup validity of HTML files using the W3C validator", "license": "MIT", "type": "module",