css-test-npm
v1.0.1
Published
Node.js library for CSS validation
Maintainers
Readme
CSS Test
Node.js library for testing CSS and output errors in the console with Gulp.js compatibilities
How to install
npm
npm i css-test-npmyarn
yarn add css-test-npmHow to use
import cssTest from 'css-test-npm'
const cssUrl = ''
cssTest(cssUrl)Gulp.js integration
import gulp from 'gulp'
const { parallel, series, watch } = gulp
import cssTest from 'css-test-npm'
const cssUrl = ''
const cssTestRes = () => cssTest(cssUrl)
export default parallel(cssTestRes)Reference
- https://jigsaw.w3.org/css-validator/api.html
