Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jan 13, 2022
1 parent 9d833a7 commit 9e2b1b0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/w3c-html-validator.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! w3c-html-validator v0.8.2 ~~ https://github.com/center-key/w3c-html-validator ~~ MIT License
//! w3c-html-validator v1.0.0 ~~ https://github.com/center-key/w3c-html-validator ~~ MIT License

export declare type ValidatorOptions = {
html?: string;
Expand Down
4 changes: 2 additions & 2 deletions dist/w3c-html-validator.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//! w3c-html-validator v0.8.2 ~~ https://github.com/center-key/w3c-html-validator ~~ MIT License
//! w3c-html-validator v1.0.0 ~~ https://github.com/center-key/w3c-html-validator ~~ MIT License

import { readFileSync } from 'fs';
import chalk from 'chalk';
import log from 'fancy-log';
import request from 'superagent';
const w3cHtmlValidator = {
version: '0.8.2',
version: '1.0.0',
validate(options) {
const defaults = {
checkUrl: 'https://validator.w3.org/nu/',
Expand Down
4 changes: 2 additions & 2 deletions dist/w3c-html-validator.umd.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! w3c-html-validator v0.8.2 ~~ https://github.com/center-key/w3c-html-validator ~~ MIT License
//! w3c-html-validator v1.0.0 ~~ https://github.com/center-key/w3c-html-validator ~~ MIT License

var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
Expand All @@ -20,7 +20,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
const fancy_log_1 = __importDefault(require("fancy-log"));
const superagent_1 = __importDefault(require("superagent"));
const w3cHtmlValidator = {
version: '0.8.2',
version: '1.0.0',
validate(options) {
const defaults = {
checkUrl: 'https://validator.w3.org/nu/',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "w3c-html-validator",
"version": "0.8.2",
"version": "1.0.0",
"description": "A package for testing HTML files or URLs against the W3C validator (written in TypeScript)",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 2 additions & 0 deletions task-runner.sh.command
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ buildProject() {
cd $projectHome
echo "Build:"
npm test
echo "For sample validation output and results, run:"
echo " node examples.js"
echo
}

Expand Down

0 comments on commit 9e2b1b0

Please sign in to comment.