hippo-fw 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/client/hippo/__mocks__/config.js +4 -4
  4. data/client/hippo/boot.jsx +8 -8
  5. data/client/hippo/components/form.jsx +1 -2
  6. data/client/hippo/components/form/wrapper.jsx +20 -8
  7. data/client/hippo/config.android.js +8 -0
  8. data/client/hippo/config.ios.js +8 -0
  9. data/client/hippo/config.js +5 -71
  10. data/client/hippo/lib/pub_sub.js +34 -0
  11. data/client/hippo/models/base.js +6 -6
  12. data/client/hippo/models/config.js +60 -0
  13. data/client/hippo/models/pub_sub.js +157 -0
  14. data/client/hippo/models/pub_sub/channel.js +35 -0
  15. data/client/hippo/screens/definition.js +1 -1
  16. data/client/hippo/screens/index.js +2 -10
  17. data/client/hippo/screens/user-management/edit-form.jsx +10 -7
  18. data/client/hippo/user.js +1 -3
  19. data/client/hippo/workspace/index.jsx +16 -15
  20. data/client/hippo/workspace/menu.jsx +2 -8
  21. data/client/hippo/workspace/screen.jsx +6 -6
  22. data/config/database.yml +1 -0
  23. data/config/routes.rb +4 -4
  24. data/config/webpack.config.js +18 -16
  25. data/hippo-fw.gemspec +2 -2
  26. data/lib/hippo.rb +1 -3
  27. data/lib/hippo/api.rb +1 -0
  28. data/lib/hippo/api/cable.rb +19 -20
  29. data/lib/hippo/api/handlers/user_session.rb +1 -1
  30. data/lib/hippo/api/pub_sub.rb +7 -5
  31. data/lib/hippo/api/routing.rb +1 -1
  32. data/lib/hippo/api/updates.rb +1 -1
  33. data/lib/hippo/concerns/api_path.rb +2 -3
  34. data/lib/hippo/configuration.rb +2 -0
  35. data/lib/hippo/rails.rb +9 -0
  36. data/lib/hippo/user.rb +2 -1
  37. data/lib/hippo/version.rb +1 -1
  38. data/package-lock.json +6823 -0
  39. data/package.json +43 -34
  40. data/spec/client/models/pub_sub.spec.js +27 -0
  41. data/templates/js/config-data.js +1 -1
  42. data/templates/js/screen-definitions.js +2 -2
  43. data/yarn.lock +307 -15
  44. metadata +28 -9
  45. data/client/extension.js +0 -0
  46. data/client/hippo/models/PubSub.js +0 -208
  47. data/lib/generators/hippo/migrations/install_generator.rb +0 -42
  48. data/lib/hippo/rails_engine.rb +0 -5
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "hippo-fw",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "Hippo is a framework for easily writing single page web applications",
5
- "main": "index.js",
5
+ "main": "client/hippo/index.js",
6
6
  "repository": "https://github.com/argosity/hippo",
7
7
  "author": "Nathan Stitt <nathan@stitt.org>",
8
8
  "license": "MIT",
@@ -10,18 +10,20 @@
10
10
  "client"
11
11
  ],
