From fa87543840644812753f0d64a14a407d77ce74fc Mon Sep 17 00:00:00 2001 From: Jon Cursi Date: Wed, 8 May 2024 14:38:44 -0400 Subject: [PATCH 1/2] fix: Output the build as CommonJS --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 6ad8725..0a41dc7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "baseUrl": "./", "declaration": true, "esModuleInterop": true, + "module": "CommonJS", "noEmit": false, "outDir": "./dist", "typeRoots": ["./node_modules/@types"] From 3dd1cb0623b2981a1ba2f39ea9d8ffbb3b59a120 Mon Sep 17 00:00:00 2001 From: Jon Cursi Date: Wed, 8 May 2024 14:40:15 -0400 Subject: [PATCH 2/2] docs: Bump to 1.6.0 --- CHANGELOG.md | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8598064..2046bb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.6.0](https://github.com/nrccua/apollo-rest-utils/compare/1.5.9...1.6.0) (2024-05-08) + ### [1.5.9](https://github.com/nrccua/apollo-rest-utils/compare/1.6.0...1.5.9) (2024-05-08) diff --git a/package-lock.json b/package-lock.json index 1d1be49..c23338e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@encoura/apollo-rest-utils", - "version": "1.5.9", + "version": "1.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@encoura/apollo-rest-utils", - "version": "1.5.9", + "version": "1.6.0", "license": "MIT", "dependencies": { "@apidevtools/swagger-parser": "^10.1.0", diff --git a/package.json b/package.json index 28d79fe..3ff9a4e 100644 --- a/package.json +++ b/package.json @@ -80,5 +80,5 @@ "update:version:major": "standard-version --release-as major && npm run test:lint:md", "update:version:minor": "standard-version --release-as minor && npm run test:lint:md" }, - "version": "1.5.9" + "version": "1.6.0" }