mnfst 0.5.63 → 0.5.65

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 CHANGED
@@ -42,6 +42,30 @@ For full documentation visit [manifestjs.org](https://manifestjs.org).
42
42
 
43
43
  <br>
44
44
 
45
+ ## 📦 Publishing
46
+
47
+ Each package publishes independently to npm. The `release:*` scripts auto-bump the patch version (e.g. `0.5.65 → 0.5.66`) and publish — no manual version edits needed. The bump is **not** auto-committed, so it lands in your working tree alongside whatever changes triggered the release.
48
+
49
+ | Command | Package | Path |
50
+ |---|---|---|
51
+ | `npm run release` | `mnfst` | (root) |
52
+ | `npm run release:run` | `mnfst-run` | `packages/run/` |
53
+ | `npm run release:render` | `mnfst-render` | `packages/render/` |
54
+ | `npm run release:starter` | `mnfst-starter` | `packages/create-starter/` |
55
+
56
+ Run only the scripts whose package you actually changed.
57
+
58
+ For a **minor** or **major** bump, run `npm version minor` (or `major`) inside the relevant package directory before publishing:
59
+ ```sh
60
+ cd packages/render
61
+ npm version minor --no-git-tag-version
62
+ npm publish --auth-type=web
63
+ ```
64
+
65
+ After publishing, commit the version bump(s) along with your changes and push.
66
+
67
+ <br>
68
+
45
69
  ## 📄 License
46
70
 
47
71
  Manifest is provided under MIT license.
@@ -340,7 +340,10 @@
340
340
  }
341
341
  }
342
342
 
343
- /* Solid options */
343
+ /* Per-stop solid panel (inside the open-stop accordion) — keep the
344
+ canvas compact so the menu stays well-proportioned even when the
345
+ parent picker is gradient-only and the menu inherits its height
346
+ from this nested panel. */
344
347
  & [x-colorpicker\.solid] {
345
348
  padding: 0;
346
349