├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── html ├── invalid.html └── valid.html └── main.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumacrae/gulp-w3cjs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | temp/ 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumacrae/gulp-w3cjs/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumacrae/gulp-w3cjs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumacrae/gulp-w3cjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumacrae/gulp-w3cjs/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumacrae/gulp-w3cjs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumacrae/gulp-w3cjs/HEAD/package.json -------------------------------------------------------------------------------- /test/html/invalid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumacrae/gulp-w3cjs/HEAD/test/html/invalid.html -------------------------------------------------------------------------------- /test/html/valid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumacrae/gulp-w3cjs/HEAD/test/html/valid.html -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumacrae/gulp-w3cjs/HEAD/test/main.js --------------------------------------------------------------------------------