12
12
  "dependencies": {
13
- "babel-core": "^6.21.0",
14
- "babel-eslint": "latest",
15
- "babel-jest": "^18.0.0",
16
- "babel-loader": "^6.2.10",
13
+ "actioncable": "^5.0.4",
14
+ "babel-core": "^6.25.0",
15
+ "babel-eslint": "^7.2.3",
16
+ "babel-jest": "^20.0.3",
17
+ "babel-loader": "^7.0.0",
17
18
  "babel-plugin-lodash": "^3.2.11",
18
19
  "babel-plugin-transform-decorators-legacy": "^1.3.4",
19
20
  "babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
20
21
  "babel-plugin-transform-flow-strip-types": "^6.22.0",
21
22
  "babel-plugin-transform-function-bind": "^6.22.0",
22
23
  "babel-plugin-transform-runtime": "^6.15.0",
23
- "babel-preset-env": "^1.5.1",
24
+ "babel-preset-env": "^1.5.2",
24
25
  "babel-preset-es2015-loose": "^8.0.0",
26
+ "babel-preset-jest": "^20.0.3",
25
27
  "babel-preset-latest": "^6.16.0",
26
28
  "babel-preset-react": "^6.16.0",
27
29
  "babel-preset-stage-0": "^6.22.0",
@@ -29,55 +31,62 @@
29
31
  "big.js": "^3.1.3",
30
32
  "classnames": "^2.2.5",
31
33
  "compression-webpack-plugin": "^0.4.0",
32
- "core-decorators": "^0.17.0",
33
- "css-loader": "^0.26.1",
34
+ "core-decorators": "^0.19.0",
35
+ "create-react-class": "^15.6.0",
36
+ "css-loader": "^0.28.4",
34
37
  "date-fns": "^1.28.2",
35
- "domtastic": "^0.12.3",
38
+ "domtastic": "^0.15.0",
36
39
  "enzyme": "^2.8.2",
37
- "eslint": "^3.13.1",
40
+ "eslint": "^4.0.0",
38
41
  "eslint-config-argosity": "^1.1.3",
39
- "file-loader": "^0.11.1",
42
+ "file-loader": "^0.11.2",
40
43
  "flexboxgrid": "^6.3.1",
41
44
  "grommet": "^1.4.0",
42
- "history": "3.2.1",
45
+ "history": "^4.6.2",
43
46
  "identity-obj-proxy": "^3.0.0",
44
47
  "invariant": "^2.2.2",
45
- "jest": "^19.0.2",
48
+ "jest": "^20.0.4",
49
+ "jest-cli": "^20.0.4",
46
50
  "jest-enzyme": "^3.1.0",
47
51
  "jest-fetch-mock": "^1.0.7",
48
52
  "js-yaml": "^3.8.2",
49
- "jsdom": "^10.1.0",
53
+ "jsdom": "^11.0.0",
50
54
  "lodash": "^4.17.4",
51
55
  "loglevel": "^1.4.1",
52
- "mobx": "^3.0.0",
53
- "mobx-decorated-models": "^0.5.1",
56
+ "mobx": "^3.1.15",
57
+ "mobx-decorated-models": "^0.5.2",
58
+ "mobx-persist": "^0.3.3",
54
59
  "mobx-react": "^4.1.0",
55
60
  "node-sass": "^4.5.0",
56
- "pluralize": "^3.1.0",
61
+ "pluralize": "^5.0.0",
57
62
  "prop-types": "^15.5.8",
58
63
  "qs": "^6.3.0",
59
- "react": "^15.4.2",
60
- "react-addons-shallow-compare": "^15.4.2",
61
- "react-addons-test-utils": "^15.4.2",
62
- "react-async-component": "^0.2.2",
63
- "react-dom": "^15.4.2",
64
+ "react": "^15.6.1",
65
+ "react-addons-shallow-compare": "^15.6.0",
66
+ "react-addons-test-utils": "^15.6.0",
67
+ "react-async-component": "^1.0.0-beta.3",
68
+ "react-dom": "^15.6.1",
64
69
  "react-dropzone": "^3.10.0",
65
- "react-flexbox-grid": "https://github.com/nathanstitt/react-flexbox-grid.git#devel",
70
+ "react-flexbox-grid": "git+https://github.com/nathanstitt/react-flexbox-grid.git#devel",
66
71
  "react-hot-loader": "3.0.0-beta.6",
67
- "react-motion": "^0.4.7",
68
- "react-router": "^3.0.2",
72
+ "react-motion": "^0.5.0",
73
+ "react-native-storage": "^0.2.2",
74
+ "react-router": "^4.1.1",
75
+ "react-router-dom": "^4.1.1",
69
76
  "react-sidebar": "^2.3.0",
70
- "react-test-renderer": "^15.4.2",
77
+ "react-test-renderer": "^15.6.1",
71
78
  "react-tippy": "^0.14.0",
72
- "react-virtualized": "^9.0.0",
79
+ "react-virtualized": "^9.8.0",
80
+ "resolve-url-loader": "^2.0.2",
73
81
  "rsvp": "^3.3.3",
74
- "sass-loader": "^4.1.1",
82
+ "sass-loader": "^6.0.6",
83
+ "sockjs-client": "^1.1.4",
75
84
  "sprintf-js": "^1.0.3",
76
- "style-loader": "^0.13.1",
77
- "url-loader": "^0.5.8",
78
- "validator": "^6.2.1",
79
- "webpack": "v2.2.0-rc.4",
80
- "webpack-dev-server": "v2.2.0-rc.0",
85
+ "style-loader": "^0.18.2",
86
+ "url-loader": "^0.5.9",
87
+ "validator": "^7.0.0",
88
+ "webpack": "^2.6.1",
89
+ "webpack-dev-server": "^2.4.5",
81
90
  "whatwg-fetch": "^2.0.2",
82
91
  "when-dom-ready": "^1.2.4"
83
92
  }
@@ -0,0 +1,27 @@
1
+ import { onBoot, observePubSub } from 'hippo/models/pub_sub';
2
+ import PubSubChannel from 'hippo/models/pub_sub/channel';
3
+
4
+ import { Ship, Container } from '../test-models';
5
+
6
+ jest.mock('hippo/user', () => ({
7
+ isLoggedIn: true,
8
+ }));
9
+ jest.mock('hippo/models/pub_sub/channel');
10
+
11
+ describe('PubSub', () => {
12
+ it('watches and checks in and out', () => {
13
+ const ship = new Ship();
14
+ const container = new Container({ id: '2' });
15
+ onBoot();
16
+ expect(PubSubChannel.prototype.subscribe)
17
+ .not.toHaveBeenCalledWith('test/boat/test');
18
+ expect(PubSubChannel.prototype.subscribe)
19
+ .not.toHaveBeenCalledWith('test/container/2');
20
+ observePubSub(ship, container);
21
+ ship.name = 'test';
22
+ expect(ship.identifierFieldValue).toEqual('test');
23
+ observePubSub(ship);
24
+ expect(PubSubChannel.prototype.subscribe)
25
+ .toHaveBeenCalledWith('test/boat/test');
26
+ });
27
+ });
@@ -7,4 +7,4 @@ import <%= name %> from '<%= ext.client_extension_path %>';
7
7
 
