@se-studio/project-build 1.0.121 → 1.0.122

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.122
4
+
5
+ ### Patch Changes
6
+
7
+ - Bulk version bump: patch for all packages
8
+
3
9
  ## 1.0.121
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.121",
3
+ "version": "1.0.122",
4
4
  "description": "Build tools and management scripts for SE Studio projects",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,7 +19,7 @@ Use **set** for scalar and link fields; use **rtf** only for rich text fields.
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
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.
22
+ - **Width / horizontal position:** use a **Media** entry (not `--asset`). Create one with `cms-edit create media --asset-id <id> --name "…" [--position Middle] [--width 40]` (prints the new entry ID; does not replace your session), then `cms-edit rtf embed @c1 body <media-entry-id> --at 12`. Or set fields in the Contentful app. Same image, different layout in two places ⇒ two Media entries pointing at the same asset.
23
23
 
24
24
  Editing or moving existing embeds is **not supported in v1**.
25
25