@sveltia/cms 0.42.0 → 0.42.2
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 +7 -7
- package/dist/sveltia-cms.js +291 -291
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +298 -298
- package/dist/sveltia-cms.mjs.map +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -97,14 +97,14 @@ While Sveltia CMS is specifically designed to replace legacy Netlify CMS instanc
|
|
|
97
97
|
|
|
98
98
|
## Development status
|
|
99
99
|
|
|
100
|
-
Sveltia CMS is currently in **beta
|
|
100
|
+
Sveltia CMS is currently in **beta** and version 1.0 is expected to ship in **early 2025**, in time for the 10th anniversary of Netlify CMS. Check our [release notes](https://github.com/sveltia/sveltia-cms/releases) for updates. See also our [roadmap](#roadmap).
|
|
101
101
|
|
|
102
102
|
While we fix reported bugs as quickly as possible, usually within 24 hours, our overall progress may be slower than you think. The thing is, it’s not just a personal project of [@kyoshino](https://github.com/kyoshino), but also involves different kinds of activities that require considerable effort:
|
|
103
103
|
|
|
104
104
|
- Ensuring substantial [compatibility with Netlify/Decap CMS](#compatibility)
|
|
105
105
|
- Tackling as many [Netlify/Decap CMS issues](https://github.com/decaporg/decap-cms/issues) as possible
|
|
106
106
|
- So far, 135+ of them, or 240+ including duplicates, have been effectively solved in Sveltia CMS
|
|
107
|
-
- Target: 150 issues by GA,
|
|
107
|
+
- Target: 150 issues by GA, 250 or all relevant and fixable issues in a future release
|
|
108
108
|
- Note: Issues include both feature requests and bug reports; we also track [their discussions](https://github.com/decaporg/decap-cms/discussions)
|
|
109
109
|
- [Let us know](https://github.com/sveltia/sveltia-cms/issues/new) if you have any specific issues you’d like to see solved!
|
|
110
110
|
- Responding to feedback from clients and regular users
|
|
@@ -132,7 +132,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
|
|
|
132
132
|
|
|
133
133
|
- Built completely from scratch with Svelte instead of forking React-based Netlify/Decap CMS. The app starts fast and stays fast. The compiled code is vanilla JavaScript — you can use it with any framework or static site generator (SSG) that can load static data files during the build process.
|
|
134
134
|
- Small footprint: The bundle size is less than 450 KB when minified and brotlied, which is much lighter than Netlify CMS (1.5 MB), Decap CMS (1.8 MB) and Static CMS (2.6 MB)[^57][^64], even though we haven’t implemented some features yet. That’s the power of Svelte + Vite.
|
|
135
|
-
- We have upgraded from Svelte 4 to [Svelte 5
|
|
135
|
+
- We have upgraded from Svelte 4 to [Svelte 5](https://svelte.dev/blog/svelte-5-is-alive) to further improve performance, including an even smaller bundle size. A full migration to the Runes reactivity API will follow.
|
|
136
136
|
- Sveltia CMS is free of technical debt and [virtual DOM overhead](https://svelte.dev/blog/virtual-dom-is-pure-overhead).
|
|
137
137
|
- Uses the GraphQL API for GitHub and GitLab to quickly fetch content at once, so that entries and assets can be listed and searched instantly[^32][^65]. It also avoids the slowness and potential API rate limit violations caused by hundreds of requests with Relation widgets[^14].
|
|
138
138
|
- Saving entries and assets to GitHub is also much faster thanks to the [GraphQL mutation](https://github.blog/changelog/2021-09-13-a-simpler-api-for-authoring-commits/).
|
|
@@ -607,7 +607,7 @@ Rather, if you’d like to add all the media files for a collection in one singl
|
|
|
607
607
|
+ public_folder: /media/products
|
|
608
608
|
```
|
|
609
609
|
|
|
610
|
-
In Sveltia CMS, those per-collection media folders are displayed prominently for easier asset management.
|
|
610
|
+
In Sveltia CMS, those per-collection media folders are displayed prominently for easier asset management. We recommend setting `media_folder` and `public_folder` for each collection if it contains one or more File/Image fields.
|
|
611
611
|
|
|
612
612
|
### Using keyboard shortcuts
|
|
613
613
|
|
|
@@ -863,7 +863,7 @@ img-src 'self' blob: data: https://*;
|
|
|
863
863
|
|
|
864
864
|
## Support & feedback
|
|
865
865
|
|
|
866
|
-
While we don’t have dedicated developer/user support resources, quick questions and feedback are welcome on the [Discussions](https://github.com/sveltia/sveltia-cms/discussions) page of this GitHub repository. We also have a [Discord channel](https://discord.gg/5hwCGqup5b) for casual chat
|
|
866
|
+
While we don’t have dedicated developer/user support resources, [quick questions](https://github.com/sveltia/sveltia-cms/discussions/new?category=q-a) and [feedback](https://github.com/sveltia/sveltia-cms/discussions/new?category=general) are welcome on the [Discussions](https://github.com/sveltia/sveltia-cms/discussions) page of this GitHub repository. We also have a [Discord channel](https://discord.gg/5hwCGqup5b) for casual chat.
|
|
867
867
|
|
|
868
868
|
Looking to build a website with Sveltia CMS? Maintainer [@kyoshino](https://github.com/kyoshino) is available for hire depending on your requirements. Feel free to reach out!
|
|
869
869
|
|
|
@@ -875,9 +875,9 @@ See [Contributing to Sveltia CMS](https://github.com/sveltia/sveltia-cms/blob/ma
|
|
|
875
875
|
|
|
876
876
|
### Before the 1.0 release
|
|
877
877
|
|
|
878
|
-
- [Svelte 5](https://svelte.dev/blog/svelte-5-
|
|
878
|
+
- [Svelte 5](https://svelte.dev/blog/svelte-5-is-alive) Runes migration
|
|
879
879
|
- Enhanced [compatibility with Netlify/Decap CMS](#compatibility)
|
|
880
|
-
-
|
|
880
|
+
- Partial compatibility with Static CMS, a now-discontinued community fork of Netlify CMS, specifically the [KeyValue widget](https://staticjscms.netlify.app/docs/widget-keyvalue)[^123]
|
|
881
881
|
- Localization with the new [Fluent](https://projectfluent.org)-powered sveltia-i18n library
|
|
882
882
|
- Accessibility audit
|
|
883
883
|
- Developer documentation (implementation guide)
|