Skip to content

Commit

Permalink
Revert "chore: disable gulp-cache due to jgable/gulp-cache#75"
Browse files Browse the repository at this point in the history
This reverts commit 16c0e11.
  • Loading branch information
3cp committed Jan 23, 2019
1 parent 16c0e11 commit 74ec5bd
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion aurelia-esnext-scss-jasmine/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function buildJs(src) {
let transpile = babel();
// Use gulp-cache if not in production mode
if (!isProduction) {
// disable gulp-cache due to jgable/gulp-cache#75 // transpile = gulpCache(transpile, {name: projectName});
transpile = gulpCache(transpile, {name: projectName});
}

// Note with gulp v4, gulp.src and gulp.dest supports sourcemaps directly
Expand Down
2 changes: 1 addition & 1 deletion aurelia-esnext-scss-jest/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function buildJs(src) {
let transpile = babel();
// Use gulp-cache if not in production mode
if (!isProduction) {
// disable gulp-cache due to jgable/gulp-cache#75 // transpile = gulpCache(transpile, {name: projectName});
transpile = gulpCache(transpile, {name: projectName});
}

// Note with gulp v4, gulp.src and gulp.dest supports sourcemaps directly
Expand Down
2 changes: 1 addition & 1 deletion connected-react-router-scss-jest/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function buildJs(src) {
let transpile = babel()
// Use gulp-cache if not in production mode
if (!isProduction) {
// disable gulp-cache due to jgable/gulp-cache#75 // transpile = gulpCache(transpile, {name: projectName})
transpile = gulpCache(transpile, {name: projectName})
}

// Note with gulp v4, gulp.src and gulp.dest supports sourcemaps directly
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function buildJs(src) {
let transpile = babel();
// Use gulp-cache if not in production mode
if (!isProduction) {
// disable gulp-cache due to jgable/gulp-cache#75 // transpile = gulpCache(transpile, {name: projectName});
transpile = gulpCache(transpile, {name: projectName});
}

// Note with gulp v4, gulp.src and gulp.dest supports sourcemaps directly
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function buildJs(src) {
let transpile = babel()
// Use gulp-cache if not in production mode
if (!isProduction) {
// disable gulp-cache due to jgable/gulp-cache#75 // transpile = gulpCache(transpile, {name: projectName})
transpile = gulpCache(transpile, {name: projectName})
}

// Note with gulp v4, gulp.src and gulp.dest supports sourcemaps directly
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function buildJs(src) {
let transpile = babel();
// Use gulp-cache if not in production mode
if (!isProduction) {
// disable gulp-cache due to jgable/gulp-cache#75 // transpile = gulpCache(transpile, {name: projectName});
transpile = gulpCache(transpile, {name: projectName});
}

// Note with gulp v4, gulp.src and gulp.dest supports sourcemaps directly
Expand Down
2 changes: 1 addition & 1 deletion runtime-composition-aurelia/host-app/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function buildJs(src) {
let transpile = babel();
// Use gulp-cache if not in production mode
if (!isProduction) {
// disable gulp-cache due to jgable/gulp-cache#75 // transpile = gulpCache(transpile, {name: projectName});
transpile = gulpCache(transpile, {name: projectName});
}

// Note with gulp v4, gulp.src and gulp.dest supports sourcemaps directly
Expand Down
2 changes: 1 addition & 1 deletion runtime-composition-aurelia/shared-ui/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function buildJs(src) {
let transpile = babel();
// Use gulp-cache if not in production mode
if (!isProduction) {
// disable gulp-cache due to jgable/gulp-cache#75 // transpile = gulpCache(transpile, {name: projectName});
transpile = gulpCache(transpile, {name: projectName});
}

// Note with gulp v4, gulp.src and gulp.dest supports sourcemaps directly
Expand Down
2 changes: 1 addition & 1 deletion vue-esnext-lazy-loading-jest/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function buildJs(src) {
let transpile = babel();
// Use gulp-cache if not in production mode
if (!isProduction) {
// disable gulp-cache due to jgable/gulp-cache#75 // transpile = gulpCache(transpile, {name: projectName});
transpile = gulpCache(transpile, {name: projectName});
}

// Note with gulp v4, gulp.src and gulp.dest supports sourcemaps directly
Expand Down
2 changes: 1 addition & 1 deletion vue-sfc-esnext-lazy-loading-jest/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function build() {
});
// Use gulp-cache if not in production mode
if (!isProduction) {
// disable gulp-cache due to jgable/gulp-cache#75 // compileVue = gulpCache(compileVue, {name: projectName});
compileVue = gulpCache(compileVue, {name: projectName});
}

// Merge all js/css/html file streams to feed greedy dumber.
Expand Down

0 comments on commit 74ec5bd

Please sign in to comment.