From 17e7a10c82b07f3ef63a4235a842159d6c08a7d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sat, 21 Dec 2024 14:01:50 +0100 Subject: [PATCH 1/2] test: ignore TS errors from dependencies Silences an error coming from `@types/readable-stream`, which cannot be fixed in this package. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 89937fc..2d3015e 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "lint": "standard *.js test/*.js", "test": "npm run lint && npm run test:types && node test/test.js | faucet", "test:ci": "npm run lint && node test/test.js && npm run test:types", - "test:types": "tsc --target esnext --moduleResolution node --allowJs --noEmit test/test.js", + "test:types": "tsc --target esnext --moduleResolution node --allowJs --noEmit --skipLibCheck test/test.js", "build": "true" }, "repository": { From da1fcf7b804bfdbdcce36f8598aa9643583cf262 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 30 Dec 2024 03:07:37 +0000 Subject: [PATCH 2/2] chore(release): 6.0.17 [skip ci] ## [6.0.17](https://github.com/rvagg/bl/compare/v6.0.16...v6.0.17) (2024-12-30) ### Tests * ignore TS errors from dependencies ([17e7a10](https://github.com/rvagg/bl/commit/17e7a10c82b07f3ef63a4235a842159d6c08a7d0)) --- CHANGELOG.md | 6 ++++++ package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcc1b0e..82f54b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [6.0.17](https://github.com/rvagg/bl/compare/v6.0.16...v6.0.17) (2024-12-30) + +### Tests + +* ignore TS errors from dependencies ([17e7a10](https://github.com/rvagg/bl/commit/17e7a10c82b07f3ef63a4235a842159d6c08a7d0)) + ## [6.0.16](https://github.com/rvagg/bl/compare/v6.0.15...v6.0.16) (2024-09-25) ### Trivial Changes diff --git a/package.json b/package.json index 2d3015e..5820041 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bl", - "version": "6.0.16", + "version": "6.0.17", "description": "Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!", "license": "MIT", "main": "bl.js",