Skip to content

Commit e6fd9b5

Browse files
fix: update Vite configuration to include dependencies in external options
1 parent e4a6b30 commit e6fd9b5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [Versions](https://github.com/Tracktor/react-utils/releases)
22

3-
## v1.28.2
3+
## v1.28.3
44

55
### Chore
66
- Update TypeScript configuration and dependencies for improved compatibility

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tracktor/react-utils",
33
"description": "React data table and react data grid",
4-
"version": "1.28.2",
4+
"version": "1.28.3",
55
"private": false,
66
"license": "ISC",
77
"type": "module",

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const config: UserConfig = {
1717
name,
1818
},
1919
rolldownOptions: {
20-
external: [...Object.keys(peerDependencies)],
20+
external: [...Object.keys(peerDependencies), "react/jsx-runtime", "react/jsx-dev-runtime"],
2121
output: {
2222
globals: {
2323
react: "React",

0 commit comments

Comments
 (0)