From aeb4ecc36095a2abd7f4a96e2e7cc70f6aa74772 Mon Sep 17 00:00:00 2001 From: AssisrMatheus Date: Mon, 15 Apr 2024 15:32:37 -0400 Subject: [PATCH] build: update how node version is defined --- CHANGELOG.md | 6 ++++++ package.json | 7 +++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b67e647..b36e705 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +## [2.1.0] - 2024-4-15 + +### Changes + +- Update how node version is set + ## [2.0.0] - 2023-10-17 ### Changes diff --git a/package.json b/package.json index 41bf1f7..b54c8ba 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@perimetre/helpers", "description": "Our bundle with all of our utilities and reusable helpers", - "version": "2.0.0", + "version": "2.1.0", "repository": { "type": "git", "url": "git+https://github.com/perimetre/helpers.git" @@ -22,8 +22,7 @@ "registry": "https://npm.pkg.github.com" }, "engines": { - "node": "^18", - "npm": "^9" + "node": "18.x" }, "scripts": { "start": "nodemon", @@ -66,4 +65,4 @@ "src/**/*": "prettier --ignore-unknown --write", "src/**/*.ts?(x)": "eslint --fix --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]'" } -} \ No newline at end of file +}