@node-projects/web-component-designer-visualization-addons 0.1.26 → 0.1.27

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.
@@ -15,6 +15,6 @@ Blockly.Blocks['delay'] = {
15
15
  Blockly.JavaScript['delay'] = function (block) {
16
16
  //@ts-ignore
17
17
  const delay = Blockly.JavaScript.valueToCode(block, 'DELAY', Blockly.JavaScript.ORDER_ATOMIC);
18
- let code = 'await delay(' + delay + ')';
18
+ let code = 'await delay(' + delay + ');\n';
19
19
  return code;
20
20
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "description": "web-component-designer addon for visualizations",
3
3
  "name": "@node-projects/web-component-designer-visualization-addons",
4
- "version": "0.1.26",
4
+ "version": "0.1.27",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",