Skip to content

Instantly share code, notes, and snippets.

@erotte
Created September 22, 2015 22:08
Show Gist options
  • Save erotte/46ec44ecab32d43fe10d to your computer and use it in GitHub Desktop.
Save erotte/46ec44ecab32d43fe10d to your computer and use it in GitHub Desktop.
ionic sass-coffee-jade gulpfile
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