From c7793450e9d4329bd0f0a19428c8d54d844fc553 Mon Sep 17 00:00:00 2001 From: spalger Date: Mon, 3 Aug 2015 08:19:29 -0700 Subject: [PATCH 1/2] bable does not fully support subclassing Array like iojs does --- src/ui/UiApps.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ui/UiApps.js b/src/ui/UiApps.js index 8ec2dd8612d6d..a94ff7c614691 100644 --- a/src/ui/UiApps.js +++ b/src/ui/UiApps.js @@ -39,4 +39,8 @@ module.exports = class UiApps extends Array { return this._byId || (this._byId = _.indexBy(this, 'id')); } + toJSON() { + return this.slice(0); + } + }; From 1c3122882213f2e261c6190c601190a12a5528e4 Mon Sep 17 00:00:00 2001 From: spalger Date: Mon, 3 Aug 2015 09:10:33 -0700 Subject: [PATCH 2/2] update grunt-esvm to support master output changes --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7f111315008b8..08203fea6e35c 100644 --- a/package.json +++ b/package.json @@ -128,7 +128,7 @@ "grunt-contrib-compress": "^0.13.0", "grunt-contrib-copy": "^0.8.0", "grunt-contrib-eslint": "0.0.5", - "grunt-esvm": "^1.0.1", + "grunt-esvm": "^1.1.3", "grunt-karma": "^0.12.0", "grunt-replace": "^0.7.9", "grunt-run": "spalger/grunt-run#master",