Bounding Box interface (#3906)

* Add an interface describing a bounding box registered on the workspace

* Clear the bounding box array

* PR comments

* Update chromedriver
This commit is contained in:
Sam El-Husseini
2020-05-19 18:06:11 -07:00
committed by GitHub
parent 38557d45be
commit fd916fdb9b
13 changed files with 122 additions and 18 deletions

View File

@@ -29,7 +29,7 @@ const packageDistribution = 'dist';
/**
* A helper method for wrapping a file into a Universal Module Definition.
* @param {string} namespace The export namespace.
* @param {Array<Object>} dependencies An array of dependencies to inject.
* @param {Array.<Object>} dependencies An array of dependencies to inject.
*/
function packageUMD(namespace, dependencies) {
return gulp.umd({
@@ -43,7 +43,7 @@ function packageUMD(namespace, dependencies) {
/**
* A helper method for wrapping a file into a CommonJS module for Node.js.
* @param {string} namespace The export namespace.
* @param {Array<Object>} dependencies An array of dependencies to inject.
* @param {Array.<Object>} dependencies An array of dependencies to inject.
*/
function packageCommonJS(namespace, dependencies) {
return gulp.umd({