From 89dca45b321a6ce42cb2768c3594771374402d42 Mon Sep 17 00:00:00 2001 From: jimmy-guzman Date: Fri, 25 Aug 2023 17:01:04 -0500 Subject: [PATCH 1/3] =?UTF-8?q?chore:=20=F0=9F=A4=96=20bump=20node=20to=20?= =?UTF-8?q?v20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/install/action.yml | 2 +- .github/workflows/pull_request.yml | 2 +- .nvmrc | 2 +- README.md | 2 +- package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index 4896742..0aae566 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -4,7 +4,7 @@ description: Install everything for the repo inputs: node-version: description: Version of Node to use - default: 18.x + default: 20.x pnpm-version: description: Version of pnpm to use diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index f9f7a59..84e0f2b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -13,7 +13,7 @@ jobs: - name: 📦 Install uses: ./.github/actions/install with: - node-version: 18 + node-version: 20 pnpm-version: 8.3.1 - name: 🚨 Lint diff --git a/.nvmrc b/.nvmrc index 3c03207..209e3ef 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18 +20 diff --git a/README.md b/README.md index 1f23628..14930b5 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ degit jimmy-guzman/react-starter ## Getting Started -Make sure you're using [node 18](https://nodejs.dev/en/about/releases), I recommend using [fnm](https://github.com/Schniz/fnm) which will allow to simply run: +Make sure you're using [node 20](https://nodejs.dev/en/about/releases), I recommend using [fnm](https://github.com/Schniz/fnm) which will allow to simply run: ``` fnm use diff --git a/package.json b/package.json index 819081c..f9b9d04 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ }, "packageManager": "pnpm@8.3.1", "engines": { - "node": "18", + "node": "20", "pnpm": "8.3.1" } } From 7d29507d8a4f2b663bbc82caf756e6a2e9d64751 Mon Sep 17 00:00:00 2001 From: jimmy-guzman Date: Sat, 18 Nov 2023 20:15:14 -0600 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20=F0=9F=A4=96=20bump=20`pnpm`=20to?= =?UTF-8?q?=20v8.10.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pull_request.yml | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 84e0f2b..d1d598b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -14,7 +14,7 @@ jobs: uses: ./.github/actions/install with: node-version: 20 - pnpm-version: 8.3.1 + pnpm-version: 8.10.5 - name: 🚨 Lint run: pnpm lint diff --git a/package.json b/package.json index f9b9d04..2a8ae7d 100644 --- a/package.json +++ b/package.json @@ -58,9 +58,9 @@ "vite": "5.0.0", "vitest": "0.34.6" }, - "packageManager": "pnpm@8.3.1", + "packageManager": "pnpm@8.10.5", "engines": { "node": "20", - "pnpm": "8.3.1" + "pnpm": "8.10.5" } } From ec941faf7d539a62a8c8597516429a2ac271b048 Mon Sep 17 00:00:00 2001 From: jimmy-guzman Date: Sat, 18 Nov 2023 20:17:58 -0600 Subject: [PATCH 3/3] =?UTF-8?q?docs:=20=F0=9F=93=9D=20add=20`deps:update`?= =?UTF-8?q?=20command=20to=20README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 14930b5..4848d7e 100644 --- a/README.md +++ b/README.md @@ -100,10 +100,10 @@ pnpm format _you can run `pnpm format:fix` to fix all format errors_ -To validate everything, run the following command: +To interactively update dependencies, run the following command: ``` -pnpm validate +pnpm deps:update ``` ## Recommendations