-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
executable file
·98 lines (88 loc) · 2.89 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
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 sourcemaps = require('gulp-sourcemaps');
var templateCache = require('gulp-angular-templatecache');
var paths = {
sass: ['./scss/**/*.scss'],
scripts: ['./src/**/*.js', '!./www/js/app.bundle.js'],
vendor: ['./vendor/**/*.js'],
templateCache: ['./src/**/*.html']
};
var files = {
jsbundle: 'app.bundle.js',
vendorbundle: 'vendor.bundle.js',
appcss: 'app.css'
};
gulp.task('default', ['sass','vendor','templatecache', 'scripts']);
// scripts - clean dist dir then annotate, minify, concat
gulp.task('scripts', function() {
gulp.src(paths.scripts)
.pipe(sourcemaps.init())
//.pipe(jshint())
//.pipe(jshint.reporter('default'))
// .pipe(ngAnnotate({
// remove: true,
// add: true,
// single_quotes: true
// }))
// .pipe(uglify())
.pipe(concat(files.jsbundle))
.pipe(sourcemaps.write())
.pipe(gulp.dest('./www/dist'));
});
gulp.task('templatecache', function(done){
gulp.src('./src/**/*.html')
.pipe(templateCache({standalone:true}))
.pipe(gulp.dest('./www/dist'))
.on('end', done);
});
gulp.task('vendor', function() {
gulp.src(['./vendor/ionic/js/ionic.bundle.min.js',
'./vendor/ngCordova/dist/ng-cordova.min.js',
'./vendor/angular-translate/angular-translate.min.js',
'vendor/angular-translate-loader-static-files/angular-translate-loader-static-files.min.js',
'./vendor_manual/**/*.js'])
.pipe(concat(files.vendorbundle))
.pipe(gulp.dest('./www/dist/'));
});
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.watch(paths.scripts, ['scripts']);
gulp.watch(paths.vendor, ['vendor']);
gulp.watch(paths.templateCache, ['templatecache']);
});
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();
});