@netlify/zip-it-and-ship-it
Advanced tools
Comparing version 0.2.4 to 0.2.5
@@ -10,2 +10,8 @@ # Changelog | ||
## [v0.2.5](https://github.com/netlify/zip-it-and-ship-it/compare/v0.2.4...v0.2.5) - 2019-04-09 | ||
### Merged | ||
- Fix sha stability for zip files [`#26`](https://github.com/netlify/zip-it-and-ship-it/pull/26) | ||
## [v0.2.4](https://github.com/netlify/zip-it-and-ship-it/compare/v0.2.4-beta.10...v0.2.4) - 2019-04-04 | ||
@@ -12,0 +18,0 @@ |
{ | ||
"name": "@netlify/zip-it-and-ship-it", | ||
"description": "Zip it and ship it", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"author": "Netlify, Inc", | ||
@@ -6,0 +6,0 @@ "bin": { |
@@ -96,3 +96,3 @@ const path = require("path"); | ||
mode: stat.mode, | ||
date: stat.mtime, | ||
date: new Date(0), // Ensure sha256 stability regardless of mtime | ||
stats: stat | ||
@@ -117,3 +117,3 @@ }); | ||
mode: stat.mode, | ||
date: stat.mtime, | ||
date: new Date(0), // Ensure sha256 stability regardless of mtime | ||
stats: stat | ||
@@ -120,0 +120,0 @@ }); |
34429