svelte 5.0.4 → 5.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/compiler/index.js +1 -1
- package/package.json +1 -1
- package/src/compiler/migrate/index.js +56 -26
- package/src/compiler/phases/2-analyze/css/css-prune.js +11 -3
- package/src/compiler/phases/3-transform/client/visitors/DebugTag.js +9 -3
- package/src/compiler/phases/3-transform/css/index.js +22 -19
- package/src/internal/client/dom/elements/attributes.js +3 -2
- package/src/internal/client/dom/elements/events.js +29 -1
- package/src/internal/client/dom/elements/transitions.js +2 -17
- package/src/internal/client/reactivity/effects.js +6 -20
- package/src/version.js +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ You can play around with Svelte in the [tutorial](https://learn.svelte.dev/), [e
|
|
|
15
15
|
When you're ready to build a full-fledge application, we recommend using [SvelteKit](https://kit.svelte.dev):
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
|
|
18
|
+
npx sv create my-app
|
|
19
19
|
cd my-app
|
|
20
20
|
npm install
|
|
21
21
|
npm run dev
|