forked from NVE/regObs3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
120 lines (108 loc) · 3.84 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/// <binding ProjectOpened='watch' />
var gulp = require('gulp');
var gutil = require('gulp-util');
var bower = require('bower');
var concat = require('gulp-concat');
var sass = require('gulp-sass');
var uglify = require('gulp-uglify');
var ngAnnotate = require('gulp-ng-annotate');
var minifyCss = require('gulp-minify-css');
var rename = require('gulp-rename');
var sh = require('shelljs');
var preen = require('preen');
var jsonfile = require('jsonfile');
var Server = require('karma').Server;
var version = require('gulp-cordova-version');
var paths = {
sass: ['./scss/ionic.app.scss', './www/app/**/*.scss'],
js: ['./www/app/app.js', './www/app/AppCtrl.js', './www/app/**/*.js'],
dist: './www/dist/'
};
gulp.task('default', ['preen', 'sass', 'run-scripts-and-update-config']);
gulp.task('preen', function (cb) {
preen.preen({}, cb);
});
gulp.task('test', function (done) {
new Server({
configFile: require('path').resolve('karma.conf.js'),
singleRun: true
}, function(err){
if(err === 0){
done();
} else {
done(new gutil.PluginError('karma', {
message: 'Karma Tests failed'
}));
}
}).start();
});
gulp.task('sass', function(done) {
gulp.src(paths.sass)
.pipe(concat('app.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('run-scripts-and-update-config', ['scripts'], function (done) {
jsonfile.readFile('./www/app/json/version.json',
function (err, obj) {
var vfile = obj;
var versionStripped = vfile.version.replace(/\./g, '');
var buildStripped = vfile.build.replace(/\ /g, '');
var androidVersion = versionStripped + buildStripped.substring(2, 8);
gulp.src('.')
.pipe(version(vfile.version, { androidVersionCode: androidVersion, iosBundleVersion: buildStripped }))
.on('end', done);
});
});
gulp.task('scripts', function (done) {
jsonfile.readFile('./package.json', function(err, obj) {
var now = new Date();
var build = `${now.getFullYear()} ${('0' + (now.getMonth() + 1)).slice(-2)} ${('0' + now.getDate()).slice(-2)} ${('0' + now.getHours()).slice(-2)}${('0' + now.getMinutes()).slice(-2)}${('0' + now.getSeconds()).slice(-2)}`;
var vobj = {
version: obj.version,
build: build
};
jsonfile.writeFile('./www/app/json/version.json', vobj, function (err2) {
console.error(err2);
});
});
gulp.src(paths.js)
.pipe(concat('app.js'))
.pipe(gulp.dest(paths.dist))
.pipe(rename({ suffix: '.min' }))
//.pipe(stripDebug())
.pipe(ngAnnotate())
.pipe(uglify().on('error', gutil.log))
.pipe(gulp.dest(paths.dist))
.on('end', done);
});
gulp.task('watch', function() {
gulp.watch(paths.sass, ['sass']);
gulp.watch(paths.js, ['run-scripts-and-update-config']);
});
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();
});