forked from DeviceFarmer/stf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
259 lines (227 loc) · 6.23 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
var path = require('path')
var gulp = require('gulp')
var gutil = require('gulp-util')
var jsonlint = require('gulp-jsonlint')
var eslint = require('gulp-eslint')
var EslintCLIEngine = require('eslint').CLIEngine
var webpack = require('webpack')
var webpackConfig = require('./webpack.config').webpack
var webpackStatusConfig = require('./res/common/status/webpack.config')
var gettext = require('gulp-angular-gettext')
var pug = require('gulp-pug')
var del = require('del')
// var protractor = require('gulp-protractor')
var protractor = require('./res/test/e2e/helpers/gulp-protractor-adv')
var protractorConfig = './res/test/protractor.conf'
var karma = require('karma').server
var karmaConfig = '/res/test/karma.conf.js'
var stream = require('stream')
var run = require('gulp-run')
gulp.task('jsonlint', function() {
return gulp.src([
'.bowerrc'
, '.yo-rc.json'
, '*.json'
])
.pipe(jsonlint())
.pipe(jsonlint.reporter())
})
// Try to use eslint-cli directly instead of eslint-gulp
// since it doesn't support cache yet
gulp.task('eslint', function() {
return gulp.src([
'lib/**/*.js'
, 'res/**/*.js'
, '!res/bower_components/**'
, '*.js'
])
// eslint() attaches the lint output to the "eslint" property
// of the file object so it can be used by other modules.
.pipe(eslint())
// eslint.format() outputs the lint results to the console.
// Alternatively use eslint.formatEach() (see Docs).
.pipe(eslint.format())
// To have the process exit with an error code (1) on
// lint error, return the stream and pipe to failAfterError last.
.pipe(eslint.failAfterError())
})
gulp.task('eslint-cli', function(done) {
var cli = new EslintCLIEngine({
cache: true
, fix: false
})
var report = cli.executeOnFiles([
'lib/**/*.js'
, 'res/app/**/*.js'
, 'res/auth/**/*.js'
, 'res/common/**/*.js'
, 'res/test/**/*.js'
, 'res/web_modules/**/*.js'
, '*.js'
])
var formatter = cli.getFormatter()
console.log(formatter(report.results))
if (report.errorCount > 0) {
done(new gutil.PluginError('eslint-cli', new Error('ESLint error')))
}
else {
done()
}
})
gulp.task('lint', ['jsonlint', 'eslint-cli'])
gulp.task('test', ['lint', 'run:checkversion'])
gulp.task('build', ['clean', 'webpack:build'])
gulp.task('run:checkversion', function() {
gutil.log('Checking STF version...')
return run('./bin/stf -V').exec()
})
gulp.task('karma_ci', function(done) {
karma.start({
configFile: path.join(__dirname, karmaConfig)
, singleRun: true
}, done)
})
gulp.task('karma', function(done) {
karma.start({
configFile: path.join(__dirname, karmaConfig)
}, done)
})
if (gutil.env.multi) {
protractorConfig = './res/test/protractor-multi.conf'
}
else if (gutil.env.appium) {
protractorConfig = './res/test/protractor-appium.conf'
}
gulp.task('webdriver-update', protractor.webdriverUpdate)
gulp.task('webdriver-standalone', protractor.webdriverStandalone)
gulp.task('protractor-explorer', function(callback) {
protractor.protractorExplorer({
url: require(protractorConfig).config.baseUrl
}, callback)
})
gulp.task('protractor', ['webdriver-update'], function(callback) {
gulp.src(['./res/test/e2e/**/*.js'])
.pipe(protractor.protractor({
configFile: protractorConfig
, debug: gutil.env.debug
, suite: gutil.env.suite
}))
.on('error', function(e) {
console.log(e)
/* eslint no-console: 0 */
})
.on('end', callback)
})
// For piping strings
function fromString(filename, string) {
var src = new stream.Readable({objectMode: true})
src._read = function() {
this.push(new gutil.File({
cwd: ''
, base: ''
, path: filename
, contents: new Buffer(string)
}))
this.push(null)
}
return src
}
// For production
gulp.task('webpack:build', function(callback) {
var myConfig = Object.create(webpackConfig)
myConfig.plugins = myConfig.plugins.concat(
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
})
)
myConfig.devtool = false
webpack(myConfig, function(err, stats) {
if (err) {
throw new gutil.PluginError('webpack:build', err)
}
gutil.log('[webpack:build]', stats.toString({
colors: true
}))
// Save stats to a json file
// Can be analyzed in http://webpack.github.io/analyse/
fromString('stats.json', JSON.stringify(stats.toJson()))
.pipe(gulp.dest('./tmp/'))
callback()
})
})
gulp.task('webpack:others', function(callback) {
var myConfig = Object.create(webpackStatusConfig)
myConfig.plugins = myConfig.plugins.concat(
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
})
)
myConfig.devtool = false
webpack(myConfig, function(err, stats) {
if (err) {
throw new gutil.PluginError('webpack:others', err)
}
gutil.log('[webpack:others]', stats.toString({
colors: true
}))
callback()
})
})
gulp.task('translate', [
'translate:extract'
, 'translate:push'
, 'translate:pull'
, 'translate:compile'
])
gulp.task('pug', function() {
return gulp.src([
'./res/**/*.pug'
, '!./res/bower_components/**'
])
.pipe(pug({
locals: {
// So res/views/docs.pug doesn't complain
markdownFile: {
parseContent: function() {
}
}
}
}))
.pipe(gulp.dest('./tmp/html/'))
})
gulp.task('translate:extract', ['pug'], function() {
return gulp.src([
'./tmp/html/**/*.html'
, './res/**/*.js'
, '!./res/bower_components/**'
, '!./res/build/**'
])
.pipe(gettext.extract('stf.pot'))
.pipe(gulp.dest('./res/common/lang/po/'))
})
gulp.task('translate:compile', function() {
return gulp.src('./res/common/lang/po/**/*.po')
.pipe(gettext.compile({
format: 'json'
}))
.pipe(gulp.dest('./res/common/lang/translations/'))
})
gulp.task('translate:push', function() {
gutil.log('Pushing translation source to Transifex...')
return run('tx push -s').exec()
})
gulp.task('translate:pull', function() {
gutil.log('Pulling translations from Transifex...')
return run('tx pull').exec()
})
gulp.task('clean', function(cb) {
del([
'./tmp'
, './res/build'
, '.eslintcache'
], cb)
})