@sveltia/cms 0.122.1 → 0.122.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 +5 -14
- package/dist/sveltia-cms.js +186 -185
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +199 -198
- package/dist/sveltia-cms.mjs.map +1 -1
- package/package.json +1 -1
- package/schema/sveltia-cms.json +1 -1
- package/types/public.d.ts +3 -3
package/README.md
CHANGED
|
@@ -102,7 +102,6 @@ This free, open source successor to Netlify/Decap CMS is currently in public bet
|
|
|
102
102
|
- [v3.0](#v30)
|
|
103
103
|
- [TBD](#tbd)
|
|
104
104
|
- [Non-goals](#non-goals)
|
|
105
|
-
- [Trivia](#trivia)
|
|
106
105
|
- [Related Links](#related-links)
|
|
107
106
|
- [As seen on](#as-seen-on)
|
|
108
107
|
- [Privacy](#privacy)
|
|
@@ -126,15 +125,17 @@ Due to its unfortunate abandonment in early 2022, Netlify CMS spawned 3 successo
|
|
|
126
125
|
- ❌ Discontinued in September 2024 after making meaningful improvements
|
|
127
126
|
- **Sveltia CMS**: not a fork but a **complete rewrite**
|
|
128
127
|
- Started in November 2022, first appeared on GitHub in March 2023
|
|
128
|
+
- ✅ Relevant issues are being resolved regardless of their age or status
|
|
129
129
|
- ✅ Actively developed with frequent releases and numerous improvements
|
|
130
|
-
- ✅ Relevant issues are being addressed regardless of their age or status
|
|
131
130
|
- ✅ Most of bug reports are addressed promptly, usually within a day
|
|
131
|
+
- ✅ An extensive roadmap
|
|
132
132
|
- ✅ No known unpatched security vulnerabilities, with dependencies kept up-to-date
|
|
133
133
|
- [Decap CMS](https://github.com/decaporg/decap-cms): a rebranded version
|
|
134
134
|
- [Announced in February 2023](https://www.netlify.com/blog/netlify-cms-to-become-decap-cms/) as an official continuation with a Netlify agency partner taking ownership
|
|
135
|
-
- ⚠️ Mostly low activity with only occasional releases and a few minor improvements
|
|
136
135
|
- ⚠️ Seemingly random issues were closed as stale following the takeover
|
|
136
|
+
- ⚠️ Mostly low activity with only occasional releases and a few minor improvements
|
|
137
137
|
- ⚠️ Bug reports continue to pile up, often without any response
|
|
138
|
+
- ⚠️ No roadmap
|
|
138
139
|
- ❌ A moderate severity [XSS vulnerability](https://github.com/advisories/GHSA-xp8g-32qh-mv28), high severity dependency vulnerabilities and fatal crashes remain unaddressed
|
|
139
140
|
|
|
140
141
|
Sveltia CMS is the only project that doesn’t inherit the complexity, technical debt, and numerous bugs of Netlify CMS, which was launched in 2015. Our product is **better by design**:
|
|
@@ -176,7 +177,7 @@ While we fix reported bugs as quickly as possible, usually within 24 hours, our
|
|
|
176
177
|
- Tackling as many [Netlify/Decap CMS issues](https://github.com/decaporg/decap-cms/issues) as possible
|
|
177
178
|
- So far, **275+ issues, or 595+ if including duplicates, have been effectively solved** in Sveltia CMS (Yes, you read it right)
|
|
178
179
|
- Target:
|
|
179
|
-
-
|
|
180
|
+
- 300 issues, or 600 if including duplicates, by GA — Almost there! 🚀
|
|
180
181
|
- 450 issues, or 900 if including duplicates, in the future 💪
|
|
181
182
|
- or every single issue that’s relevant, fixable, and worth dealing with 🔥
|
|
182
183
|
- Issues include everything:
|
|
@@ -190,8 +191,6 @@ While we fix reported bugs as quickly as possible, usually within 24 hours, our
|
|
|
190
191
|
- Solving [our own issues](https://github.com/sveltia/sveltia-cms/issues)
|
|
191
192
|
- Preparing comprehensive, up-to-date, easy-to-understand [documentation](https://github.com/sveltia/sveltia-cms/issues/485)
|
|
192
193
|
- Implementing our own enhancement ideas for every part of the product
|
|
193
|
-
- Responding to requests from the maintainer’s clients
|
|
194
|
-
- Making the code clean and maintainable
|
|
195
194
|
|
|
196
195
|
<br>
|
|
197
196
|
|
|
@@ -2105,14 +2104,6 @@ Due late 2026
|
|
|
2105
2104
|
- Monetization. We may offer an affordable cloud version in the future since self-hosting the CMS can be a hassle. However, we will not charge for the CMS itself. We want to keep it free and open source forever.
|
|
2106
2105
|
- Creating the longest README file in the world. 😉
|
|
2107
2106
|
|
|
2108
|
-
## Trivia
|
|
2109
|
-
|
|
2110
|
-
- The [original version of Netlify CMS](https://github.com/netlify/netlify-cms-legacy) was built with Ember before being rewritten in React. There was also an [attempt](https://github.com/decaporg/decap-cms/issues/328) to replace React with Preact. Now we have completely rebuilt it in Svelte 4 and then in Svelte 5. So this is effectively the third/fourth time the application has gone through a framework migration. One more thing: We may migrate to [Ripple](https://www.ripplejs.com/) in the future if it looks promising.
|
|
2111
|
-
- We write our code in [TypeScript-flavoured JavaScript](https://www.typescriptlang.org/docs/handbook/intro-to-js-ts.html) to maintain readability while enabling strict type checking. During the build process, our type definitions are first converted to a TypeScript declaration file and then to a [JSON schema](#enabling-autocomplete-and-validation-for-the-configuration-file). We are not alone: [Svelte](https://devclass.com/2023/05/11/typescript-is-not-worth-it-for-developing-libraries-says-svelte-author-as-team-switches-to-javascript-and-jsdoc/) and [Prism](https://github.com/PrismJS/prism/pull/4000) have both dropped TypeScript in favour of JSDoc.
|
|
2112
|
-
- Our [local repository workflow](#working-with-a-local-git-repository) shares implementation with the Test backend, as both utilize the [File System API](https://developer.mozilla.org/en-US/docs/Web/API/File_System_API), allowing us to reduce maintenance costs. The seamless local workflow is critical not only for an improved DX, but also for our rapid application development.
|
|
2113
|
-
- What is Sveltia, by the way? It implies something related to Svelte, but it has [another meaning](https://en.wikipedia.org/wiki/Sveltia).
|
|
2114
|
-
- The maintainer may look 25 years younger than his actual age. [Here’s why](https://github.com/kyoshino#fun-facts-about-me).
|
|
2115
|
-
|
|
2116
2107
|
## Related Links
|
|
2117
2108
|
|
|
2118
2109
|
- Introducing Sveltia CMS: a short technical presentation by [@kyoshino](https://github.com/kyoshino) during the _This Week in Svelte_ online meetup on March 31, 2023 — [recording](https://youtu.be/-YjLubiieYs?t=1660) & [slides](https://docs.google.com/presentation/d/1Wi4ty-1AwOp2-zy7LctmzCV4rrdYPfke9NGhO0DdRdM)
|