-
Notifications
You must be signed in to change notification settings - Fork 38
/
gulpfile.js
82 lines (72 loc) · 2.49 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
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 karma = require('karma').server;
var uglify = require('gulp-uglify');
var ngAnnotate = require('gulp-ng-annotate');
var karmaConf = require('./karma.conf.js');
var paths = {
sass: ['./scss/**/*.scss'],
js: ['js/**/*.js'],
dist: './dist'
};
gulp.task('default', ['karma']);
gulp.task('dist', ['scripts']);
gulp.task('scripts', function() {
return gulp.src(['js/ionic.scroll.sista.js'])
.pipe(concat('ionic.scroll.sista.js'))
.pipe(ngAnnotate({single_quotes: true}))
.pipe(gulp.dest(paths.dist))
.pipe(uglify())
.pipe(rename({ extname: '.min.js' }))
.pipe(gulp.dest(paths.dist));
});
gulp.task('sass', function(done) {
gulp.src('./scss/ionic.scroll.sista.scss')
/*
Since this is a plugin, we dont want to include ionic scss in dist. Don't think there is a way to compile scss
using ionic vars/mixins without including it in the compiled file.
For now we need to manually add @import "../bower_components/ionic/scss/ionic"; to the scss file,
run this gulp task, remove ionic css in css file (inlcuding minified version), then remove the import in scss
*/
.pipe(sass({ errLogToConsole: true }))
.pipe(gulp.dest(paths.dist))
.pipe(minifyCss({ keepSpecialComments: 0 }))
.pipe(rename({ extname: '.min.css' }))
.pipe(gulp.dest(paths.dist))
.on('end', done);
});
gulp.task('watch', function() {
gulp.watch(paths.sass, ['sass']);
});
gulp.task('karma', function(done) {
karmaConf.singleRun = true;
karma.start(karmaConf, done);
});
gulp.task('karma-watch', function(done) {
karmaConf.singleRun = false;
karma.start(karmaConf, done);
});
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();
});