Created
September 22, 2015 22:08
-
-
Save erotte/46ec44ecab32d43fe10d to your computer and use it in GitHub Desktop.
ionic sass-coffee-jade gulpfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var gutil = require('gulp-util'); | |
var bower = require('bower'); | |
var concat = require('gulp-concat'); | |
var sass = require('gulp-sass'); | |
var minifyCss = require('gulp-minify-css'); | |
var rename = require('gulp-rename'); | |
var sh = require('shelljs'); | |
var coffee = require('gulp-coffee'); | |
var jade = require('gulp-jade'); | |
var paths = { | |
sass: ['./scss/**/*.scss'], | |
coffee: ['./source/coffee/**/*.coffee'], | |
jade: ['./source/jade/**/*.jade'] | |
}; | |
gulp.task('default', ['sass']); | |
gulp.task('sass', function(done) { | |
gulp.src('./scss/ionic.app.scss') | |
.pipe(sass({ | |
errLogToConsole: true | |
})) | |
.pipe(gulp.dest('./www/css/')) | |
.pipe(minifyCss({ | |
keepSpecialComments: 0 | |
})) | |
.pipe(rename({ extname: '.min.css' })) | |
.pipe(gulp.dest('./www/css/')) | |
.on('end', done); | |
}); | |
gulp.task('coffee', function(done) { | |
gulp.src(paths.coffee) | |
.pipe(coffee({bare: true}) | |
.on('error', gutil.log.bind(gutil, 'Coffee Error'))) | |
.pipe(concat('application.js')) | |
.pipe(gulp.dest('./www/js')) | |
.on('end', done) | |
}); | |
gulp.task('jade', function(done) { | |
gulp.src(paths.jade) | |
.pipe(jade({ | |
pretty: true | |
}) | |
.on('error', gutil.log.bind(gutil, 'Jade Error'))) | |
.pipe(gulp.dest('./www/')) | |
.on('end', done) | |
}); | |
gulp.task('watch', function() { | |
gulp.watch(paths.sass, ['sass']); | |
gulp.watch(paths.coffee, ['coffee']); | |
gulp.watch(paths.jade, ['jade']); | |
}); | |
gulp.task('install', ['git-check'], function() { | |
return bower.commands.install() | |
.on('log', function(data) { | |
gutil.log('bower', gutil.colors.cyan(data.id), data.message); | |
}); | |
}); | |
gulp.task('git-check', function(done) { | |
if (!sh.which('git')) { | |
console.log( | |
' ' + gutil.colors.red('Git is not installed.'), | |
'\n Git, the version control system, is required to download Ionic.', | |
'\n Download git here:', gutil.colors.cyan('http://git-scm.com/downloads') + '.', | |
'\n Once git is installed, run \'' + gutil.colors.cyan('gulp install') + '\' again.' | |
); | |
process.exit(1); | |
} | |
done(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment