Skip to content

Commit b580d3e

Browse files
authored
Release v1.43.1 (#1031)
Fix - frontend build for plumber admin panel
2 parents cd5c5ca + 54af4cb commit b580d3e

File tree

5 files changed

+9
-12
lines changed

5 files changed

+9
-12
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,5 +106,5 @@
106106
"tsconfig-paths": "^4.2.0",
107107
"type-fest": "4.10.3"
108108
},
109-
"version": "1.43.0"
109+
"version": "1.43.1"
110110
}

packages/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontend",
3-
"version": "1.43.0",
3+
"version": "1.43.1",
44
"scripts": {
55
"dev": "wait-on tcp:3000 && vite --host --force",
66
"build": "tsc && vite build --mode=${VITE_MODE:-prod}",
Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import { FC } from 'react'
2-
import { Box, BoxProps } from '@chakra-ui/react'
3-
import { HTMLMotionProps, motion } from 'framer-motion'
4-
import { Merge } from 'type-fest'
1+
import { Box } from '@chakra-ui/react'
2+
import { motion } from 'framer-motion'
53

6-
export type MotionBoxProps = Merge<BoxProps, HTMLMotionProps<'div'>>
7-
export const MotionBox = motion(Box) as FC<MotionBoxProps>
4+
export const MotionBox = motion(Box)

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"name": "@plumber/types",
33
"description": "Shared types for plumber",
44
"types": "./index.d.ts",
5-
"version": "1.43.0"
5+
"version": "1.43.1"
66
}

0 commit comments

Comments
 (0)