@se-studio/project-build 1.0.120 → 1.0.121

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @se-studio/project-build
2
2
 
3
+ ## 1.0.121
4
+
5
+ ### Patch Changes
6
+
7
+ - Bulk version bump: patch for all packages
8
+
3
9
  ## 1.0.120
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@se-studio/project-build",
3
- "version": "1.0.120",
3
+ "version": "1.0.121",
4
4
  "description": "Build tools and management scripts for SE Studio projects",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,9 +18,8 @@ Use **set** for scalar and link fields; use **rtf** only for rich text fields.
18
18
 
19
19
  - **Append** an embedded entry: `cms-edit rtf embed @c1 body <entry-id>`
20
20
  - **Insert** at position: `cms-edit rtf embed @c1 body <entry-id> --at 0`
21
- - **Asset** embed: `cms-edit rtf embed @c1 body <asset-id> --asset`
22
- - **Asset layout (optional, requires `--asset`):** `--align left|center|right` or `--center` (same as `--align center`); `--width-percent <1–100>` for per-embed width without changing the asset globally. Example:
23
- `cms-edit rtf embed @c1 body <asset-id> --asset --at 12 --align center --width-percent 40`
21
+ - **Raw asset** embed: `cms-edit rtf embed @c1 body <asset-id> --asset` — inserts an `embedded-asset-block` with **no** width/alignment on the block (Contentful only allows `data.target`).
22
+ - **Width / horizontal position:** use a **Media** entry (not `--asset`). Set width and horizontal position on the Media entry in Contentful, then embed it: `cms-edit rtf embed @c1 body <media-entry-id> --at 12`. Same image, different layout in two places ⇒ two Media entries pointing at the same asset.
24
23
 
25
24
  Editing or moving existing embeds is **not supported in v1**.
26
25