mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-06-07 02:54:38 -04:00
fix: adapt to new scratch-storage@>=3 API
This commit is contained in:
parent
ec47dee233
commit
4cf4e24b40
4 changed files with 4 additions and 4 deletions
|
@ -43,7 +43,7 @@ const importLoadSound = require('../import/load-sound');
|
||||||
const soundMiddleware = new LoadingMiddleware();
|
const soundMiddleware = new LoadingMiddleware();
|
||||||
importLoadSound.loadSound = soundMiddleware.install(importLoadSound, importLoadSound.loadSound);
|
importLoadSound.loadSound = soundMiddleware.install(importLoadSound, importLoadSound.loadSound);
|
||||||
|
|
||||||
const ScratchStorage = require('scratch-storage');
|
const {ScratchStorage} = require('scratch-storage');
|
||||||
const VirtualMachine = require('..');
|
const VirtualMachine = require('..');
|
||||||
const Runtime = require('../engine/runtime');
|
const Runtime = require('../engine/runtime');
|
||||||
|
|
||||||
|
|
2
test/fixtures/make-test-storage.js
vendored
2
test/fixtures/make-test-storage.js
vendored
|
@ -1,4 +1,4 @@
|
||||||
const ScratchStorage = require('scratch-storage');
|
const {ScratchStorage} = require('scratch-storage');
|
||||||
|
|
||||||
const ASSET_SERVER = 'https://cdn.assets.scratch.mit.edu/';
|
const ASSET_SERVER = 'https://cdn.assets.scratch.mit.edu/';
|
||||||
const PROJECT_SERVER = 'https://cdn.projects.scratch.mit.edu/';
|
const PROJECT_SERVER = 'https://cdn.projects.scratch.mit.edu/';
|
||||||
|
|
|
@ -8,7 +8,7 @@ const path = require('path');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const test = require('tap').test;
|
const test = require('tap').test;
|
||||||
const AdmZip = require('adm-zip');
|
const AdmZip = require('adm-zip');
|
||||||
const ScratchStorage = require('scratch-storage');
|
const {ScratchStorage} = require('scratch-storage');
|
||||||
const VirtualMachine = require('../../src/index');
|
const VirtualMachine = require('../../src/index');
|
||||||
|
|
||||||
const projectUri = path.resolve(__dirname, '../fixtures/offline-custom-assets.sb2');
|
const projectUri = path.resolve(__dirname, '../fixtures/offline-custom-assets.sb2');
|
||||||
|
|
|
@ -95,7 +95,7 @@ const playgroundBuilder = webBuilder.clone()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.addModuleRule({
|
.addModuleRule({
|
||||||
test: require.resolve('scratch-storage/src/index.js'),
|
test: require.resolve('scratch-storage/src/index.ts'),
|
||||||
loader: 'expose-loader',
|
loader: 'expose-loader',
|
||||||
options: {
|
options: {
|
||||||
exposes: 'ScratchStorage'
|
exposes: 'ScratchStorage'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue