@blankdotpage/cake 0.1.25 → 0.1.26

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.
Files changed (2) hide show
  1. package/README.md +8 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # 🍰 Cake
2
2
 
3
- Cake is a small, extension-first, markdown-based editor toolkit. It’s designed
3
+ > ⚠️ **Early Stage / Unstable**: This project is under active development and not ready for production use. The API will likely change. We use Cake in [blank.page](https://blank.page), but expect breaking changes as we iterate.
4
+
5
+ Cake is a small, extension-first, markdown-based editor toolkit. It's designed
4
6
  to give you a reliable plain-text source of truth while still supporting rich
5
7
  behaviors (bold, links, lists, images, overlays) through extensions. The project
6
8
  includes a core runtime, a DOM/engine layer, and a thin React wrapper.
@@ -42,9 +44,12 @@ npm run build
42
44
 
43
45
  ## Demo
44
46
 
47
+ The `demo/` directory contains a local development playground:
48
+
45
49
  ```bash
46
- npm --workspace demo install
47
- npm run demo
50
+ cd demo
51
+ npm install
52
+ npm run dev
48
53
  ```
49
54
 
50
55
  ## Library usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blankdotpage/cake",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",