From 39c3c6fccc464fbc4a05e1a53df17b4584780f23 Mon Sep 17 00:00:00 2001 From: pr0uxx Date: Wed, 22 Jul 2026 09:47:50 +0100 Subject: [PATCH] Bump version and fix package export Release 3.0.1 and correct the root `exports` entry to point at `./bin/index.js` instead of the invalid `./bin/src/index.js`, so package consumers resolve the main import correctly. --- package-lock.json | 4 ++-- package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 81f8d95..490a0b1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@software-hardware-integration-lab/development-utilities", - "version": "3.0.0", + "version": "3.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@software-hardware-integration-lab/development-utilities", - "version": "3.0.0", + "version": "3.0.1", "license": "MIT", "dependencies": { "@eslint/js": "~10.0.1", diff --git a/package.json b/package.json index cc702bb..f8688d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@software-hardware-integration-lab/development-utilities", - "version": "3.0.0", + "version": "3.0.1", "description": "Collection of configurations, settings and packages to be common across multiple products/repositories.", "main": "bin/index.js", "type": "module", @@ -14,7 +14,7 @@ }, "exports": { ".": { - "import": "./bin/src/index.js" + "import": "./bin/index.js" }, "./optimized/lint/*.js": { "import": "./bin/config/linter/*.js"