stream-to-etag 2.3.9 → 2.3.11
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.
- package/README.md +2 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -30,6 +30,8 @@ npm install stream-to-etag
|
|
|
30
30
|
|
|
31
31
|
ETags compatible with s3, thanks to the author of [this post](https://stackoverflow.com/questions/12186993/what-is-the-algorithm-to-compute-the-amazon-s3-etag-for-a-file-larger-than-5gb#answer-19896823) for the breakdown of the algorithm.
|
|
32
32
|
|
|
33
|
+
---
|
|
34
|
+
|
|
33
35
|
## Education and Tutorials
|
|
34
36
|
|
|
35
37
|
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
@@ -104,4 +106,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
104
106
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
105
107
|
|
|
106
108
|
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
|
|
107
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-to-etag",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.11",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "Calculates Etag/S3 MD5 sum given a readable stream. Uses the same algorithm that S3 uses to calculate the ETag.",
|
|
6
6
|
"main": "index.js",
|
|
@@ -20,11 +20,10 @@
|
|
|
20
20
|
"url": "https://github.com/launchql/launchql/issues"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
|
-
"
|
|
24
|
-
"clean": "rimraf dist/**",
|
|
23
|
+
"clean": "makage clean",
|
|
25
24
|
"prepack": "npm run build",
|
|
26
|
-
"build": "
|
|
27
|
-
"build:dev": "
|
|
25
|
+
"build": "makage build",
|
|
26
|
+
"build:dev": "makage build --dev",
|
|
28
27
|
"lint": "eslint . --fix",
|
|
29
28
|
"test": "jest",
|
|
30
29
|
"test:watch": "jest --watch"
|
|
@@ -36,10 +35,11 @@
|
|
|
36
35
|
"etag"
|
|
37
36
|
],
|
|
38
37
|
"dependencies": {
|
|
39
|
-
"etag-hash": "^2.3.
|
|
38
|
+
"etag-hash": "^2.3.11"
|
|
40
39
|
},
|
|
41
40
|
"devDependencies": {
|
|
42
|
-
"glob": "^13.0.0"
|
|
41
|
+
"glob": "^13.0.0",
|
|
42
|
+
"makage": "^0.1.8"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "3812f24a480b2035b3413ec7fecfe492f294e590"
|
|
45
45
|
}
|