@sveltia/cms 0.9.7 → 0.9.8
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 +8 -1
- package/dist/sveltia-cms.js +166 -166
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -162,11 +162,13 @@ While it’s not our goal to recreate all the features found in Netlify/Decap CM
|
|
|
162
162
|
- Netlify Identity Widget is not supported yet.
|
|
163
163
|
- Comprehensive config validation is not implemented yet.
|
|
164
164
|
- Auto-saving a draft entry is not implemented yet.
|
|
165
|
-
- Downloading an asset in the media library is not implemented yet.
|
|
165
|
+
- Downloading an asset and copying the file path of an asset in the media library is not implemented yet.
|
|
166
166
|
- [Backend health check](https://www.githubstatus.com/api) is not implemented yet.
|
|
167
167
|
|
|
168
168
|
## Roadmap
|
|
169
169
|
|
|
170
|
+
### Before the 1.0 release
|
|
171
|
+
|
|
170
172
|
- [Svelte 5](https://svelte.dev/blog/runes) migration
|
|
171
173
|
- Further Netlify/Decap CMS compatibility, including Editorial Workflow
|
|
172
174
|
- Localization
|
|
@@ -174,6 +176,9 @@ While it’s not our goal to recreate all the features found in Netlify/Decap CM
|
|
|
174
176
|
- Marketing site
|
|
175
177
|
- Demo site
|
|
176
178
|
- Starter templates
|
|
179
|
+
|
|
180
|
+
### After the 1.0 release
|
|
181
|
+
|
|
177
182
|
- Roles[^23]
|
|
178
183
|
- Config editor[^10]
|
|
179
184
|
- Mobile support[^18]
|
|
@@ -219,7 +224,9 @@ You can use Sveltia CMS with a local Git repository, like the [beta feature](htt
|
|
|
219
224
|
|
|
220
225
|
1. Launch the local development server for your frontend framework, typically with `npm run dev` or `pnpm dev`.
|
|
221
226
|
1. Visit `http://localhost:[port]/admin/index.html` with Chrome or Edge. The port number varies by framework.
|
|
227
|
+
- Other Chromium-based browsers may also work. In Brave, you need to enable the File System Access API [with a flag](https://github.com/brave/brave-browser/issues/20563#issuecomment-1021567573).
|
|
222
228
|
1. Click “Work with Local Repository” and select the project’s root directory once prompted.
|
|
229
|
+
- If you’re using Windows Subsystem for Linux (WSL), you may get an error saying “Can’t open this folder because it contains system files.” This is due to a limitation in the browser, and you can try some workarounds mentioned in [this issue](https://github.com/coder/code-server/issues/4646).
|
|
223
230
|
1. Make some changes to your content on Sveltia CMS.
|
|
224
231
|
1. See if the produced changes look good using `git diff` or a GUI like [GitHub Desktop](https://desktop.github.com/).
|
|
225
232
|
1. Open the dev site at `http://localhost:[port]/` to check the rendered pages.
|