1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-03 17:59:28 +02:00

gulp-clean is deprecated now. Switching to gulp-rimraf.

This commit is contained in:
Gunther Brunner 2014-09-10 18:33:04 +09:00
parent 843e5f65e1
commit 76f5f14ace

View file

@ -8,7 +8,7 @@ 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 clean = require('gulp-clean')
var rimraf = require('gulp-rimraf')
//var protractor = require('gulp-protractor')
var protractor = require('./res/test/e2e/helpers/gulp-protractor-adv')
var protractorConfig = './res/test/protractor.conf'
@ -202,5 +202,5 @@ gulp.task('translate:compile', ['translate:extract'], function (cb) {
gulp.task('clean', function () {
return gulp.src(['./tmp', './res/build'], {read: false})
.pipe(clean())
.pipe(rimraf())
})