https://github.com/matype/gulp-stylefmt
gulp plugin for stylefmt
https://github.com/matype/gulp-stylefmt
Last synced: over 1 year ago
JSON representation
gulp plugin for stylefmt
- Host: GitHub
- URL: https://github.com/matype/gulp-stylefmt
- Owner: matype
- License: other
- Created: 2015-08-05T01:53:58.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-11-22T07:41:43.000Z (over 7 years ago)
- Last Synced: 2024-10-22T02:04:12.189Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 44
- Watchers: 1
- Forks: 5
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-stylefmt [](https://travis-ci.org/morishitter/gulp-stylefmt)
gulp plugin for [stylefmt](https://github.com/morishitter/stylefmt)
## Installation
```shell
$ npm install --save-dev gulp-stylefmt
```
## Usage
```js
var gulp = require('gulp');
var stylefmt = require('gulp-stylefmt');
gulp.task('stylefmt', function () {
return gulp.src('src/input.css')
.pipe(stylefmt())
.pipe(gulp.dest('dist'));
});
```
## License
The MIT License (MIT)
Copyright (c) 2015 - 2016 Masaaki Morishita