Skip to content

Commit

Permalink
⬆️ chore: update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: FurryR <[email protected]>
  • Loading branch information
FurryR committed Sep 22, 2024
1 parent db98448 commit 20344d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scratch-render
2 changes: 1 addition & 1 deletion scratch-vm
Submodule scratch-vm updated 73 files
+57 −51 package-lock.json
+1 −1 package.json
+2 −3 src/compiler/compat-block-utility.js
+6 −0 src/compiler/intermediate.js
+3 −2 src/compiler/irgen.js
+4 −5 src/compiler/jsexecute.js
+22 −5 src/compiler/jsgen.js
+34 −29 src/engine/execute.js
+30 −14 src/engine/runtime.js
+3 −3 src/engine/sequencer.js
+1 −0 src/engine/thread.js
+7 −0 src/engine/tw-platform.js
+0 −9 src/extension-support/extension-manager.js
+6 −2 src/extension-support/tw-scratchx-compatibility-layer.js
+6 −4 src/io/keyboard.js
+38 −4 src/playground/benchmark.js
+14 −7 src/playground/index.html
+1 −1 src/serialization/deserialize-assets.js
+2 −2 src/serialization/sb2.js
+41 −3 src/serialization/sb3.js
+2 −2 src/util/tw-asset-util.js
+12 −2 src/virtual-machine.js
+ test/fixtures/execute/tw-boolean-arguments-are-not-cast.sb3
+ test/fixtures/execute/tw-self-restarting-script-keeps-running-until-yield.sb3
+ test/fixtures/tw-block-stop-thread.sb3
+ test/fixtures/tw-glide.sb3
+ test/fixtures/tw-rejected-promise-command.sb3
+ test/fixtures/tw-rejected-promise-reporter.sb3
+198 −0 test/integration/tw-block-stop-thread.js
+3 −3 test/integration/tw_asset_progress.js
+15 −0 test/integration/tw_compat_block_utility_stackframe_exposed.js
+14 −0 test/integration/tw_deterministic_sb3.js
+161 −0 test/integration/tw_platform.js
+102 −0 test/integration/tw_rejected_promise.js
+1 −1 test/integration/tw_save_project_sb3.js
+1 −1 test/integration/tw_serialize_asset_order.js
+24 −0 test/snapshot/__snapshots__/tw-boolean-arguments-are-not-cast.sb3.tw-snapshot
+2 −2 test/snapshot/__snapshots__/tw-comparison-matrix-runtime.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/tw-custom-report-repeat.sb3.tw-snapshot
+3 −3 test/snapshot/__snapshots__/tw-forkphorus-515-wait-zero-seconds-in-warp-mode.sb3.tw-snapshot
+2 −2 test/snapshot/__snapshots__/tw-gh-201-stop-script-does-not-reevaluate-arguments.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/tw-prefers-first-occurence-of-procedure-387608267.sb3.tw-snapshot
+2 −2 test/snapshot/__snapshots__/tw-procedure-arguments-with-same-name.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/tw-procedure-call-resets-variable-input-types-430811055.sb3.tw-snapshot
+2 −2 test/snapshot/__snapshots__/tw-procedure-return-non-existant.sb3.tw-snapshot
+5 −5 test/snapshot/__snapshots__/tw-procedure-return-recursion.sb3.tw-snapshot
+9 −9 test/snapshot/__snapshots__/tw-procedure-return-simple.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/tw-procedure-return-stops-scripts.sb3.tw-snapshot
+3 −3 test/snapshot/__snapshots__/tw-procedure-return-warp.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/tw-safe-procedure-argument-casting.sb3.tw-snapshot
+38 −0 test/snapshot/__snapshots__/tw-self-restarting-script-keeps-running-until-yield.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/tw-warp-repeat-until-timer-greater-than.sb3.tw-snapshot
+24 −0 test/snapshot/__snapshots__/warp-timer/tw-boolean-arguments-are-not-cast.sb3.tw-snapshot
+2 −2 test/snapshot/__snapshots__/warp-timer/tw-comparison-matrix-runtime.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/warp-timer/tw-custom-report-repeat.sb3.tw-snapshot
+3 −3 test/snapshot/__snapshots__/warp-timer/tw-forkphorus-515-wait-zero-seconds-in-warp-mode.sb3.tw-snapshot
+2 −2 test/snapshot/__snapshots__/warp-timer/tw-gh-201-stop-script-does-not-reevaluate-arguments.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/warp-timer/tw-prefers-first-occurence-of-procedure-387608267.sb3.tw-snapshot
+2 −2 test/snapshot/__snapshots__/warp-timer/tw-procedure-arguments-with-same-name.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/warp-timer/tw-procedure-call-resets-variable-input-types-430811055.sb3.tw-snapshot
+2 −2 test/snapshot/__snapshots__/warp-timer/tw-procedure-return-non-existant.sb3.tw-snapshot
+5 −5 test/snapshot/__snapshots__/warp-timer/tw-procedure-return-recursion.sb3.tw-snapshot
+9 −9 test/snapshot/__snapshots__/warp-timer/tw-procedure-return-simple.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/warp-timer/tw-procedure-return-stops-scripts.sb3.tw-snapshot
+3 −3 test/snapshot/__snapshots__/warp-timer/tw-procedure-return-warp.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/warp-timer/tw-safe-procedure-argument-casting.sb3.tw-snapshot
+38 −0 test/snapshot/__snapshots__/warp-timer/tw-self-restarting-script-keeps-running-until-yield.sb3.tw-snapshot
+1 −1 test/snapshot/__snapshots__/warp-timer/tw-warp-repeat-until-timer-greater-than.sb3.tw-snapshot
+1 −1 test/snapshot/lib.js
+10 −0 test/unit/engine_runtime_tw.js
+1 −1 test/unit/tw_asset_util.js
+14 −5 test/unit/tw_scratchx.js
+0 −1 webpack.config.js

0 comments on commit 20344d8

Please sign in to comment.