forked from ionic-team/ionic-app-base
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
103 lines (91 loc) · 3.12 KB
/
gulpfile.js
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
var gulp = require('gulp');
var karma = require('gulp-karma');
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 bulkSass = require('gulp-sass-bulk-import');
var wiredep = require('wiredep').stream;
var templateCache = require('gulp-angular-templatecache');
var paths = {
sass: ['./scss/**/*.scss']
};
gulp.task('default', ['sass', 'templates', 'bower']);
gulp.task('sass', function (done) {
gulp.src('./scss/ionic.app.scss')
.pipe(bulkSass())
.pipe(sass({
compass: true,
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('templates', function(){
return gulp.src('./www/views/**/*.html')
// Create entries within $templateCache
// Module uses ionic namespace as we can always guarantee it's existence within our application
.pipe(templateCache('templates.js',{module: 'ionic', root:'views/'}))
.pipe(gulp.dest('www/js'));
});
gulp.task('test', function () {
// Be sure to return the stream
// NOTE: Using the fake './foobar' so as to run the files
// listed in karma.conf.js INSTEAD of what was passed to
// gulp.src !
return gulp.src('./foobar')
.pipe(karma({
configFile: './tests/karma.conf.js',
action: 'run'
}))
.on('error', function (err) {
// Make sure failed tests cause gulp to exit non-zero
console.log(err);
this.emit('end'); //instead of erroring the stream, end it
});
});
gulp.task('autotest', function () {
return gulp.watch(['./www/js/**/*.js', './tests/spec/*.js'], ['test']);
});
gulp.task('bump', require('gulp-cordova-bump'));
gulp.task('watch', function () {
gulp.watch(paths.sass, ['sass']);
});
gulp.task('bower', function () {
gulp.src('./www/index.html')
.pipe(wiredep({
exclude: "www/vendor/angular/angular.js"
}))
.pipe(gulp.dest('./www'));
gulp.src('./tests/karma.conf.js')
.pipe(wiredep({
devDependencies: true
}))
.pipe(gulp.dest('./tests'));
});
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();
});