This repository has been archived by the owner on Nov 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
gulpfile.js
150 lines (137 loc) · 4.71 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
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 browserify = require('browserify');
//var browserify = require('gulp-browserify');
var clean_json = require("gulp-clean-json");
var replace = require('gulp-replace');
var uglify = require("gulp-uglify");
var source = require("vinyl-source-stream");
var buffer = require("vinyl-buffer");
var paths = {
sass: ['./scss/**/*.scss'],
tr: ['./src/posts/locales/*.json'],
scripts: ['./src/**/*.js', './src/**/*.html']
//browserify: ['./node_modules/steem-rpc/*.js']
};
gulp.task('default', ['sass']);
gulp.task('sass', function(done) {
gulp.src('./scss/*.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('scripts', function(){
browserify({
entries: './src/app.js',
debug: true,
transform: ['brfs']
})
.bundle()
.pipe(source('index.js'))
.pipe(buffer())
//.pipe(uglify())
//.pipe(removeUseStrict())
//.pipe(replace(/('|")use strict\1/g, ';'))
.pipe(gulp.dest('./www/js'));
gulp.src([
'./bower_components/jquery/dist/jquery.js',
'./bower_components/angular/angular.js',
'./bower_components/angular-animate/angular-animate.js',
'./bower_components/angular-sanitize/angular-sanitize.js',
'./bower_components/angular-ui-router/release/angular-ui-router.js',
'./bower_components/ionic/js/ionic.js',
'./bower_components/ionic/js/ionic-angular.js',
'./bower_components/ngstorage/ngStorage.js',
'./bower_components/ngCordova/dist/ng-cordova.js',
'./bower_components/angular-translate/angular-translate.js',
'./bower_components/ion-floating-menu/dist/ion-floating-menu.js',
'./bower_components/qrcode.js/lib/qrcode.js',
'./bower_components/angular-qr/src/angular-qr.js',
'./bower_components/highcharts-ng/dist/highcharts-ng.js',
'./bower_components/ionic-image-lazy-load/ionic-image-lazy-load.js'
//'./bower_components/default-passive-events/default-passive-events.js'
])
.pipe(concat('lib.js'))
.pipe(gulp.dest('./www/js'));
});
/*gulp.task('scripts', function() {
gulp.src('./src/app.js')
.pipe(browserify({
insertGlobals : true,
debug : !gulp.env.production,
transform: ['brfs']
}).on('error', gutil.log))
.pipe(rename('index.js'))
.pipe(gulp.dest('./www/js'));
gulp.src([
'./bower_components/jquery/dist/jquery.js',
'./bower_components/angular/angular.js',
'./bower_components/angular-animate/angular-animate.js',
'./bower_components/angular-sanitize/angular-sanitize.js',
'./bower_components/angular-ui-router/release/angular-ui-router.js',
'./bower_components/ionic/js/ionic.js',
'./bower_components/ionic/js/ionic-angular.js',
'./bower_components/ngstorage/ngStorage.js',
'./bower_components/ngCordova/dist/ng-cordova.js',
'./bower_components/angular-translate/angular-translate.js',
'./bower_components/ion-floating-menu/dist/ion-floating-menu.js',
'./bower_components/qrcode.js/lib/qrcode.js',
'./bower_components/angular-qr/src/angular-qr.js',
'./bower_components/highcharts-ng/dist/highcharts-ng.js'
])
.pipe(concat('lib.js'))
.pipe(gulp.dest('./www/js'));
});
*/
gulp.task('clean_translations', function(done) {
gulp.src("./src/posts/locales/*.json")
.pipe(clean_json())
.pipe(gulp.dest("./src/posts/locales/ready/"));
});
/*
gulp.task('browserify', function() {
gulp.src('./node_modules/steem-rpc/*.js')
.pipe(browserify({
insertGlobals : true,
debug : !gulp.env.production,
transform: ['brfs']
}))
.pipe(rename('esteem-lib.js'))
.pipe(gulp.dest('./'));
});*/
gulp.task('watch', function() {
gulp.watch(paths.sass, ['sass']);
gulp.watch(paths.tr, ['clean_translations']);
gulp.watch(paths.scripts, ['scripts']);
});
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();
});