From bad76404f6f6d335e2aac5d6f8f5b87c5e75c0a2 Mon Sep 17 00:00:00 2001 From: Matthew Corner Date: Mon, 3 Feb 2025 14:12:46 +0000 Subject: [PATCH 1/3] latest corepack and nodejs lts (#1038) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 263c4cb9..3aa31df1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # build on top of base nodejs image -FROM node:20.15.1 AS base +FROM node:22.13.1 AS base ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" -RUN corepack enable +RUN npm i -g corepack@latest && corepack enable # copy package.json and pnpm-lock.yaml to the container WORKDIR /usr/src/react-ui From 5a5bc1d26145e24571b19a86bcec5f697c5e7a89 Mon Sep 17 00:00:00 2001 From: lukemojo <143453762+lukemojo@users.noreply.github.com> Date: Mon, 3 Feb 2025 15:03:37 +0000 Subject: [PATCH 2/3] Add NoWrapTypography back into exports (#1037) --- src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.ts b/src/index.ts index 849300d5..3c12ce17 100644 --- a/src/index.ts +++ b/src/index.ts @@ -218,6 +218,10 @@ export { useColorMap, type UserAvatarProps } from "./UserAvatar"; +export { + default as NoWrapTypography, + type NoWrapTypographyProps +} from "./NoWrapTypography"; export { default as ModelButtonImage, type ModelButtonImageProps From 384875f2a997eaf6b95b2465430c421d74821d48 Mon Sep 17 00:00:00 2001 From: lukemojo <143453762+lukemojo@users.noreply.github.com> Date: Mon, 3 Feb 2025 15:46:28 +0000 Subject: [PATCH 3/3] 10.4.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0e71d259..a569ac0a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ipguk/react-ui", - "version": "10.4.1", + "version": "10.4.2", "description": "React UI component library for IPG web applications", "author": { "name": "IPG-Automotive-UK"