do not load vernier extension yet

This commit is contained in:
Eric Rosenbaum 2019-01-15 15:20:05 -05:00
parent d5c2991a25
commit 5d329663aa

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
}; };
/** /**