@notionhq/custom-blocks-dev-shell 0.1.9 → 0.1.10
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 +5 -3
- package/dist/assets/index-B9Ip1pFo.js +9 -0
- package/dist/assets/index-D7A1CDPg.css +2 -0
- package/dist/index.html +2 -2
- package/dist-cli/block-server.js +8 -0
- package/dist-cli/convert-values.js +241 -0
- package/dist-cli/convert.js +227 -0
- package/dist-cli/data-sources.js +3 -3
- package/dist-cli/main.js +10 -2
- package/dist-cli/materialize.js +1 -1
- package/dist-cli/utils.js +26 -0
- package/docs/bindings.md +1 -1
- package/package.json +6 -5
- package/dist/assets/index-CHk4nghz.js +0 -9
- package/dist/assets/index-x1e1jng3.css +0 -2
package/README.md
CHANGED
|
@@ -38,6 +38,8 @@ from `node_modules`:
|
|
|
38
38
|
|
|
39
39
|
## Requirements
|
|
40
40
|
|
|
41
|
-
- Node.js >= 20.19
|
|
42
|
-
|
|
43
|
-
|
|
41
|
+
- Node.js >= 20.19 for the shell itself. Use Node.js >= 22 for the standard
|
|
42
|
+
Notion worker projects.
|
|
43
|
+
- The worker's dependencies installed (use its declared package manager; the
|
|
44
|
+
standard projects use `pnpm install`), including `vite` and a build script
|
|
45
|
+
that emits `dist/index.js`.
|