diff --git a/.gitignore b/.gitignore index 20dae0f..531b9c6 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,9 @@ coverage # nyc test coverage .nyc_output +# tap test coverage and results +.tap + # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) .grunt @@ -146,4 +149,4 @@ yarn.lock # 0x .__browserify* -profile-* \ No newline at end of file +profile-* diff --git a/.taprc b/.taprc new file mode 100644 index 0000000..f138f76 --- /dev/null +++ b/.taprc @@ -0,0 +1 @@ +allow-incomplete-coverage: true diff --git a/package.json b/package.json index 117fc9c..416af2d 100644 --- a/package.json +++ b/package.json @@ -6,8 +6,8 @@ "types": "index.d.ts", "dependencies": { "get-caller-file": "^2.0.5", - "pino": "^8.0.0", - "pino-std-serializers": "git+https://github.com/pinojs/pino-std-serializers.git#next", + "pino": "^9.0.0", + "pino-std-serializers": "^7.0.0", "process-warning": "^2.0.0" }, "devDependencies": { @@ -20,7 +20,7 @@ "pino-pretty": "^10.0.0", "split2": "^4.0.0", "standard": "^17.0.0", - "tap": "^16.3.9", + "tap": "^18.7.2", "ts-node": "^10.3.0", "tsd": "^0.29.0", "typescript": "^5.0.2"