Skip to content

Commit

Permalink
Merge c5e0ca2 into 6c25576
Browse files Browse the repository at this point in the history
  • Loading branch information
jtnjnty committed Jun 9, 2016
2 parents 6c25576 + c5e0ca2 commit 5b4c080
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/utils/applyCacheHeaders.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = function (file, route) {
file.s3.headers["Cache-Control"] = directives.join(", ");

if ( route.useExpires ) {
file.s3.headers.Expires = new Date(Date.now() + route.cacheTime * 1000).toUTCString();
file.s3.headers.Expires = new Date(Date.now() + route.cacheTime * 1000);
}
}
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-awspublish-router",
"version": "0.1.1",
"version": "0.1.2",
"description": "Define your build sources in HTML.",
"main": "index.js",
"directories": {
Expand Down

0 comments on commit 5b4c080

Please sign in to comment.