Merge pull request #1925 from ericrosenbaum/bugfix/dont-load-vernier-yet

Do not load Vernier extension yet
This commit is contained in:
Paul Kaplan 2019-01-15 15:29:15 -05:00 committed by GitHub
commit 4b777d94e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,9 @@ const Scratch3VideoSensingBlocks = require('../extensions/scratch3_video_sensing
const Scratch3Speech2TextBlocks = require('../extensions/scratch3_speech2text'); const Scratch3Speech2TextBlocks = require('../extensions/scratch3_speech2text');
const Scratch3Ev3Blocks = require('../extensions/scratch3_ev3'); const Scratch3Ev3Blocks = require('../extensions/scratch3_ev3');
const Scratch3MakeyMakeyBlocks = require('../extensions/scratch3_makeymakey'); const Scratch3MakeyMakeyBlocks = require('../extensions/scratch3_makeymakey');
const Scratch3GdxForBlocks = require('../extensions/scratch3_gdx_for'); // todo: only load this extension once we have a compatible way to load its
// Vernier module dependency.
// const Scratch3GdxForBlocks = require('../extensions/scratch3_gdx_for');
const builtinExtensions = { const builtinExtensions = {
pen: Scratch3PenBlocks, pen: Scratch3PenBlocks,
@ -29,8 +31,8 @@ const builtinExtensions = {
videoSensing: Scratch3VideoSensingBlocks, videoSensing: Scratch3VideoSensingBlocks,
speech2text: Scratch3Speech2TextBlocks, speech2text: Scratch3Speech2TextBlocks,
ev3: Scratch3Ev3Blocks, ev3: Scratch3Ev3Blocks,
makeymakey: Scratch3MakeyMakeyBlocks, makeymakey: Scratch3MakeyMakeyBlocks
gdxfor: Scratch3GdxForBlocks // gdxfor: Scratch3GdxForBlocks
}; };
/** /**