0.0.7 • Published 8 years ago

gulp-candor v0.0.7

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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('./'));
});