Add missing require for utils.colour

Pushed without review since it’s activily breaking users (bug report filed from Blockly Games).
This commit is contained in:
Neil Fraser
2019-09-21 08:40:56 -07:00
parent 5609cda70f
commit 7653785ae6
2 changed files with 3 additions and 1 deletions

View File

@@ -43,12 +43,13 @@ goog.require('Blockly.WorkspaceSvg');
goog.require('Blockly.constants');
goog.require('Blockly.inject');
goog.require('Blockly.utils');
goog.require('Blockly.utils.colour');
goog.require('Blockly.Xml');
/**
* Blockly core version.
* This constant is overriden by the build script (build.py) to the value of the version
* This constant is overridden by the build script (build.py) to the value of the version
* in package.json. This is done during the gen_core build step.
* For local builds, you can pass --define='Blockly.VERSION=X.Y.Z' to the compiler
* to override this constant.