From b3029fcc55aba6f15d2fbec0651de205c310a5eb Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Tue, 6 May 2025 16:15:06 -0400 Subject: [PATCH 1/2] fix: ESM export incorrect --- src/index.ts | 2 +- tsconfig.esm.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 66a14ee..47ec3ce 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,4 +10,4 @@ export { gte, lte, valid -} from './utils/custom-semver'; \ No newline at end of file +} from './utils/custom-semver.js'; \ No newline at end of file diff --git a/tsconfig.esm.json b/tsconfig.esm.json index 1615532..fb895bf 100644 --- a/tsconfig.esm.json +++ b/tsconfig.esm.json @@ -2,6 +2,7 @@ "extends": "./tsconfig.json", "compilerOptions": { "outDir": "./dist/esm", - "module": "ESNext" + "module": "NodeNext", + "moduleResolution": "NodeNext" } } \ No newline at end of file From 0d3a35ad309b138923389ca224b41148a3abeabb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 May 2025 16:16:59 -0400 Subject: [PATCH 2/2] chore(main): release 1.2.1 (#11) :robot: I have created a release *beep* *boop* --- ## [1.2.1](https://github.com/unraid/custom-semver/compare/v1.2.0...v1.2.1) (2025-05-06) ### Bug Fixes * ESM export incorrect ([b3029fc](https://github.com/unraid/custom-semver/commit/b3029fcc55aba6f15d2fbec0651de205c310a5eb)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ccbbdf..d29ef45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.2.1](https://github.com/unraid/custom-semver/compare/v1.2.0...v1.2.1) (2025-05-06) + + +### Bug Fixes + +* ESM export incorrect ([b3029fc](https://github.com/unraid/custom-semver/commit/b3029fcc55aba6f15d2fbec0651de205c310a5eb)) + ## [1.2.0](https://github.com/unraid/custom-semver/compare/v1.1.0...v1.2.0) (2025-05-05) diff --git a/package.json b/package.json index 7a2824d..6f7fce7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@unraid/custom-semver", - "version": "1.2.0", + "version": "1.2.1", "publishConfig": { "access": "public" },