Node.js library for testing CSS and output errors in the console with Gulp.js compatibilities
npm i css-test-npm
yarn add css-test-npm
import cssTest from 'css-test-npm'
const cssUrl = ''
cssTest(cssUrl)
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)