1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-03 17:59:28 +02:00
OpenSTF/gulpfile.js
2014-07-02 20:10:19 +09:00

144 lines
3.6 KiB
JavaScript

var gulp = require('gulp')
var gutil = require('gulp-util')
var jshint = require('gulp-jshint')
var jsonlint = require('gulp-jsonlint')
var webpack = require('webpack')
var ngminPlugin = require('ngmin-webpack-plugin')
var webpackConfig = require('./webpack.config.js')
var webpackStatusConfig = require('./res/common/status/webpack.config.js')
var gettext = require('gulp-angular-gettext')
var jade = require('gulp-jade')
var clean = require('gulp-clean')
var protractor = require("gulp-protractor")
gulp.task('jshint', function () {
return gulp.src([
'lib/**/*.js'
, 'res/app/**/*.js'
, 'res/auth-ldap/**/*.js'
, 'res/auth-mock/**/*.js'
, '*.js'
])
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'))
})
gulp.task('jsonlint', function () {
return gulp.src([
'.jshintrc'
, 'res/.jshintrc'
, '.bowerrc'
, '.yo-rc.json'
, '*.json'
])
.pipe(jsonlint())
.pipe(jsonlint.reporter())
})
gulp.task('lint', ['jshint', 'jsonlint'])
gulp.task('test', ['lint', 'protractor'])
gulp.task('build', ['translate', 'webpack:build'])
gulp.task('webdriver_update', protractor.webdriver_update)
gulp.task('webdriver_standalone', protractor.webdriver_standalone)
gulp.task('protractor', ['webdriver_update'], function (callback) {
gulp.src(["./res/test/**/*.js"])
.pipe(protractor.protractor({
configFile: './res/test/protractor.conf.js'
}))
.on('error', function (e) {
console.log(e)
}).on('end', callback)
})
// 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')
}
}),
new webpack.optimize.DedupePlugin(),
new ngminPlugin(),
// TODO: mangle when ngmin works
new webpack.optimize.UglifyJsPlugin({mangle: false})
)
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
}))
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')
}
}),
new webpack.optimize.DedupePlugin()
// new ngminPlugin(),
// new webpack.optimize.UglifyJsPlugin({mangle: false})
)
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', ['jade', 'translate:extract', 'translate:compile'])
gulp.task('jade', function () {
return gulp.src([
'./res/**/*.jade'
, '!./res/bower_components/**'
])
.pipe(jade())
.pipe(gulp.dest('./tmp/html/'))
})
gulp.task('translate:extract', 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('clean', function () {
return gulp.src(['./tmp', './res/build'], {read: false})
.pipe(clean())
})