From 42dfe959a59f2774315802fd4b41ae29945b60cb Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Tue, 3 Sep 2024 16:39:30 +0000 Subject: [PATCH] chore: bump yarn to 4.4.1 in ci and Makefile (#58) Reviewed-on: https://gitea.dubas.dev/joao.dubas/clean-architecture/pulls/58 Co-authored-by: Joao P Dubas Co-committed-by: Joao P Dubas --- .drone.yml | 2 +- .tool-versions | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 598c941..a0ffef1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -29,7 +29,7 @@ steps: - name: test image: 'node:22.7.0-slim' commands: - - yarn set version 4.4.0 + - yarn set version 4.4.1 - yarn install - yarn run jest diff --git a/.tool-versions b/.tool-versions index 5be4b1f..39d2b7d 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ nodejs 22.8.0 -yarn 4.4.0 +yarn 1.22.22 diff --git a/Makefile b/Makefile index 8865a21..f4882fb 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ asdf_install: .PHONY: yarn_setup yarn_setup: - @yarn set version 4.1.0 + @yarn set version 4.4.1 @yarn init -2 @yarn add typescript jest @types/jest ts-node ts-jest