forked from binary-com/mobile
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgulpfile.js
More file actions
122 lines (104 loc) · 3.22 KB
/
gulpfile.js
File metadata and controls
122 lines (104 loc) · 3.22 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
122
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 minify = require('gulp-minify');
var ngmin = require('gulp-ngmin');
var del = require('del');
var htmlreplace = require('gulp-html-replace');
var ghPagesDeploy = require('gulp-gh-pages');
var xml2js = require('xml2js');
var file = require('gulp-file');
var paths = {
sass: ['./scss/**/*.scss']
};
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('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('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();
});
gulp.task('compress', function(done){
gulp.src('www/js/**/*.js')
.pipe(ngmin())
.pipe(concat('binary-ticktrade.js'))
.pipe(minify())
.pipe(gulp.dest('dist/js'));
return done();
});
gulp.task('clean', function(done){
del.sync('dist/**');
return done();
});
gulp.task('modify-index', ['compress'], function(){
// replacing js files with min one
return gulp.src('www/index.html')
.pipe(htmlreplace({js: 'js/binary-ticktrade-min.js'}))
.pipe(gulp.dest('dist/'))
});
gulp.task('update-web-version', function(){
var fs = require('fs');
var parser = new xml2js.Parser();
fs.readFile('config.xml', function(err, data) {
if(err){
console.log(err);
return;
}
parser.parseString(data, function (err, result) {
if(err){
console.log(err);
return;
}
var version = result['widget']['$']['version'];
if(version){
var webVersion = {
version: version
};
var json = JSON.stringify(webVersion);
return file('config.json', json)
.pipe(gulp.dest('dist/js/'));
}
});
});
});
gulp.task('build', ['git-check','clean', 'compress', 'modify-index', 'update-web-version'], function(){
return gulp.src(['www/**/*', '!www/js{,/**}', '!www/index.html'])
.pipe(gulp.dest('dist/'))
});
gulp.task('deploy', ['build'], function(){
return gulp.src('dist/**/*')
.pipe(ghPagesDeploy());
});