From f84be2fd7ccbe765eee6fb7b635140439984e8e9 Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Fri, 31 May 2024 12:11:44 +0200 Subject: [PATCH] chore: bumped node version to 18.20.3 (#7222) --- Dockerfile | 2 +- package.json | 24 +++++------------------- 2 files changed, 6 insertions(+), 20 deletions(-) diff --git a/Dockerfile b/Dockerfile index a1c8dd7aa9..6d7baf3493 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_VERSION=18.20.2-alpine +ARG NODE_VERSION=18.20.3-alpine FROM node:$NODE_VERSION as builder diff --git a/package.json b/package.json index 611e67a2ac..e91b040f68 100644 --- a/package.json +++ b/package.json @@ -82,9 +82,7 @@ "testTimeout": 10000, "globalSetup": "./scripts/jest-setup.js", "transform": { - "^.+\\.tsx?$": [ - "@swc/jest" - ] + "^.+\\.tsx?$": ["@swc/jest"] }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "testPathIgnorePatterns": [ @@ -93,13 +91,7 @@ "/frontend/", "/website/" ], - "moduleFileExtensions": [ - "ts", - "tsx", - "js", - "jsx", - "json" - ], + "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"], "coveragePathIgnorePatterns": [ "/node_modules/", "/dist/", @@ -237,14 +229,8 @@ "tough-cookie": "4.1.3" }, "lint-staged": { - "*.{js,ts}": [ - "biome check --apply --no-errors-on-unmatched" - ], - "*.{jsx,tsx}": [ - "biome check --apply --no-errors-on-unmatched" - ], - "*.json": [ - "biome format --write --no-errors-on-unmatched" - ] + "*.{js,ts}": ["biome check --apply --no-errors-on-unmatched"], + "*.{jsx,tsx}": ["biome check --apply --no-errors-on-unmatched"], + "*.json": ["biome format --write --no-errors-on-unmatched"] } }