Skip to content

Commit

Permalink
write gz file to disk so docs build script can pick it up [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Jul 23, 2015
1 parent 79b6eac commit 97ae25c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/grunt-tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module.exports = function (grunt) {
zlib.gzip(buf, function (err, buf) {
if (err) return done(err)
report('dist/vue.min.js.gz', buf)
done()
fs.writeFile('dist/vue.min.js.gz', buf, done)
})
})
}
Expand Down

0 comments on commit 97ae25c

Please sign in to comment.