From 606c45f2bad53ac2b72c28bdacd8c22d6e084b74 Mon Sep 17 00:00:00 2001 From: Michael Cousins Date: Wed, 3 Dec 2025 10:43:53 -0500 Subject: [PATCH] fix(svelte-core): ensure `dist` is packaged in CI release (#461) --- .github/workflows/release.yml | 7 ++++--- packages/svelte-core/README.md | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2178ff8..c676daa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }} @@ -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] @@ -133,7 +134,7 @@ jobs: uses: actions/download-artifact@v4 with: name: build - path: packages/svelte + path: packages - name: 🚀 Release run: | diff --git a/packages/svelte-core/README.md b/packages/svelte-core/README.md index ebe6f07..c7a1f9d 100644 --- a/packages/svelte-core/README.md +++ b/packages/svelte-core/README.md @@ -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(