etag-hash 2.3.9 → 2.3.10

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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +8 -6
package/README.md CHANGED
@@ -31,6 +31,8 @@ const etag = createHash().update(contents).digest();
31
31
 
32
32
  ETags compatible with s3, API similar to the crypto module to be compatible with streams. 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.
33
33
 
34
+ ---
35
+
34
36
  ## Education and Tutorials
35
37
 
36
38
  1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
@@ -105,4 +107,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
105
107
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
106
108
 
107
109
  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.
108
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "etag-hash",
3
- "version": "2.3.9",
3
+ "version": "2.3.10",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "Es6 class that generates ETag using the same algorithm as S3 via MD5 sum.",
6
6
  "main": "index.js",
@@ -20,11 +20,10 @@
20
20
  "url": "https://github.com/launchql/launchql/issues"
21
21
  },
22
22
  "scripts": {
23
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24
- "clean": "rimraf dist/**",
23
+ "clean": "makage clean",
25
24
  "prepack": "npm run build",
26
- "build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
27
- "build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
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"
@@ -38,5 +37,8 @@
38
37
  "etag",
39
38
  "md5"
40
39
  ],
41
- "gitHead": "4cd832ebee39d7be9375340e8e3283692d15b464"
40
+ "devDependencies": {
41
+ "makage": "^0.1.6"
42
+ },
43
+ "gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
42
44
  }