8
8
  <% end %>
9
9
 
10
- Config.bootstrap(<%= Hippo::Extensions.client_bootstrap_data.to_json %>);
10
+ Config.update(<%= Hippo::Extensions.client_bootstrap_data.to_json %>);
@@ -1,4 +1,4 @@
1
- import Definition, { createAsyncComponent } from 'hippo/screens/definition';
1
+ import Definition, { asyncComponent } from 'hippo/screens/definition';
2
2
  import Group from 'hippo/screens/group';
3
3
 
4
4
  <% Hippo::Screen.each_group do | group | %>
@@ -11,7 +11,7 @@ const Screens = {};
11
11
  Screens['<%= screen.identifier %>'] = <%= screen.to_json %>;
12
12
  Definition.register(
13
13
  Screens['<%= screen.identifier %>'],
14
- createAsyncComponent({ resolve: () => System.import(<%= "'#{screen.asset_path}'" %>) }),
14
+ asyncComponent({ resolve: () => System.import(<%= "'#{screen.asset_path}'" %>) }),
15
15
  );
16
16
  <% end -%>
17
17
 
data/yarn.lock CHANGED
@@ -51,6 +51,18 @@ acorn@^5.0.1:
51
51
  version "5.0.3"
52
52
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d"
53
53
 
54
+ adjust-sourcemap-loader@^1.1.0:
55
+ version "1.1.0"
56
+ resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-1.1.0.tgz#412d92404eb61e4113635012cba53a33d008e0e2"
57
+ dependencies:
58
+ assert "^1.3.0"
59
+ camelcase "^1.2.1"
60
+ loader-utils "^1.0.2"
61
+ lodash.assign "^4.0.1"
62
+ lodash.defaults "^3.1.2"
63
+ object-path "^0.9.2"
64
+ regex-parser "^2.2.1"
65
+
54
66
  ajv-keywords@^1.0.0, ajv-keywords@^1.1.1:
55
67
  version "1.5.1"
56
68
  resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
@@ -203,7 +215,7 @@ assert-plus@^0.2.0:
203
215
  version "0.2.0"
204
216
  resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
205
217
 
206
- assert@^1.1.1:
218
+ assert@^1.1.1, assert@^1.3.0:
207
219
  version "1.4.1"
208
220
  resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
209
221
  dependencies:
@@ -239,6 +251,10 @@ asynckit@^0.4.0:
239
251
  version "0.4.0"
240
252
  resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
241
253
 
254
+ atob@~1.1.0:
255
+ version "1.1.3"
256
+ resolved "https://registry.yarnpkg.com/atob/-/atob-1.1.3.tgz#95f13629b12c3a51a5d215abdce2aa9f32f80773"
257
+
242
258
  attr-accept@^1.0.3:
243
259
  version "1.1.0"
244
260
  resolved "https://registry.yarnpkg.com/attr-accept/-/attr-accept-1.1.0.tgz#b5cd35227f163935a8f1de10ed3eba16941f6be6"
@@ -262,6 +278,27 @@ aws4@^1.2.1:
262
278
  version "1.6.0"
263
279
  resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
264
280
 
281
+ babel-cli@^6.8.0:
282
+ version "6.24.1"
283
+ resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283"
284
+ dependencies:
285
+ babel-core "^6.24.1"
286
+ babel-polyfill "^6.23.0"
287
+ babel-register "^6.24.1"
288
+ babel-runtime "^6.22.0"
289
+ commander "^2.8.1"
290
+ convert-source-map "^1.1.0"
291
+ fs-readdir-recursive "^1.0.0"
292
+ glob "^7.0.0"
293
+ lodash "^4.2.0"
294
+ output-file-sync "^1.1.0"
295
+ path-is-absolute "^1.0.0"
296
+ slash "^1.0.0"
297
+ source-map "^0.5.0"
298
+ v8flags "^2.0.10"
299
+ optionalDependencies:
300
+ chokidar "^1.6.1"
301
+
265
302
  babel-code-frame@^6.11.0, babel-code-frame@^6.16.0, babel-code-frame@^6.22.0:
266
303
  version "6.22.0"
267
304
  resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
@@ -294,6 +331,30 @@ babel-core@^6.0.0, babel-core@^6.21.0, babel-core@^6.24.0:
294
331
  slash "^1.0.0"
295
332
  source-map "^0.5.0"
