Skip to content

Commit

Permalink
Merge pull request #41 from ConnorJamesLow/release/v0.7.1
Browse files Browse the repository at this point in the history
Release/v0.7.1
  • Loading branch information
ConnorJamesLow authored Mar 5, 2023
2 parents 3600e5b + 4b0e1b8 commit 4b51b66
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package/jsx-runtime/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import __jsx from '../dist';
export const jsx = (t, p) => __jsx(t, Object.fromEntries(Object.entries(p)
.filter(([n]) => n !== 'children')
), ...(Array.isArray(p.children) ? p.children : [p.children]));
), ...(Array.isArray(p.children) ? p.children : [p.children || '']));
export const jsxs = jsx;
export const Fragment = __jsx.Fragment;
4 changes: 2 additions & 2 deletions package/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "texsaur",
"version": "0.7.0",
"version": "0.7.1",
"description": "",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
Expand Down

0 comments on commit 4b51b66

Please sign in to comment.