mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
switch polyfill to one that doesn't break tests
This commit is contained in:
parent
c73b06a254
commit
3a3d807cba
2 changed files with 2 additions and 2 deletions
|
@ -33,8 +33,8 @@
|
|||
"babel-eslint": "^7.1.1",
|
||||
"babel-loader": "^7.0.0",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"blueimp-canvas-to-blob": "3.14.0",
|
||||
"buffer-loader": "0.0.1",
|
||||
"canvas-toBlob": "1.0.0",
|
||||
"copy-webpack-plugin": "4.2.1",
|
||||
"decode-html": "2.0.0",
|
||||
"escape-html": "1.0.3",
|
||||
|
|
|
@ -18,7 +18,7 @@ const Variable = require('./engine/variable');
|
|||
const {loadCostume} = require('./import/load-costume.js');
|
||||
const {loadSound} = require('./import/load-sound.js');
|
||||
const {serializeSounds, serializeCostumes} = require('./serialization/serialize-assets');
|
||||
require('blueimp-canvas-to-blob');
|
||||
require('canvas-toBlob');
|
||||
|
||||
const RESERVED_NAMES = ['_mouse_', '_stage_', '_edge_', '_myself_', '_random_'];
|
||||
|
||||
|
|
Loading…
Reference in a new issue