296
333
 
334
+ babel-core@^6.24.1:
335
+ version "6.25.0"
336
+ resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729"
337
+ dependencies:
338
+ babel-code-frame "^6.22.0"
339
+ babel-generator "^6.25.0"
340
+ babel-helpers "^6.24.1"
341
+ babel-messages "^6.23.0"
342
+ babel-register "^6.24.1"
343
+ babel-runtime "^6.22.0"
344
+ babel-template "^6.25.0"
345
+ babel-traverse "^6.25.0"
346
+ babel-types "^6.25.0"
347
+ babylon "^6.17.2"
348
+ convert-source-map "^1.1.0"
349
+ debug "^2.1.1"
350
+ json5 "^0.5.0"
351
+ lodash "^4.2.0"
352
+ minimatch "^3.0.2"
353
+ path-is-absolute "^1.0.0"
354
+ private "^0.1.6"
355
+ slash "^1.0.0"
356
+ source-map "^0.5.0"
357
+
297
358
  babel-eslint@^7.1.0, babel-eslint@latest:
298
359
  version "7.2.1"
299
360
  resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.1.tgz#079422eb73ba811e3ca0865ce87af29327f8c52f"
@@ -316,6 +377,19 @@ babel-generator@^6.18.0, babel-generator@^6.24.0:
316
377
  source-map "^0.5.0"
317
378
  trim-right "^1.0.1"
318
379
 
380
+ babel-generator@^6.25.0:
381
+ version "6.25.0"
382
+ resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc"
383
+ dependencies:
384
+ babel-messages "^6.23.0"
385
+ babel-runtime "^6.22.0"
386
+ babel-types "^6.25.0"
387
+ detect-indent "^4.0.0"
388
+ jsesc "^1.3.0"
389
+ lodash "^4.2.0"
390
+ source-map "^0.5.0"
391
+ trim-right "^1.0.1"
392
+
319
393
  babel-helper-bindify-decorators@^6.22.0:
320
394
  version "6.22.0"
321
395
  resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952"
@@ -443,6 +517,13 @@ babel-helpers@^6.23.0:
443
517
  babel-runtime "^6.22.0"
444
518
  babel-template "^6.23.0"
445
519
 
520
+ babel-helpers@^6.24.1:
521
+ version "6.24.1"
522
+ resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
523
+ dependencies:
524
+ babel-runtime "^6.22.0"
525
+ babel-template "^6.24.1"
526
+
446
527
  babel-jest@^18.0.0:
447
528
  version "18.0.0"
448
529
  resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-18.0.0.tgz#17ebba8cb3285c906d859e8707e4e79795fb65e3"
@@ -877,6 +958,14 @@ babel-plugin-transform-strict-mode@^6.22.0:
877
958
  babel-runtime "^6.22.0"
878
959
  babel-types "^6.22.0"
879
960
 
961
+ babel-polyfill@^6.23.0:
962
+ version "6.23.0"
963
+ resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d"
964
+ dependencies:
965
+ babel-runtime "^6.22.0"
966
+ core-js "^2.4.0"
967
+ regenerator-runtime "^0.10.0"
968
+
880
969
  babel-preset-env@^1.5.1:
881
970
  version "1.5.1"
882
971
  resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.5.1.tgz#d2eca6af179edf27cdc305a84820f601b456dd0b"
@@ -918,7 +1007,7 @@ babel-preset-es2015-loose@^8.0.0:
918
1007
  dependencies:
919
1008
  modify-babel-preset "^3.1.0"
920
1009
 
921
- babel-preset-es2015@^6.24.0:
1010
+ babel-preset-es2015@^6.24.0, babel-preset-es2015@^6.6.0:
922
1011
  version "6.24.0"
923
1012
  resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.0.tgz#c162d68b1932696e036cd3110dc1ccd303d2673a"
924
1013
  dependencies:
@@ -1044,6 +1133,18 @@ babel-register@^6.24.0:
1044
1133
  mkdirp "^0.5.1"
1045
1134
  source-map-support "^0.4.2"
1046
1135
 
1136
+ babel-register@^6.24.1:
1137
+ version "6.24.1"
1138
+ resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f"
1139
+ dependencies:
1140
+ babel-core "^6.24.1"
1141
+ babel-runtime "^6.22.0"
1142
+ core-js "^2.4.0"
1143
+ home-or-tmp "^2.0.0"
1144
+ lodash "^4.2.0"
1145
+ mkdirp "^0.5.1"
1146
+ source-map-support "^0.4.2"
1147
+
1047
1148
  babel-runtime@^6.11.6, babel-runtime@^6.18.0, babel-runtime@^6.2.0, babel-runtime@^6.22.0:
1048
1149
  version "6.23.0"
1049
1150
  resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b"
@@ -1061,6 +1162,16 @@ babel-template@^6.16.0, babel-template@^6.22.0, babel-template@^6.23.0, babel-te
1061
1162
  babylon "^6.11.0"
