Skip to content

Commit b9b37b6

Browse files
committed
Update dev-dependencies
1 parent d1fface commit b9b37b6

5 files changed

Lines changed: 495 additions & 367 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ jobs:
4343
cache: npm
4444
- run: npm ci
4545
- run: npm test
46-
- uses: codecov/codecov-action@v3
46+
- uses: codecov/codecov-action@v4

.github/workflows/website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
node-version: 20
2121
- run: npm ci
2222
- run: npm run docs
23-
- uses: actions/upload-pages-artifact@v2
23+
- uses: actions/upload-pages-artifact@v3
2424
with:
2525
path: public
26-
- uses: actions/deploy-pages@v2
26+
- uses: actions/deploy-pages@v4
2727
id: deployment

docs/_asset/editor.jsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,10 @@ function Playground() {
210210
})
211211

212212
return (
213-
<ErrorBoundary FallbackComponent={ErrorFallback} resetKeys={[value]}>
213+
<ErrorBoundary
214+
FallbackComponent={ErrorFallback}
215+
resetKeys={[value]}
216+
>
214217
<div className="playground-result">{mod.default({})}</div>
215218
</ErrorBoundary>
216219
)

0 commit comments

Comments
 (0)