@scratch/scratch-vm 13.7.1 → 13.7.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scratch/scratch-vm",
3
- "version": "13.7.1",
3
+ "version": "13.7.2",
4
4
  "description": "Virtual Machine for Scratch 3.0",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/scratchfoundation/scratch-vm#readme",
@@ -60,8 +60,8 @@
60
60
  "allow-incomplete-coverage": true
61
61
  },
62
62
  "dependencies": {
63
- "@scratch/scratch-render": "13.7.1",
64
- "@scratch/scratch-svg-renderer": "13.7.1",
63
+ "@scratch/scratch-render": "13.7.2",
64
+ "@scratch/scratch-svg-renderer": "13.7.2",
65
65
  "@vernier/godirect": "1.8.3",
66
66
  "arraybuffer-loader": "1.0.8",
67
67
  "atob": "2.1.2",
@@ -99,7 +99,7 @@
99
99
  "in-publish": "2.0.1",
100
100
  "js-md5": "0.7.3",
101
101
  "pngjs": "3.4.0",
102
- "scratch-blocks": "2.1.17",
102
+ "scratch-blocks": "2.1.19",
103
103
  "scratch-l10n": "6.1.72",
104
104
  "scratch-render-fonts": "1.0.252",
105
105
  "scratch-semantic-release-config": "4.0.1",
@@ -598,7 +598,7 @@ class Blocks {
598
598
  // Push block id to scripts array.
599
599
  // Blocks are added as a top-level stack if they are marked as a top-block
600
600
  // (if they were top-level XML in the event).
601
- if (block.topLevel) {
601
+ if (block.topLevel && !block.shadow) {
602
602
  this._addScript(block.id);
603
603
  }
604
604