mirror of
https://github.com/openstf/stf
synced 2025-10-04 02:09:32 +02:00
- Adding languages support.
- Adding webpack bundle building support.
This commit is contained in:
parent
7ccb1bbcd6
commit
c17176a985
9 changed files with 389 additions and 8 deletions
74
gulpfile.js
74
gulpfile.js
|
@ -1,20 +1,26 @@
|
|||
var gulp = require('gulp')
|
||||
var gutil = require('gulp-util')
|
||||
var jshint = require('gulp-jshint')
|
||||
var jsonlint = require('gulp-jsonlint')
|
||||
var webpack = require('webpack')
|
||||
var webpackConfig = require('./webpack.config.js')
|
||||
var gettext = require('gulp-angular-gettext')
|
||||
var jade = require('gulp-jade')
|
||||
var clean = require('gulp-clean')
|
||||
|
||||
gulp.task('jshint', function() {
|
||||
gulp.task('jshint', function () {
|
||||
return gulp.src([
|
||||
'lib/**/*.js'
|
||||
'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() {
|
||||
gulp.task('jsonlint', function () {
|
||||
return gulp.src(['.jshintrc', '.bowerrc', '.yo-rc.json', '*.json'])
|
||||
.pipe(jsonlint())
|
||||
.pipe(jsonlint.reporter())
|
||||
|
@ -23,6 +29,66 @@ gulp.task('jsonlint', function() {
|
|||
gulp.task('lint', ['jshint', 'jsonlint'])
|
||||
gulp.task('test', ['lint'])
|
||||
|
||||
gulp.task('build', ['webpack:build'], function () {
|
||||
})
|
||||
|
||||
// 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 webpack.optimize.UglifyJsPlugin()
|
||||
)
|
||||
|
||||
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('translate', ['jade', 'translate:extract', 'translate:compile'],
|
||||
function () {
|
||||
})
|
||||
|
||||
gulp.task('jade', function () {
|
||||
return gulp.src(['./res/**/*.jade', '!./res/bower_components/**'])
|
||||
.pipe(jade())
|
||||
.pipe(gulp.dest('./tmp/html/'))
|
||||
})
|
||||
|
||||
gulp.task('translate:extract', function () {
|
||||
//'./res/**/*.js'
|
||||
return gulp.src(['./tmp/html/**/*.html',
|
||||
'!./res/bower_components/**'])
|
||||
.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 () {
|
||||
gulp.src('./tmp', {read: false})
|
||||
.pipe(clean())
|
||||
});
|
||||
|
||||
|
||||
// TODO: convert this to gulp
|
||||
// 1. extract task: jade->html+js->pot
|
||||
// 2. compile task: po->js
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue