simpleflakes 3.0.2 → 3.0.3
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 +1 -4
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -314,10 +314,7 @@ npm test
|
|
|
314
314
|
# Run with coverage
|
|
315
315
|
npm run test:coverage
|
|
316
316
|
|
|
317
|
-
#
|
|
318
|
-
npm run test:compatibility
|
|
319
|
-
|
|
320
|
-
# Run all CI tests (coverage + compatibility)
|
|
317
|
+
# Run all CI tests (coverage)
|
|
321
318
|
npm run test:ci
|
|
322
319
|
|
|
323
320
|
# Type checking
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simpleflakes",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"description": "Fast, and reliable, distributed 64-bit ID generation, in pure JavaScript, for Node.js.",
|
|
5
5
|
"main": "dist/simpleflakes.js",
|
|
6
6
|
"types": "dist/simpleflakes.d.ts",
|
|
@@ -16,13 +16,12 @@
|
|
|
16
16
|
"postbuild": "echo 'TypeScript compilation complete. Output in ./dist/'",
|
|
17
17
|
"type-check": "tsc --noEmit",
|
|
18
18
|
"test": "npm run build && tape tests/**/*.js | faucet",
|
|
19
|
-
"test:
|
|
20
|
-
"test:ci": "npm run test:coverage && npm run test:compatibility",
|
|
19
|
+
"test:ci": "npm run test:coverage",
|
|
21
20
|
"test:coverage": "npm run build && nyc --instrument --source-map=false tape tests/**/*.js",
|
|
22
21
|
"test:coverage:report": "nyc report --reporter=html && echo '\nHTML coverage report generated in ./coverage/index.html'",
|
|
23
|
-
"test:coverage:ci": "
|
|
22
|
+
"test:coverage:ci": "npm run test:coverage && cat ./coverage/lcov.info",
|
|
24
23
|
"test:coverage:clean": "rimraf coverage .nyc_output",
|
|
25
|
-
"benchmark": "npm run build && node
|
|
24
|
+
"benchmark": "npm run build && node benchmark/run.js",
|
|
26
25
|
"clean": "npm run build:clean && npm run test:coverage:clean"
|
|
27
26
|
},
|
|
28
27
|
"repository": {
|