Merge lp:~stephen-stewart/ulysses/async-del into lp:ulysses

Proposed by Stephen Stewart
Status: Merged
Approved by: James Westby
Approved revision: 53
Merged at revision: 53
Proposed branch: lp:~stephen-stewart/ulysses/async-del
Merge into: lp:ulysses
Diff against target: 15 lines (+2/-2)
1 file modified
gulpfile.js (+2/-2)
To merge this branch: bzr merge lp:~stephen-stewart/ulysses/async-del
Reviewer Review Type Date Requested Status
James Westby (community) Approve
Review via email: mp+244000@code.launchpad.net

Commit message

make delete async

Description of the change

make delete async

To post a comment you must log in.
Revision history for this message
James Westby (james-w) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'gulpfile.js'
--- gulpfile.js 2014-10-09 14:35:24 +0000
+++ gulpfile.js 2014-12-08 15:10:22 +0000
@@ -46,9 +46,9 @@
46 .pipe(gulp.dest(paths.dest));46 .pipe(gulp.dest(paths.dest));
47});47});
4848
49gulp.task('clean', function() {49gulp.task('clean', function(cb) {
50 // You can use multiple globbing patterns as you would with `gulp.src`50 // You can use multiple globbing patterns as you would with `gulp.src`
51 del([paths.dest]);51 del([paths.dest], cb);
52});52});
5353
54gulp.task('copy', function() {54gulp.task('copy', function() {

Subscribers

People subscribed via source and target branches