gulp-candor
v0.0.7
Published
The official candor gulp plugin.
Downloads
12
Maintainers
Readme
gulp-candor
The official Candor Gulp plugin.
View the official project site for Candor
Usage
Example gulpfile.js
that compiles Candor code.
var gulp = require('gulp');
var candor = require('gulp-candor');
gulp.task('default', ['candor']);
gulp.task('candor', function() {
return gulp
.src('index.cdor')
.pipe(candor())
.pipe(gulp.dest('./'));
});