1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 02:29:26 +02:00

Replaced old jade with new pug.

Using temporarily npm-shrinkwrap since `template-html-loader` uses an old `consolidate.js` version which doesn't support `pug`.
Follow here: https://github.com/jtangelder/template-html-loader/issues/8
This commit is contained in:
Gunther Brunner 2016-08-05 18:24:30 +09:00
parent 711ab4a8e5
commit 1eb6af0119
164 changed files with 199 additions and 175 deletions

View file

@ -9,7 +9,7 @@ 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 jade = require('gulp-jade')
var pug = require('gulp-pug')
var del = require('del')
// var protractor = require('gulp-protractor')
var protractor = require('./res/test/e2e/helpers/gulp-protractor-adv')
@ -204,14 +204,14 @@ gulp.task('translate', [
, 'translate:compile'
])
gulp.task('jade', function() {
gulp.task('pug', function() {
return gulp.src([
'./res/**/*.jade'
, './res/**/*.pug'
, '!./res/bower_components/**'
])
.pipe(jade({
.pipe(pug({
locals: {
// So res/views/docs.jade doesn't complain
// So res/views/docs.pug doesn't complain
markdownFile: {
parseContent: function() {
}
@ -221,7 +221,7 @@ gulp.task('jade', function() {
.pipe(gulp.dest('./tmp/html/'))
})
gulp.task('translate:extract', ['jade'], function() {
gulp.task('translate:extract', ['pug'], function() {
return gulp.src([
'./tmp/html/**/*.html'
, './res/**/*.js'