1062
1163
  lodash "^4.2.0"
1063
1164
 
1165
+ babel-template@^6.24.1, babel-template@^6.25.0:
1166
+ version "6.25.0"
1167
+ resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071"
1168
+ dependencies:
1169
+ babel-runtime "^6.22.0"
1170
+ babel-traverse "^6.25.0"
1171
+ babel-types "^6.25.0"
1172
+ babylon "^6.17.2"
1173
+ lodash "^4.2.0"
1174
+
1064
1175
  babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1:
1065
1176
  version "6.23.1"
1066
1177
  resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48"
@@ -1075,6 +1186,20 @@ babel-traverse@^6.18.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-tr
1075
1186
  invariant "^2.2.0"
1076
1187
  lodash "^4.2.0"
1077
1188
 
1189
+ babel-traverse@^6.25.0:
1190
+ version "6.25.0"
1191
+ resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1"
1192
+ dependencies:
1193
+ babel-code-frame "^6.22.0"
1194
+ babel-messages "^6.23.0"
1195
+ babel-runtime "^6.22.0"
1196
+ babel-types "^6.25.0"
1197
+ babylon "^6.17.2"
1198
+ debug "^2.2.0"
1199
+ globals "^9.0.0"
1200
+ invariant "^2.2.0"
1201
+ lodash "^4.2.0"
1202
+
1078
1203
  babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0:
1079
1204
  version "6.23.0"
1080
1205
  resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf"
@@ -1084,10 +1209,23 @@ babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23
1084
1209
  lodash "^4.2.0"
1085
1210
  to-fast-properties "^1.0.1"
1086
1211
 
1212
+ babel-types@^6.25.0:
1213
+ version "6.25.0"
1214
+ resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e"
1215
+ dependencies:
1216
+ babel-runtime "^6.22.0"
1217
+ esutils "^2.0.2"
1218
+ lodash "^4.2.0"
1219
+ to-fast-properties "^1.0.1"
1220
+
1087
1221
  babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0, babylon@^6.16.1:
1088
1222
  version "6.16.1"
1089
1223
  resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3"
1090
1224
 
1225
+ babylon@^6.17.2:
1226
+ version "6.17.3"
1227
+ resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.3.tgz#1327d709950b558f204e5352587fd0290f8d8e48"
1228
+
1091
1229
  bail@^1.0.0:
1092
1230
  version "1.0.1"
1093
1231
  resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.1.tgz#912579de8b391aadf3c5fdf4cd2a0fc225df3bc2"
@@ -1293,7 +1431,7 @@ camelcase-keys@^2.0.0:
1293
1431
  camelcase "^2.0.0"
1294
1432
  map-obj "^1.0.0"
1295
1433
 
1296
- camelcase@^1.0.2:
1434
+ camelcase@^1.0.2, camelcase@^1.2.1:
1297
1435
  version "1.2.1"
1298
1436
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
1299
1437
 
@@ -1305,6 +1443,10 @@ camelcase@^3.0.0:
1305
1443
  version "3.0.0"
1306
1444
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
1307
1445
 
1446
+ camelcase@^4.0.0:
1447
+ version "4.1.0"
1448
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
1449
+
1308
1450
  caniuse-api@^1.5.2:
1309
1451
  version "1.5.3"
1310
1452
  resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.5.3.tgz#5018e674b51c393e4d50614275dc017e27c4a2a2"
@@ -1376,7 +1518,7 @@ cheerio@^0.22.0:
1376
1518
  lodash.reject "^4.4.0"
1377
1519
  lodash.some "^4.4.0"
1378
1520
 
1379
- chokidar@^1.4.3, chokidar@^1.6.0:
1521
+ chokidar@^1.4.3, chokidar@^1.6.0, chokidar@^1.6.1:
1380
1522
  version "1.6.1"
1381
1523
  resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2"
1382
1524
  dependencies:
@@ -1591,7 +1733,11 @@ content-type@~1.0.2:
1591
1733
  version "1.0.2"
1592
1734
  resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed"
1593
1735
 
1594
- convert-source-map@^1.1.0:
1736
+ convert-source-map@^0.3.3:
1737
+ version "0.3.5"
1738
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190"
1739
+
1740
+ convert-source-map@^1.1.0, convert-source-map@^1.1.1:
1595
1741
  version "1.5.0"
1596
1742
  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
1597
1743
 
@@ -1724,6 +1870,15 @@ css-what@2.1:
1724
1870
  version "2.1.0"
1725
1871
  resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd"
1726
1872
 
1873
+ css@^2.0.0:
1874
+ version "2.2.1"
1875
+ resolved "https://registry.yarnpkg.com/css/-/css-2.2.1.tgz#73a4c81de85db664d4ee674f7d47085e3b2d55dc"
1876
+ dependencies:
1877
+ inherits "^2.0.1"
1878
+ source-map "^0.1.38"
1879
+ source-map-resolve "^0.3.0"
1880
+ urix "^0.1.0"
1881
+
1727
1882
  cssesc@^0.1.0:
