uuid-hash 2.2.8 → 2.2.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.
- package/README.md +2 -1
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -29,6 +29,8 @@ const identifier = uuid.createHash().update(contents).digest();
|
|
|
29
29
|
|
|
30
30
|
Just like [node-uuid](https://github.com/kelektiv/node-uuid) for uuid v5, but removed the need to have all contents in-memory to be compatible with streams. API similar to the crypto module.
|
|
31
31
|
|
|
32
|
+
---
|
|
33
|
+
|
|
32
34
|
## Education and Tutorials
|
|
33
35
|
|
|
34
36
|
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
@@ -103,4 +105,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
103
105
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
104
106
|
|
|
105
107
|
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.
|
|
106
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uuid-hash",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.10",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "Es6 class that generates RFC-compliant UUID v5.",
|
|
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"
|
|
@@ -35,5 +34,8 @@
|
|
|
35
34
|
"uuidv5",
|
|
36
35
|
"uuid"
|
|
37
36
|
],
|
|
38
|
-
"
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"makage": "^0.1.8"
|
|
39
|
+
},
|
|
40
|
+
"gitHead": "3812f24a480b2035b3413ec7fecfe492f294e590"
|
|
39
41
|
}
|