From 6113ebad93244d8e6063763ef7d07f91cc19d658 Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 8 Nov 2024 16:01:30 +0100 Subject: [PATCH] chore: release v0.5.1 --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- src/utils.ts | 1 - 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf03ed9..8e747fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Changelog +## v0.5.0...main + +[compare changes](https://github.com/stacksjs/dtsx/compare/v0.5.0...main) + +### 🏡 Chore + +- Fix lint issues ([6d8ba64](https://github.com/stacksjs/dtsx/commit/6d8ba64)) +- Add some jsdocs ([de495ee](https://github.com/stacksjs/dtsx/commit/de495ee)) +- Add two examples ([0e996ab](https://github.com/stacksjs/dtsx/commit/0e996ab)) +- Remove unused script ([c2ecc45](https://github.com/stacksjs/dtsx/commit/c2ecc45)) +- Several minor adjustments ([a6ef9a1](https://github.com/stacksjs/dtsx/commit/a6ef9a1)) + +### ❤️ Contributors + +- Chris ([@chrisbbreuer](http://github.com/chrisbbreuer)) + ## v0.4.0...main [compare changes](https://github.com/stacksjs/dtsx/compare/v0.4.0...main) diff --git a/package.json b/package.json index 18e4857..8a60450 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@stacksjs/dtsx", "type": "module", - "version": "0.5.0", + "version": "0.5.1", "description": "A modern, fast .d.ts generation tool, powered by Bun.", "author": "Chris Breuer ", "license": "MIT", diff --git a/src/utils.ts b/src/utils.ts index b8b45e8..ef6657b 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -24,7 +24,6 @@ export async function checkIsolatedDeclarations(options?: DtsGenerationConfig): try { const cwd = options?.cwd || process.cwd() const tsconfigPath = options?.tsconfigPath || join(cwd, 'tsconfig.json') - console.log('tsconfigPath', tsconfigPath) const tsconfig = await import(tsconfigPath) return tsconfig.compilerOptions?.isolatedDeclarations === true