1728
1883
  version "0.1.0"
1729
1884
  resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4"
@@ -1998,11 +2153,7 @@ ee-first@1.1.1:
1998
2153
  version "1.1.1"
1999
2154
  resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
2000
2155
 
2001
- electron-to-chromium@^1.2.7:
2002
- version "1.3.2"
2003
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.2.tgz#b8ce5c93b308db0e92f6d0435c46ddec8f6363ab"
2004
-
2005
- electron-to-chromium@^1.3.11:
2156
+ electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.11:
2006
2157
  version "1.3.13"
2007
2158
  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.13.tgz#1b3a5eace6e087bb5e257a100b0cbfe81b2891fc"
2008
2159
 
@@ -2124,6 +2275,13 @@ es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14:
2124
2275
  es6-iterator "2"
2125
2276
  es6-symbol "~3.1"
2126
2277
 
2278
+ es6-actioncable@^0.5.4:
2279
+ version "0.5.4"
2280
+ resolved "https://registry.yarnpkg.com/es6-actioncable/-/es6-actioncable-0.5.4.tgz#b20fad12716b42861a6997220f8e8063cc566b76"
2281
+ dependencies:
2282
+ babel-cli "^6.8.0"
2283
+ babel-preset-es2015 "^6.6.0"
2284
+
2127
2285
  es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1:
2128
2286
  version "2.0.1"
2129
2287
  resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512"
@@ -2626,6 +2784,10 @@ fresh@0.5.0:
2626
2784
  version "0.5.0"
2627
2785
  resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e"
2628
2786
 
2787
+ fs-readdir-recursive@^1.0.0:
2788
+ version "1.0.0"
2789
+ resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560"
2790
+
2629
2791
  fs.realpath@^1.0.0:
2630
2792
  version "1.0.0"
2631
2793
  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
@@ -2763,7 +2925,7 @@ globule@^1.0.0:
2763
2925
  lodash "~4.16.4"
2764
2926
  minimatch "~3.0.2"
2765
2927
 
2766
- graceful-fs@^4.1.2, graceful-fs@^4.1.6:
2928
+ graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6:
2767
2929
  version "4.1.11"
2768
2930
  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
2769
2931
 
@@ -3849,7 +4011,7 @@ loader-utils@^0.2.15, loader-utils@^0.2.16:
3849
4011
  json5 "^0.5.0"
3850
4012
  object-assign "^4.0.1"
3851
4013
 
3852
- loader-utils@^1.0.2:
4014
+ loader-utils@^1.0.0, loader-utils@^1.0.2:
3853
4015
  version "1.1.0"
3854
4016
  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd"
3855
4017
  dependencies:
@@ -3864,6 +4026,17 @@ locate-path@^2.0.0:
3864
4026
  p-locate "^2.0.0"
3865
4027
  path-exists "^3.0.0"
3866
4028
 
4029
+ lodash._baseassign@^3.0.0:
4030
+ version "3.2.0"
4031
+ resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e"
4032
+ dependencies:
4033
+ lodash._basecopy "^3.0.0"
4034
+ lodash.keys "^3.0.0"
4035
+
4036
+ lodash._basecopy@^3.0.0:
4037
+ version "3.0.1"
4038
+ resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"
4039
+
3867
4040
  lodash._baseisequal@^3.0.0:
3868
4041
  version "3.0.7"
3869
4042
  resolved "https://registry.yarnpkg.com/lodash._baseisequal/-/lodash._baseisequal-3.0.7.tgz#d8025f76339d29342767dcc887ce5cb95a5b51f1"
@@ -3876,11 +4049,31 @@ lodash._bindcallback@^3.0.0:
3876
4049
  version "3.0.1"
3877
4050
  resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e"
3878
4051
 
4052
+ lodash._createassigner@^3.0.0:
4053
+ version "3.1.1"
4054
+ resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11"
4055
+ dependencies:
4056
+ lodash._bindcallback "^3.0.0"
4057
+ lodash._isiterateecall "^3.0.0"
4058
+ lodash.restparam "^3.0.0"
4059
+
3879
4060
  lodash._getnative@^3.0.0:
3880
4061
  version "3.9.1"
3881
4062
  resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5"
3882
4063
 
3883
- lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.2.0:
4064
+ lodash._isiterateecall@^3.0.0:
4065
+ version "3.0.9"
4066
+ resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c"
4067
+
4068
+ lodash.assign@^3.0.0:
4069
+ version "3.2.0"
4070
+ resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa"
4071
+ dependencies:
4072
+ lodash._baseassign "^3.0.0"
4073
+ lodash._createassigner "^3.0.0"
4074
+ lodash.keys "^3.0.0"
4075
+
4076
+ lodash.assign@^4.0.1, lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.2.0:
3884
4077
  version "4.2.0"
