Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemojo committed Feb 3, 2025
2 parents 6b80097 + 384875f commit 64eae49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,10 @@ export {
useColorMap,
type UserAvatarProps
} from "./UserAvatar";
export {
default as NoWrapTypography,
type NoWrapTypographyProps
} from "./NoWrapTypography";

Check failure on line 220 in src/index.ts

View workflow job for this annotation

GitHub Actions / tests (20.x, ubuntu-latest)

Cannot find module './NoWrapTypography' or its corresponding type declarations.
export {
default as ModelButtonImage,
type ModelButtonImageProps
Expand Down

0 comments on commit 64eae49

Please sign in to comment.