├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── fixtures └── input.css └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/gulp-stylefmt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/gulp-stylefmt/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/gulp-stylefmt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/gulp-stylefmt/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/gulp-stylefmt/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/gulp-stylefmt/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/gulp-stylefmt/HEAD/test/fixtures/input.css -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matype/gulp-stylefmt/HEAD/test/index.js --------------------------------------------------------------------------------