3885
4078
  resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7"
3886
4079
 
@@ -3904,7 +4097,14 @@ lodash.cond@^4.3.0:
3904
4097
  version "4.5.2"
3905
4098
  resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
3906
4099
 
3907
- lodash.defaults@^4.0.1:
4100
+ lodash.defaults@^3.1.2:
4101
+ version "3.1.2"
4102
+ resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-3.1.2.tgz#c7308b18dbf8bc9372d701a73493c61192bd2e2c"
4103
+ dependencies:
4104
+ lodash.assign "^3.0.0"
4105
+ lodash.restparam "^3.0.0"
4106
+
4107
+ lodash.defaults@^4.0.0, lodash.defaults@^4.0.1:
3908
4108
  version "4.2.0"
3909
4109
  resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c"
3910
4110
 
@@ -3995,6 +4195,10 @@ lodash.reject@^4.4.0:
3995
4195
  version "4.6.0"
3996
4196
  resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415"
3997
4197
 
4198
+ lodash.restparam@^3.0.0:
4199
+ version "3.6.1"
4200
+ resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805"
4201
+
3998
4202
  lodash.some@^4.4.0:
3999
4203
  version "4.6.0"
4000
4204
  resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d"
@@ -4192,6 +4396,12 @@ mobx-decorated-models@^0.5.1:
4192
4396
  mobx "^3.0.2"
4193
4397
  serializr "1.1.11"
4194
4398
 
4399
+ mobx-persist@^0.3.3:
4400
+ version "0.3.3"
4401
+ resolved "https://registry.yarnpkg.com/mobx-persist/-/mobx-persist-0.3.3.tgz#43159148a2bd97be9ba239d7d2a2c0978a527a9c"
4402
+ dependencies:
4403
+ serializr "^1.1.11"
4404
+
4195
4405
  mobx-react@^4.1.0:
4196
4406
  version "4.1.5"
4197
4407
  resolved "https://registry.yarnpkg.com/mobx-react/-/mobx-react-4.1.5.tgz#75cf4dbffc91b9cb23d56c060dfd8d2ca52450dc"
@@ -4432,6 +4642,10 @@ object-keys@^1.0.10, object-keys@^1.0.8:
4432
4642
  version "1.0.11"
4433
4643
  resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
4434
4644
 
4645
+ object-path@^0.9.2:
4646
+ version "0.9.2"
4647
+ resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.9.2.tgz#0fd9a74fc5fad1ae3968b586bda5c632bd6c05a5"
4648
+
4435
4649
  object-values@^1.0.0:
4436
4650
  version "1.0.0"
4437
4651
  resolved "https://registry.yarnpkg.com/object-values/-/object-values-1.0.0.tgz#72af839630119e5b98c3b02bb8c27e3237158105"
@@ -4549,6 +4763,14 @@ osenv@0, osenv@^0.1.4:
4549
4763
  os-homedir "^1.0.0"
4550
4764
  os-tmpdir "^1.0.0"
4551
4765
 
4766
+ output-file-sync@^1.1.0:
4767
+ version "1.1.2"
4768
+ resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
4769
+ dependencies:
4770
+ graceful-fs "^4.1.4"
4771
+ mkdirp "^0.5.1"
4772
+ object-assign "^4.1.0"
4773
+
4552
4774
  p-limit@^1.1.0:
4553
4775
  version "1.1.0"
4554
4776
  resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc"
@@ -5168,6 +5390,10 @@ react-motion@^0.4.7:
5168
5390
  performance-now "^0.2.0"
5169
5391
  raf "^3.1.0"
5170
5392
 
5393
+ react-native-storage@^0.2.2:
5394
+ version "0.2.2"
5395
+ resolved "https://registry.yarnpkg.com/react-native-storage/-/react-native-storage-0.2.2.tgz#4449197f122b2da0650e3704e1f050260ed58d9f"
5396
+
5171
5397
  react-proxy@^3.0.0-alpha.0:
5172
5398
  version "3.0.0-alpha.1"
5173
5399
  resolved "https://registry.yarnpkg.com/react-proxy/-/react-proxy-3.0.0-alpha.1.tgz#4400426bcfa80caa6724c7755695315209fa4b07"
@@ -5324,6 +5550,10 @@ regex-cache@^0.4.2:
5324
5550
  is-equal-shallow "^0.1.3"
5325
5551
  is-primitive "^2.0.0"
5326
5552
 
5553
+ regex-parser@^2.2.1:
5554
+ version "2.2.7"
5555
+ resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.7.tgz#bd090e09181849acc45457e765f7be2a63f50ef1"
5556
+
5327
5557
  regexpu-core@^1.0.0:
5328
5558
  version "1.0.0"
5329
5559
  resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b"
@@ -5460,6 +5690,24 @@ resolve-from@^1.0.0:
5460
5690
  version "1.0.1"
5461
5691
  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
5462
5692
 
