-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
121 lines (102 loc) · 3.04 KB
/
gulpfile.js
File metadata and controls
121 lines (102 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
"use strict";
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 watchify = require('watchify');
var browserify = require('browserify');
var ngAnnotate = require('browserify-ngannotate');
var notify = require('gulp-notify');
var source = require('vinyl-source-stream');
var browserSync = require('browser-sync');
var Firebase = require('firebase');
var jsonfile = require('jsonfile');
var paths = {
sass: ['./scss/**/*.scss']
};
var handleErrors = function(error) {
var args = Array.prototype.slice.call(arguments);
// Send error to notification center with gulp-notify
notify.onError({
title: 'Compile Error',
message: '<%= error.message %>'
}).apply(this, args);
// Keep gulp from hanging on this task
this.emit('end');
}
function buildScript(file) {
var bundler = browserify({
entries: [
'./www/js/app.js',
'./www/js/controllers.js',
'./www/lib/ionic-contrib-tinder-cards/ionic.tdcards.js'
],
cache: {},
packageCache: {},
fullPaths: true
}, watchify.args);
bundler = watchify(bundler);
bundler.on('update', function() {
rebundle();
});
bundler.transform(ngAnnotate);
function rebundle() {
var stream = bundler.bundle();
gutil.log('Rebundle...');
return stream.on('error', handleErrors)
.pipe(source(file))
.pipe(gulp.dest('./www/js'))
.pipe(browserSync.reload({ stream: true, once: true }))
.pipe(notify("Compiled bundle... reloading"));
}
return rebundle();
}
gulp.task('default', ['sass']);
gulp.task('sass', function(done) {
gulp.src('./scss/ionic.app.scss')
.pipe(sass())
.pipe(gulp.dest('./www/css/'))
.pipe(minifyCss({
keepSpecialComments: 0
}))
.pipe(rename({ extname: '.min.css' }))
.pipe(gulp.dest('./www/css/'))
.on('end', done);
});
gulp.task('watch', function() {
gulp.watch(paths.sass, ['sass']);
});
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('browserify', function() {
return buildScript('main.js');
});
gulp.task('rebase', function() {
var ref = new Firebase('https://mobile-turk.firebaseio.com/');
jsonfile.readFile('test/fake_data.json', function(err, obj) {
gutil.log(obj);
ref.set(obj, function() {
gutil.log('rebase', 'complete');
});
});
});
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();
});