Skip to content

Commit

Permalink
Meta tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Aug 18, 2019
1 parent f68ed4a commit 29f79cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const gulp = require('gulp');
const zip = require('.');

gulp.task('default', () =>
exports.default = () => (
gulp.src('fixture/fixture.txt')
.pipe(zip('test.zip'))
.pipe(gulp.dest('dest'))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"yazl": "^2.5.1"
},
"devDependencies": {
"ava": "^1.4.1",
"ava": "^2.3.0",
"decompress-unzip": "^3.0.0",
"gulp": "^4.0.2",
"vinyl-assign": "^1.2.1",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $ npm install --save-dev gulp-zip
const gulp = require('gulp');
const zip = require('gulp-zip');

gulp.task('default', () =>
exports.default = () => (
gulp.src('src/*')
.pipe(zip('archive.zip'))
.pipe(gulp.dest('dist'))
Expand Down

0 comments on commit 29f79cf

Please sign in to comment.