Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: build
path: packages/svelte
path: packages

- name: ▶️ Run ${{ matrix.check }}
run: pnpm run ${{ matrix.check }}
Expand Down Expand Up @@ -104,7 +104,8 @@ jobs:
name: build
path: |
packages/svelte/README.md
packages/svelte/types
packages/svelte/dist
packages/svelte-core/dist

release:
needs: [main, build]
Expand Down Expand Up @@ -133,7 +134,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: build
path: packages/svelte
path: packages

- name: 🚀 Release
run: |
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const { baseElement, container, component, unmount, rerender } = render(
| `unmount` | `() => void` | Unmount the component from the document | N/A |

> \[!TIP]
> Calling `render` is equivalent to calling `setup` followed by `mount`
> Calling `render` is equivalent to calling [`setup`](#setup) followed by [`mount`](#mount)
>
> ```ts
> const { baseElement, container, mountOptions } = setup(
Expand Down