https://github.com/matype/gulp-yacp
gulp plugin for compiling yacp files
https://github.com/matype/gulp-yacp
Last synced: about 1 year ago
JSON representation
gulp plugin for compiling yacp files
- Host: GitHub
- URL: https://github.com/matype/gulp-yacp
- Owner: matype
- Created: 2014-05-05T00:40:33.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-05T22:19:54.000Z (about 12 years ago)
- Last Synced: 2024-12-28T02:44:49.552Z (over 1 year ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# [gulp](http://gulpjs.com)-yacp [](https://travis-ci.org/morishitter/gulp-yacp)
> Compile [YACP](https://github.com/morishitter/YACP) files to CSS
## Install
```bash
$ npm install --save-dev gulp-yacp
```
## Usage
```js
var gulp = require('gulp');
var yacp = require('gulp-yacp');
gulp.task('default', function () {
return gulp.src('src/app.ext')
.pipe(yacp())
.pipe(gulp.dest('dist'));
});
```
## License
MIT © [Masaaki Morishita](https://github.com/morishitter)