@digipair/skill-web-editor 0.72.4 → 0.72.5
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/package.json +1 -1
- package/pins-to-blockly.cjs.js +1 -1
- package/pins-to-blockly.esm.js +1 -1
package/package.json
CHANGED
package/pins-to-blockly.cjs.js
CHANGED
@@ -292,7 +292,7 @@ function convertPinsLibrariesToBlocklyLibraries(pinsLibraries) {
|
|
292
292
|
})
|
293
293
|
}), {}))
|
294
294
|
}),
|
295
|
-
'x-scene-blocks': index._extends({}, Object.entries(schema
|
295
|
+
'x-scene-blocks': index._extends({}, Object.entries(schema['x-scene-blocks'] || {}).reduce((acc, [key, path])=>index._extends({}, acc, {
|
296
296
|
[key]: index._extends({}, path, {
|
297
297
|
metadata: !path.metadata ? [] : [
|
298
298
|
...path.metadata,
|
package/pins-to-blockly.esm.js
CHANGED
@@ -290,7 +290,7 @@ function convertPinsLibrariesToBlocklyLibraries(pinsLibraries) {
|
|
290
290
|
})
|
291
291
|
}), {}))
|
292
292
|
}),
|
293
|
-
'x-scene-blocks': _extends({}, Object.entries(schema
|
293
|
+
'x-scene-blocks': _extends({}, Object.entries(schema['x-scene-blocks'] || {}).reduce((acc, [key, path])=>_extends({}, acc, {
|
294
294
|
[key]: _extends({}, path, {
|
295
295
|
metadata: !path.metadata ? [] : [
|
296
296
|
...path.metadata,
|