5693
+ resolve-url-loader@^2.0.2:
5694
+ version "2.0.2"
5695
+ resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-2.0.2.tgz#c465e97ea0a4791f3961f766cea775ff2e3ceb8c"
5696
+ dependencies:
5697
+ adjust-sourcemap-loader "^1.1.0"
5698
+ camelcase "^4.0.0"
5699
+ convert-source-map "^1.1.1"
5700
+ loader-utils "^1.0.0"
5701
+ lodash.defaults "^4.0.0"
5702
+ rework "^1.0.1"
5703
+ rework-visit "^1.0.0"
5704
+ source-map "^0.5.6"
5705
+ urix "^0.1.0"
5706
+
5707
+ resolve-url@~0.2.1:
5708
+ version "0.2.1"
5709
+ resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
5710
+
5463
5711
  resolve@1.1.7:
5464
5712
  version "1.1.7"
5465
5713
  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
@@ -5477,6 +5725,17 @@ restore-cursor@^1.0.1:
5477
5725
  exit-hook "^1.0.0"
5478
5726
  onetime "^1.0.0"
5479
5727
 
5728
+ rework-visit@^1.0.0:
5729
+ version "1.0.0"
5730
+ resolved "https://registry.yarnpkg.com/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a"
5731
+
5732
+ rework@^1.0.1:
5733
+ version "1.0.1"
5734
+ resolved "https://registry.yarnpkg.com/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7"
5735
+ dependencies:
5736
+ convert-source-map "^0.3.3"
5737
+ css "^2.0.0"
5738
+
5480
5739
  right-align@^0.1.1:
5481
5740
  version "0.1.3"
5482
5741
  resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
@@ -5569,7 +5828,7 @@ send@0.15.1:
5569
5828
  range-parser "~1.2.0"
5570
5829
  statuses "~1.3.1"
5571
5830
 
5572
- serializr@1.1.11:
5831
+ serializr@1.1.11, serializr@^1.1.11:
5573
5832
  version "1.1.11"
5574
5833
  resolved "https://registry.yarnpkg.com/serializr/-/serializr-1.1.11.tgz#88434cd5fcb9f82079223443e131f0ce4296cf8a"
5575
5834
 
@@ -5678,12 +5937,31 @@ source-list-map@^0.1.7, source-list-map@~0.1.7:
5678
5937
  version "0.1.8"
5679
5938
  resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106"
5680
5939
 
5940
+ source-map-resolve@^0.3.0:
5941
+ version "0.3.1"
5942
+ resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.3.1.tgz#610f6122a445b8dd51535a2a71b783dfc1248761"
5943
+ dependencies:
5944
+ atob "~1.1.0"
5945
+ resolve-url "~0.2.1"
5946
+ source-map-url "~0.3.0"
5947
+ urix "~0.1.0"
5948
+
5681
5949
  source-map-support@^0.4.2:
5682
5950
  version "0.4.14"
5683
5951
  resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef"
5684
5952
  dependencies:
5685
5953
  source-map "^0.5.6"
5686
5954
 
5955
+ source-map-url@~0.3.0:
5956
+ version "0.3.0"
5957
+ resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.3.0.tgz#7ecaf13b57bcd09da8a40c5d269db33799d4aaf9"
5958
+
5959
+ source-map@^0.1.38:
5960
+ version "0.1.43"
5961
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346"
5962
+ dependencies:
5963
+ amdefine ">=0.0.4"
5964
+
5687
5965
  source-map@^0.4.4:
5688
5966
  version "0.4.4"
5689
5967
  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
@@ -6124,6 +6402,10 @@ unpipe@~1.0.0:
6124
6402
  version "1.0.0"
6125
6403
  resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
6126
6404
 
6405
+ urix@^0.1.0, urix@~0.1.0:
6406
+ version "0.1.0"
6407
+ resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
6408
+
6127
6409
  url-loader@^0.5.8:
6128
6410
  version "0.5.8"
6129
6411
  resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-0.5.8.tgz#b9183b1801e0f847718673673040bc9dc1c715c5"
@@ -6152,6 +6434,10 @@ url@^0.11.0:
6152
6434
  punycode "1.3.2"
6153
6435
  querystring "0.2.0"
6154
6436
 
6437
+ user-home@^1.1.1:
6438
+ version "1.1.1"
6439
+ resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
6440
+
6155
6441
  user-home@^2.0.0:
6156
6442
  version "2.0.0"
6157
6443
  resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"
@@ -6180,6 +6466,12 @@ uuid@^3.0.0:
6180
6466
  version "3.0.1"
6181
6467
  resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
6182
6468
 
6469
+ v8flags@^2.0.10:
6470
+ version "2.1.1"
6471
+ resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
6472
+ dependencies:
6473
+ user-home "^1.1.1"
6474
+
6183
6475
  validate-npm-package-license@^3.0.1:
6184
6476
  version "3.0.1"
6185
6477
  resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"