Skip to content

Commit

Permalink
update deps, fix #566
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansolid committed Jul 18, 2021
1 parent b2a9775 commit 2354581
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion documentation/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ Catches uncaught errors and renders fallback content.
Also supports callback form which passes in error and a reset function.
```jsx
<ErrorBoundary fallback={(err, reset) => <div onClick={reset}>Error: {err}</div>}>
<ErrorBoundary fallback={(err, reset) => <div onClick={reset}>Error: {err.toString()}</div>}>
<MyComp />
</ErrorBoundary>
```
Expand Down
74 changes: 37 additions & 37 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
"@types/jest": "^26.0.23",
"@types/shelljs": "^0.8.8",
"babel-jest": "^26.6.3",
"babel-plugin-jsx-dom-expressions": "^0.29.3",
"babel-plugin-jsx-dom-expressions": "^0.29.6",
"coveralls": "^3.1.0",
"dom-expressions": "0.29.5",
"dom-expressions": "0.29.6",
"gitly": "^2.1.0",
"hyper-dom-expressions": "0.29.5",
"hyper-dom-expressions": "0.29.6",
"jest": "~26.6.3",
"jest-ts-webcompat-resolver": "^1.0.0",
"lerna": "^3.22.1",
"lit-dom-expressions": "0.29.5",
"lit-dom-expressions": "0.29.6",
"ncp": "2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-preset-solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"test": "node test.js"
},
"dependencies": {
"babel-plugin-jsx-dom-expressions": "^0.29.3"
"babel-plugin-jsx-dom-expressions": "^0.29.6"
}
}

0 comments on commit 2354581

Please sign in to comment.