Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit 8c750eb

Browse files
committed
Release v3.0.0
1 parent c9ec607 commit 8c750eb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ _Gulp plugin to validate HTML using the W3C Markup Validation Service_
66
[![License:MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/center-key/gulp-w3c-html-validator/blob/master/LICENSE.txt)
77
[![npm](https://img.shields.io/npm/v/gulp-w3c-html-validator.svg)](https://www.npmjs.com/package/gulp-w3c-html-validator)
88
[![Vulnerabilities](https://snyk.io/test/github/center-key/gulp-w3c-html-validator/badge.svg)](https://snyk.io/test/github/center-key/gulp-w3c-html-validator)
9-
[![Build](https://travis-ci.com/center-key/gulp-w3c-html-validator.svg)](https://travis-ci.com/center-key/gulp-w3c-html-validator)
9+
[![Build](https://travis-ci.org/center-key/gulp-w3c-html-validator.svg)](https://travis-ci.org/center-key/gulp-w3c-html-validator)
1010

1111
This Gulp plugin is a wrapper for [w3cjs](https://github.com/thomasdavis/w3cjs) (_"A node.js library for testing files or URLs against the W3C HTML validator."_)
1212

@@ -21,7 +21,7 @@ Create a task in your **gulpfile.js**:
2121
```javascript
2222
// Imports
2323
import gulp from 'gulp';
24-
import htmlValidator from 'gulp-w3c-html-validator';
24+
import { htmlValidator } from 'gulp-w3c-html-validator';
2525

2626
// Tasks
2727
const task = {
@@ -43,7 +43,7 @@ and `messages` (Array).
4343
### Example usage
4444
```javascript
4545
// Import
46-
import htmlValidator from 'gulp-w3c-html-validator';
46+
import { htmlValidator } from 'gulp-w3c-html-validator';
4747
import through2 from 'through2';
4848

4949
// Tasks

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gulp-w3c-html-validator",
3-
"version": "2.0.1",
3+
"version": "3.0.0",
44
"license": "MIT",
55
"type": "module",
66
"description": "Gulp plugin to validate HTML using the W3C Markup Validation Service",

0 commit comments

Comments
 (0)