@lowdefy/block-dev 0.0.0-experimental-20260219135421 → 0.0.0-experimental-20260220095000
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/dist/stubBlockProps.js +3 -1
- package/package.json +3 -3
package/dist/stubBlockProps.js
CHANGED
|
@@ -47,7 +47,9 @@ const stubBlockProps = ({ block, meta, logger = ()=>null, initialValue, schema }
|
|
|
47
47
|
try {
|
|
48
48
|
validate[block.type] = schemaTest(schema);
|
|
49
49
|
} catch (error) {
|
|
50
|
-
throw new Error(`Schema error in ${block.type}
|
|
50
|
+
throw new Error(`Schema error in ${block.type}.`, {
|
|
51
|
+
cause: error
|
|
52
|
+
});
|
|
51
53
|
}
|
|
52
54
|
}
|
|
53
55
|
block.schemaErrors = !validate[block.type](block);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/block-dev",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-20260220095000",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Lowdefy Block Development Tools",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@emotion/jest": "11.10.5",
|
|
35
|
-
"@lowdefy/block-utils": "0.0.0-experimental-
|
|
36
|
-
"@lowdefy/helpers": "0.0.0-experimental-
|
|
35
|
+
"@lowdefy/block-utils": "0.0.0-experimental-20260220095000",
|
|
36
|
+
"@lowdefy/helpers": "0.0.0-experimental-20260220095000",
|
|
37
37
|
"@testing-library/dom": "8.19.1",
|
|
38
38
|
"@testing-library/react": "13.4.0",
|
|
39
39
|
"@testing-library/user-event": "14.4.3",
|