@plone/volto-slate 19.0.0-alpha.15 → 19.0.0-alpha.16
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/AGENTS.md +28 -0
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
package/AGENTS.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# AGENTS.md
|
|
2
|
+
|
|
3
|
+
This file applies only to `packages/volto-slate` and its subdirectories.
|
|
4
|
+
|
|
5
|
+
## What This Package Is
|
|
6
|
+
|
|
7
|
+
- `@plone/volto-slate` provides the Slate-based editor integration used by Volto.
|
|
8
|
+
- It is tightly coupled to Volto editor behavior even though it is versioned as a separate package.
|
|
9
|
+
|
|
10
|
+
## Editing Rules
|
|
11
|
+
|
|
12
|
+
- Prefer TypeScript for all new modules and features.
|
|
13
|
+
- Refactoring touched code toward TypeScript is welcome, but not required.
|
|
14
|
+
- Treat changes here as editor-platform changes, not isolated component tweaks.
|
|
15
|
+
- Preserve serialization, deserialization, and editor schema expectations.
|
|
16
|
+
- When changing editor behavior, check whether fixtures, Cypress flows, or Volto-side block/editor integrations also need updates.
|
|
17
|
+
- Avoid introducing APIs that bypass existing Volto editor configuration patterns unless the task explicitly calls for it.
|
|
18
|
+
|
|
19
|
+
## Validation
|
|
20
|
+
|
|
21
|
+
This package does not expose a dedicated local test script in this branch.
|
|
22
|
+
Validate through Volto:
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
pnpm --filter @plone/volto test --run
|
|
26
|
+
pnpm --filter @plone/volto build
|
|
27
|
+
make ci-acceptance-test-run-all
|
|
28
|
+
```
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 19.0.0-alpha.16 (2026-05-07)
|
|
12
|
+
|
|
13
|
+
### Documentation
|
|
14
|
+
|
|
15
|
+
- Added package-specific `AGENTS.md` contributor guidance for `@plone/volto-slate` maintainers.
|
|
16
|
+
|
|
11
17
|
## 19.0.0-alpha.15 (2026-04-27)
|
|
12
18
|
|
|
13
19
|
### Bugfix
|