@netlify/zip-it-and-ship-it 14.7.0 → 14.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -81,7 +81,8 @@ const bundle = async ({ basePath, config = {}, extension, featureFlags, filename
81
81
  mainFile: normalizedMainFile,
82
82
  moduleFormat,
83
83
  nativeNodeModules,
84
- srcFiles: [...supportingSrcFiles, ...bundlePaths.keys()],
84
+ // We sort so that the archive's checksum is deterministic.
85
+ srcFiles: [...supportingSrcFiles, ...bundlePaths.keys()].sort(),
85
86
  };
86
87
  };
87
88
  const bundler = { bundle, getSrcFiles };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/zip-it-and-ship-it",
3
- "version": "14.7.0",
3
+ "version": "14.7.1",
4
4
  "description": "Zip it and ship it",
5
5
  "main": "./dist/main.js",
6
6
  "type": "module",
@@ -100,5 +100,5 @@
100
100
  "engines": {
101
101
  "node": ">=18.14.0"
102
102
  },
103
- "gitHead": "0e2b212c4ffae1e07159374df9991584e5b4bb0b"
103
+ "gitHead": "bb7d2985523c2ca7a13f46bf8a45ec57318e9c51"
104
104
  }