Skip to content

Commit

Permalink
fix: umd build, closes #3642
Browse files Browse the repository at this point in the history
  • Loading branch information
07akioni committed Aug 31, 2022
1 parent 43faa88 commit efc0f02
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NEXT_VERSION

### Fixes

- Fix UMD bundle doesn't work, closes [#3642](https://github.com/tusen-ai/naive-ui/issues/3642).

### Feats

- `n-radio` adds `colorActive` theme variable, closes [#3610](https://github.com/tusen-ai/naive-ui/issues/3610).
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NEXT_VERSION

### Fixes

- 修复 UMD 构建产物不能正常工作,关闭 [#3642](https://github.com/tusen-ai/naive-ui/issues/3642)

### Feats

- `n-radio` 新增 `colorActive` 主题变量,关闭 [#3610](https://github.com/tusen-ai/naive-ui/issues/3610)
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.esbuild.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"jsx": "react"
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment"
}
}

0 comments on commit efc0f02

Please sign in to comment.