react_on_rails 6.9.0 → 6.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9328c100671c200027cdc7d8230de79916044a23
4
- data.tar.gz: bfa2ba3f71de5f4951ca0b2d0b8bbe0ece0afc8b
3
+ metadata.gz: 343caca62c9b39ccb1f88d31b397f323d929f364
4
+ data.tar.gz: b650de1d04ac484dd7e2aca93afdfb9db7fc3f5b
5
5
  SHA512:
6
- metadata.gz: 5328449a8ec4805624926acbe23359748c4bbf3f7680b798c392b85d653bbe3fe6c4cfcf2dac43ce12d9a9adaa698992116cf075486aa1671ea76afbb6744c94
7
- data.tar.gz: fa1ebc8f3eb2db3caa2f9d4957d20b3bfd76ada8a064f0a8035dbd28bddd5662e3855c3003936048b7783e90692bbcd4dc3aac1fdbf90ca0549f13fcfebf3686
6
+ metadata.gz: bf91a8f1ecf4cc57d83ba24f5bbf3e4a16d09821822e2cc13da7fe1b405f32a153a198d156580440246a3dfbeac1624e434a6bf603bf0b4543b86c4ae9c45a31
7
+ data.tar.gz: 25a8fb2a01168686e0ced63770052a589915a0f42838d54052ba53ca7ac1756bcad4d84f19047b26c05cd2b6310ba9475fcfd0a55f225ee1bc0abe58272e6350
@@ -5,20 +5,25 @@ Contributors: please follow the recommendations outlined at [keepachangelog.com]
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [6.9.1] - 2017-03-30
9
+
10
+ ### Fixed
11
+ - Fixes Crash in Development for String Props. [#784](https://github.com/shakacode/react_on_rails/issues/784) by [justin808](https://github.com/justin808).
12
+
8
13
  ## [6.9.0] - 2017-03-29
9
14
 
10
- ## Fixed
15
+ ### Fixed
11
16
  - Fixed error in the release script. [#767](https://github.com/shakacode/react_on_rails/issues/767) by [isolo](https://github.com/isolo).
12
17
 
13
- ## Changed
18
+ ### Changed
14
19
  - Use <script type="application/json"> for props and store instead of hidden div. [#775] (https://github.com/shakacode/react_on_rails/pull/775) by [cheremukhin23](https://github.com/cheremukhin23).
15
20
 
16
- ## Added
21
+ ### Added
17
22
  - Add option to specify i18n_yml_dir in order to include only subset of locale files when generating translations.js & default.js for react-intl.
18
23
  [#777](https://github.com/shakacode/react_on_rails/pull/777) by [danijel](https://github.com/danijel).
19
24
 
20
25
  ## [6.8.2] - 2017-03-24
21
- ## Fixed
26
+ ### Fixed
22
27
  - Change webpack output path to absolute and update webpack to version ^2.3.1. [#771](https://github.com/shakacode/react_on_rails/pull/771) by [cheremukhin23](https://github.com/cheremukhin23).
23
28
 
24
29
  ## [6.8.1] - 2017-03-21
@@ -504,7 +509,8 @@ Best done with Object destructing:
504
509
  ##### Fixed
505
510
  - Fix several generator related issues.
506
511
 
507
- [Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.9.0...master
512
+ [Unreleased]: https://github.com/shakacode/react_on_rails/compare/6.9.1...master
513
+ [6.9.1]: https://github.com/shakacode/react_on_rails/compare/6.8.2...6.9.1
508
514
  [6.9.0]: https://github.com/shakacode/react_on_rails/compare/6.8.2...6.9.0
509
515
  [6.8.2]: https://github.com/shakacode/react_on_rails/compare/6.8.1...6.8.2
510
516
  [6.8.1]: https://github.com/shakacode/react_on_rails/compare/6.8.0...6.8.1
data/Gemfile CHANGED
@@ -14,7 +14,7 @@ gem "jquery-rails"
14
14
  gem "puma"
15
15
  gem "rails", "4.2.8"
16
16
  gem "rails_12factor"
17
- gem "rubocop", require: false
17
+ gem "rubocop", "0.47.1", require: false
18
18
  gem "ruby-lint", require: false
19
19
  gem "sass-rails", "~> 5.0"
20
20
  gem "scss_lint", require: false
@@ -222,11 +222,16 @@ module ReactOnRailsHelper
222
222
 
223
223
  private
224
224
 
225
- def json_safe_and_pretty(something)
225
+ def json_safe_and_pretty(hash_or_string)
226
226
  if Rails.env.development?
227
- ERB::Util.json_escape(JSON.pretty_generate(something.as_json))
227
+ # TODO: for json_safe_and_pretty
228
+ # 1. Add test
229
+ # 2. Add error handler if cannot parse the string with nice message
230
+ # 3. Consider checking that if not a string then a Hash
231
+ hash_value = hash_or_string.is_a?(String) ? JSON.parse(hash_or_string) : hash_or_string
232
+ ERB::Util.json_escape(JSON.pretty_generate(hash_value))
228
233
  else
229
- ERB::Util.json_escape(something.to_json)
234
+ ERB::Util.json_escape(hash_or_string.to_json)
230
235
  end
231
236
  end
232
237
 
@@ -52,7 +52,7 @@ More Details:
52
52
  `https://github.com/shakacode/react_on_rails/blob/master/docs/basics/generator.md`
53
53
  ```
54
54
 
55
- Another good option is to create a simple test app per the [Tutorial](docs/tutorial.md).
55
+ Another good option is to create a simple test app per the [Tutorial](../tutorial.md).
56
56
 
57
57
  ### Understanding the Organization of the Generated Client Code
58
58
  The generated client code follows our organization scheme. Each unique set of functionality, is given its own folder inside of `client/app/bundles`. This encourages for modularity of *domains*.
@@ -1,3 +1,3 @@
1
1
  module ReactOnRails
2
- VERSION = "6.9.0".freeze
2
+ VERSION = "6.9.1".freeze
3
3
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-on-rails",
3
- "version": "6.9.0",
3
+ "version": "6.9.1",
4
4
  "description": "react-on-rails JavaScript for react_on_rails Ruby gem",
5
5
  "main": "node_package/lib/ReactOnRails.js",
6
6
  "directories": {
data/yarn.lock CHANGED
@@ -191,10 +191,6 @@ async@^2.1.2:
191
191
  dependencies:
192
192
  lodash "^4.14.0"
193
193
 
194
- async@~0.2.6:
195
- version "0.2.10"
196
- resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
197
-
198
194
  asynckit@^0.4.0:
199
195
  version "0.4.0"
200
196
  resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
@@ -228,15 +224,7 @@ babel-cli@^6.23.0:
228
224
  optionalDependencies:
229
225
  chokidar "^1.6.1"
230
226
 
231
- babel-code-frame@^6.16.0, babel-code-frame@^6.20.0:
232
- version "6.20.0"
233
- resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.20.0.tgz#b968f839090f9a8bc6d41938fb96cb84f7387b26"
234
- dependencies:
235
- chalk "^1.1.0"
236
- esutils "^2.0.2"
237
- js-tokens "^2.0.0"
238
-
239
- babel-code-frame@^6.22.0:
227
+ babel-code-frame@^6.16.0, babel-code-frame@^6.22.0:
240
228
  version "6.22.0"
241
229
  resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
242
230
  dependencies:
@@ -244,31 +232,7 @@ babel-code-frame@^6.22.0:
244
232
  esutils "^2.0.2"
245
233
  js-tokens "^3.0.0"
246
234
 
247
- babel-core@^6.0.14, babel-core@^6.18.0:
248
- version "6.21.0"
249
- resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.21.0.tgz#75525480c21c803f826ef3867d22c19f080a3724"
250
- dependencies:
251
- babel-code-frame "^6.20.0"
252
- babel-generator "^6.21.0"
253
- babel-helpers "^6.16.0"
254
- babel-messages "^6.8.0"
255
- babel-register "^6.18.0"
256
- babel-runtime "^6.20.0"
257
- babel-template "^6.16.0"
258
- babel-traverse "^6.21.0"
259
- babel-types "^6.21.0"
260
- babylon "^6.11.0"
261
- convert-source-map "^1.1.0"
262
- debug "^2.1.1"
263
- json5 "^0.5.0"
264
- lodash "^4.2.0"
265
- minimatch "^3.0.2"
266
- path-is-absolute "^1.0.0"
267
- private "^0.1.6"
268
- slash "^1.0.0"
269
- source-map "^0.5.0"
270
-
271
- babel-core@^6.23.0, babel-core@^6.23.1:
235
+ babel-core@^6.0.14, babel-core@^6.23.0, babel-core@^6.23.1:
272
236
  version "6.23.1"
273
237
  resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.23.1.tgz#c143cb621bb2f621710c220c5d579d15b8a442df"
274
238
  dependencies:
@@ -302,18 +266,6 @@ babel-eslint@^7.1.1:
302
266
  babylon "^6.13.0"
303
267
  lodash.pickby "^4.6.0"
304
268
 
305
- babel-generator@^6.21.0:
306
- version "6.21.0"
307
- resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.21.0.tgz#605f1269c489a1c75deeca7ea16d43d4656c8494"
308
- dependencies:
309
- babel-messages "^6.8.0"
310
- babel-runtime "^6.20.0"
311
- babel-types "^6.21.0"
312
- detect-indent "^4.0.0"
313
- jsesc "^1.3.0"
314
- lodash "^4.2.0"
315
- source-map "^0.5.0"
316
-
317
269
  babel-generator@^6.23.0:
318
270
  version "6.23.0"
319
271
  resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.23.0.tgz#6b8edab956ef3116f79d8c84c5a3c05f32a74bc5"
@@ -447,13 +399,6 @@ babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0:
447
399
  babel-traverse "^6.23.0"
448
400
  babel-types "^6.23.0"
449
401
 
450
- babel-helpers@^6.16.0:
451
- version "6.16.0"
452
- resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3"
453
- dependencies:
454
- babel-runtime "^6.0.0"
455
- babel-template "^6.16.0"
456
-
457
402
  babel-helpers@^6.23.0:
458
403
  version "6.23.0"
459
404
  resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992"
@@ -476,12 +421,6 @@ babel-messages@^6.23.0:
476
421
  dependencies:
477
422
  babel-runtime "^6.22.0"
478
423
 
479
- babel-messages@^6.8.0:
480
- version "6.8.0"
481
- resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9"
482
- dependencies:
483
- babel-runtime "^6.0.0"
484
-
485
424
  babel-plugin-check-es2015-constants@^6.22.0:
486
425
  version "6.22.0"
487
426
  resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
@@ -502,10 +441,6 @@ babel-plugin-syntax-async-generators@^6.5.0:
502
441
  version "6.13.0"
503
442
  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
504
443
 
505
- babel-plugin-syntax-class-constructor-call@^6.18.0:
506
- version "6.18.0"
507
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416"
508
-
509
444
  babel-plugin-syntax-class-properties@^6.8.0:
510
445
  version "6.13.0"
511
446
  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
@@ -514,10 +449,6 @@ babel-plugin-syntax-decorators@^6.13.0:
514
449
  version "6.13.0"
515
450
  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
516
451
 
517
- babel-plugin-syntax-do-expressions@^6.8.0:
518
- version "6.13.0"
519
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d"
520
-
521
452
  babel-plugin-syntax-dynamic-import@^6.18.0:
522
453
  version "6.18.0"
523
454
  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
@@ -526,18 +457,10 @@ babel-plugin-syntax-exponentiation-operator@^6.8.0:
526
457
  version "6.13.0"
527
458
  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
528
459
 
529
- babel-plugin-syntax-export-extensions@^6.8.0:
530
- version "6.13.0"
531
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721"
532
-
533
460
  babel-plugin-syntax-flow@^6.18.0:
534
461
  version "6.18.0"
535
462
  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
536
463
 
537
- babel-plugin-syntax-function-bind@^6.8.0:
538
- version "6.13.0"
539
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46"
540
-
541
464
  babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
542
465
  version "6.18.0"
543
466
  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
@@ -566,14 +489,6 @@ babel-plugin-transform-async-to-generator@^6.22.0:
566
489
  babel-plugin-syntax-async-functions "^6.8.0"
567
490
  babel-runtime "^6.22.0"
568
491
 
569
- babel-plugin-transform-class-constructor-call@^6.22.0:
570
- version "6.22.0"
571
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.22.0.tgz#11a4d2216abb5b0eef298b493748f4f2f4869120"
572
- dependencies:
573
- babel-plugin-syntax-class-constructor-call "^6.18.0"
574
- babel-runtime "^6.22.0"
575
- babel-template "^6.22.0"
576
-
577
492
  babel-plugin-transform-class-properties@^6.22.0:
578
493
  version "6.23.0"
579
494
  resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz#187b747ee404399013563c993db038f34754ac3b"
@@ -593,13 +508,6 @@ babel-plugin-transform-decorators@^6.22.0:
593
508
  babel-template "^6.22.0"
594
509
  babel-types "^6.22.0"
595
510
 
596
- babel-plugin-transform-do-expressions@^6.22.0:
597
- version "6.22.0"
598
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb"
599
- dependencies:
600
- babel-plugin-syntax-do-expressions "^6.8.0"
601
- babel-runtime "^6.22.0"
602
-
603
511
  babel-plugin-transform-es2015-arrow-functions@^6.22.0:
604
512
  version "6.22.0"
605
513
  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
@@ -776,13 +684,6 @@ babel-plugin-transform-exponentiation-operator@^6.22.0:
776
684
  babel-plugin-syntax-exponentiation-operator "^6.8.0"
777
685
  babel-runtime "^6.22.0"
778
686
 
779
- babel-plugin-transform-export-extensions@^6.22.0:
780
- version "6.22.0"
781
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653"
782
- dependencies:
783
- babel-plugin-syntax-export-extensions "^6.8.0"
784
- babel-runtime "^6.22.0"
785
-
786
687
  babel-plugin-transform-flow-strip-types@^6.22.0:
787
688
  version "6.22.0"
788
689
  resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
@@ -790,13 +691,6 @@ babel-plugin-transform-flow-strip-types@^6.22.0:
790
691
  babel-plugin-syntax-flow "^6.18.0"
791
692
  babel-runtime "^6.22.0"
792
693
 
793
- babel-plugin-transform-function-bind@^6.22.0:
794
- version "6.22.0"
795
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97"
796
- dependencies:
797
- babel-plugin-syntax-function-bind "^6.8.0"
798
- babel-runtime "^6.22.0"
799
-
800
694
  babel-plugin-transform-object-rest-spread@^6.22.0:
801
695
  version "6.23.0"
802
696
  resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921"
@@ -851,7 +745,7 @@ babel-plugin-transform-strict-mode@^6.22.0:
851
745
  babel-runtime "^6.22.0"
852
746
  babel-types "^6.22.0"
853
747
 
854
- babel-polyfill@^6.23.0:
748
+ babel-polyfill@^6.23.0, babel-polyfill@^6.3.14:
855
749
  version "6.23.0"
856
750
  resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d"
857
751
  dependencies:
@@ -859,14 +753,6 @@ babel-polyfill@^6.23.0:
859
753
  core-js "^2.4.0"
860
754
  regenerator-runtime "^0.10.0"
861
755
 
862
- babel-polyfill@^6.3.14:
863
- version "6.16.0"
864
- resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.16.0.tgz#2d45021df87e26a374b6d4d1a9c65964d17f2422"
865
- dependencies:
866
- babel-runtime "^6.9.1"
867
- core-js "^2.4.0"
868
- regenerator-runtime "^0.9.5"
869
-
870
756
  babel-preset-es2015@^6.22.0:
871
757
  version "6.22.0"
872
758
  resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835"
@@ -913,22 +799,6 @@ babel-preset-react@^6.23.0:
913
799
  babel-plugin-transform-react-jsx-source "^6.22.0"
914
800
  babel-preset-flow "^6.23.0"
915
801
 
916
- babel-preset-stage-0@^6.22.0:
917
- version "6.22.0"
918
- resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.22.0.tgz#707eeb5b415da769eff9c42f4547f644f9296ef9"
919
- dependencies:
920
- babel-plugin-transform-do-expressions "^6.22.0"
921
- babel-plugin-transform-function-bind "^6.22.0"
922
- babel-preset-stage-1 "^6.22.0"
923
-
924
- babel-preset-stage-1@^6.22.0:
925
- version "6.22.0"
926
- resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.22.0.tgz#7da05bffea6ad5a10aef93e320cfc6dd465dbc1a"
927
- dependencies:
928
- babel-plugin-transform-class-constructor-call "^6.22.0"
929
- babel-plugin-transform-export-extensions "^6.22.0"
930
- babel-preset-stage-2 "^6.22.0"
931
-
932
802
  babel-preset-stage-2@^6.22.0:
933
803
  version "6.22.0"
934
804
  resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07"
@@ -948,19 +818,7 @@ babel-preset-stage-3@^6.22.0:
948
818
  babel-plugin-transform-exponentiation-operator "^6.22.0"
949
819
  babel-plugin-transform-object-rest-spread "^6.22.0"
950
820
 
951
- babel-register@^6.18.0, babel-register@^6.3.13:
952
- version "6.18.0"
953
- resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68"
954
- dependencies:
955
- babel-core "^6.18.0"
956
- babel-runtime "^6.11.6"
957
- core-js "^2.4.0"
958
- home-or-tmp "^2.0.0"
959
- lodash "^4.2.0"
960
- mkdirp "^0.5.1"
961
- source-map-support "^0.4.2"
962
-
963
- babel-register@^6.23.0:
821
+ babel-register@^6.23.0, babel-register@^6.3.13:
964
822
  version "6.23.0"
965
823
  resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.23.0.tgz#c9aa3d4cca94b51da34826c4a0f9e08145d74ff3"
966
824
  dependencies:
@@ -972,13 +830,6 @@ babel-register@^6.23.0:
972
830
  mkdirp "^0.5.1"
973
831
  source-map-support "^0.4.2"
974
832
 
975
- babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.20.0, babel-runtime@^6.9.0, babel-runtime@^6.9.1:
976
- version "6.20.0"
977
- resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f"
978
- dependencies:
979
- core-js "^2.4.0"
980
- regenerator-runtime "^0.10.0"
981
-
982
833
  babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.23.0:
983
834
  version "6.23.0"
984
835
  resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b"
@@ -994,16 +845,6 @@ babel-tape-runner@^2.0.1:
994
845
  babel-register "^6.3.13"
995
846
  glob "^6.0.1"
996
847
 
997
- babel-template@^6.16.0:
998
- version "6.16.0"
999
- resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca"
1000
- dependencies:
1001
- babel-runtime "^6.9.0"
1002
- babel-traverse "^6.16.0"
1003
- babel-types "^6.16.0"
1004
- babylon "^6.11.0"
1005
- lodash "^4.2.0"
1006
-
1007
848
  babel-template@^6.22.0, babel-template@^6.23.0:
1008
849
  version "6.23.0"
1009
850
  resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638"
@@ -1014,21 +855,7 @@ babel-template@^6.22.0, babel-template@^6.23.0:
1014
855
  babylon "^6.11.0"
1015
856
  lodash "^4.2.0"
1016
857
 
1017
- babel-traverse@^6.15.0, babel-traverse@^6.16.0, babel-traverse@^6.21.0:
1018
- version "6.21.0"
1019
- resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.21.0.tgz#69c6365804f1a4f69eb1213f85b00a818b8c21ad"
1020
- dependencies:
1021
- babel-code-frame "^6.20.0"
1022
- babel-messages "^6.8.0"
1023
- babel-runtime "^6.20.0"
1024
- babel-types "^6.21.0"
1025
- babylon "^6.11.0"
1026
- debug "^2.2.0"
1027
- globals "^9.0.0"
1028
- invariant "^2.2.0"
1029
- lodash "^4.2.0"
1030
-
1031
- babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1:
858
+ babel-traverse@^6.15.0, babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1:
1032
859
  version "6.23.1"
1033
860
  resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48"
1034
861
  dependencies:
@@ -1051,15 +878,6 @@ babel-types@^6.15.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23
1051
878
  lodash "^4.2.0"
1052
879
  to-fast-properties "^1.0.1"
1053
880
 
1054
- babel-types@^6.16.0, babel-types@^6.21.0:
1055
- version "6.21.0"
1056
- resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.21.0.tgz#314b92168891ef6d3806b7f7a917fdf87c11a4b2"
1057
- dependencies:
1058
- babel-runtime "^6.20.0"
1059
- esutils "^2.0.2"
1060
- lodash "^4.2.0"
1061
- to-fast-properties "^1.0.1"
1062
-
1063
881
  babelify@^7.3.0:
1064
882
  version "7.3.0"
1065
883
  resolved "https://registry.yarnpkg.com/babelify/-/babelify-7.3.0.tgz#aa56aede7067fd7bd549666ee16dc285087e88e5"
@@ -1067,11 +885,11 @@ babelify@^7.3.0:
1067
885
  babel-core "^6.0.14"
1068
886
  object-assign "^4.0.0"
1069
887
 
1070
- babylon@^6.11.0, babylon@^6.13.0:
888
+ babylon@^6.11.0:
1071
889
  version "6.13.1"
1072
890
  resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.13.1.tgz#adca350e088f0467647157652bafead6ddb8dfdb"
1073
891
 
1074
- babylon@^6.15.0:
892
+ babylon@^6.13.0, babylon@^6.15.0:
1075
893
  version "6.16.1"
1076
894
  resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3"
1077
895
 
@@ -1599,16 +1417,7 @@ error-ex@^1.2.0:
1599
1417
  dependencies:
1600
1418
  is-arrayish "^0.2.1"
1601
1419
 
1602
- es-abstract@^1.5.0:
1603
- version "1.6.1"
1604
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.6.1.tgz#bb8a2064120abcf928a086ea3d9043114285ec99"
1605
- dependencies:
1606
- es-to-primitive "^1.1.1"
1607
- function-bind "^1.1.0"
1608
- is-callable "^1.1.3"
1609
- is-regex "^1.0.3"
1610
-
1611
- es-abstract@^1.7.0:
1420
+ es-abstract@^1.5.0, es-abstract@^1.7.0:
1612
1421
  version "1.7.0"
1613
1422
  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c"
1614
1423
  dependencies:
@@ -2668,7 +2477,7 @@ lodash.pickby@^4.6.0:
2668
2477
  version "4.6.0"
2669
2478
  resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff"
2670
2479
 
2671
- lodash@4.16.6, lodash@^4.14.0:
2480
+ lodash@4.16.6, lodash@^4.14.0, lodash@^4.3.0:
2672
2481
  version "4.16.6"
2673
2482
  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777"
2674
2483
 
@@ -2676,7 +2485,7 @@ lodash@^3.6.0:
2676
2485
  version "3.10.1"
2677
2486
  resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6"
2678
2487
 
2679
- lodash@^4.0.0, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1:
2488
+ lodash@^4.0.0, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.6.1:
2680
2489
  version "4.16.4"
2681
2490
  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.4.tgz#01ce306b9bad1319f2a5528674f88297aeb70127"
2682
2491
 
@@ -2843,10 +2652,6 @@ node-pre-gyp@^0.6.29:
2843
2652
  tar "~2.2.1"
2844
2653
  tar-pack "~3.3.0"
2845
2654
 
2846
- node-uuid@~1.4.7:
2847
- version "1.4.7"
2848
- resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f"
2849
-
2850
2655
  nopt@~3.0.6:
2851
2656
  version "3.0.6"
2852
2657
  resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
@@ -3290,10 +3095,6 @@ regenerator-runtime@^0.10.0:
3290
3095
  version "0.10.1"
3291
3096
  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb"
3292
3097
 
3293
- regenerator-runtime@^0.9.5:
3294
- version "0.9.5"
3295
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.5.tgz#403d6d40a4bdff9c330dd9392dcbb2d9a8bba1fc"
3296
-
3297
3098
  regenerator-transform@0.9.8:
3298
3099
  version "0.9.8"
3299
3100
  resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c"
@@ -3358,32 +3159,7 @@ repeating@^2.0.0:
3358
3159
  dependencies:
3359
3160
  is-finite "^1.0.0"
3360
3161
 
3361
- request@^2.75.0:
3362
- version "2.76.0"
3363
- resolved "https://registry.yarnpkg.com/request/-/request-2.76.0.tgz#be44505afef70360a0436955106be3945d95560e"
3364
- dependencies:
3365
- aws-sign2 "~0.6.0"
3366
- aws4 "^1.2.1"
3367
- caseless "~0.11.0"
3368
- combined-stream "~1.0.5"
3369
- extend "~3.0.0"
3370
- forever-agent "~0.6.1"
3371
- form-data "~2.1.1"
3372
- har-validator "~2.0.6"
3373
- hawk "~3.1.3"
3374
- http-signature "~1.1.0"
3375
- is-typedarray "~1.0.0"
3376
- isstream "~0.1.2"
3377
- json-stringify-safe "~5.0.1"
3378
- mime-types "~2.1.7"
3379
- node-uuid "~1.4.7"
3380
- oauth-sign "~0.8.1"
3381
- qs "~6.3.0"
3382
- stringstream "~0.0.4"
3383
- tough-cookie "~2.3.0"
3384
- tunnel-agent "~0.4.1"
3385
-
3386
- request@^2.79.0:
3162
+ request@^2.75.0, request@^2.79.0:
3387
3163
  version "2.79.0"
3388
3164
  resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de"
3389
3165
  dependencies:
@@ -3537,9 +3313,9 @@ sntp@1.x.x:
3537
3313
  dependencies:
3538
3314
  hoek "2.x.x"
3539
3315
 
3540
- source-list-map@~0.1.7:
3541
- version "0.1.7"
3542
- resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.7.tgz#d4b5ce2a46535c72c7e8527c71a77d250618172e"
3316
+ source-list-map@^1.1.1:
3317
+ version "1.1.1"
3318
+ resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-1.1.1.tgz#1a33ac210ca144d1e561f906ebccab5669ff4cb4"
3543
3319
 
3544
3320
  source-map-support@^0.4.2:
3545
3321
  version "0.4.5"
@@ -3856,14 +3632,14 @@ ua-parser-js@^0.7.9:
3856
3632
  version "0.7.10"
3857
3633
  resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.10.tgz#917559ddcce07cbc09ece7d80495e4c268f4ef9f"
3858
3634
 
3859
- uglify-js@^2.7.5:
3860
- version "2.8.3"
3861
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.3.tgz#1ed5037bc224904c43d36e7310177c02c4c76808"
3635
+ uglify-js@^2.8.5:
3636
+ version "2.8.18"
3637
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.18.tgz#925d14bae48ab62d1883b41afe6e2261662adb8e"
3862
3638
  dependencies:
3863
- async "~0.2.6"
3864
3639
  source-map "~0.5.1"
3865
- uglify-to-browserify "~1.0.0"
3866
3640
  yargs "~3.10.0"
3641
+ optionalDependencies:
3642
+ uglify-to-browserify "~1.0.0"
3867
3643
 
3868
3644
  uglify-to-browserify@~1.0.0:
3869
3645
  version "1.0.2"
@@ -3929,7 +3705,7 @@ vm-browserify@0.0.4:
3929
3705
  dependencies:
3930
3706
  indexof "0.0.1"
3931
3707
 
3932
- watchpack@^1.2.0:
3708
+ watchpack@^1.3.1:
3933
3709
  version "1.3.1"
3934
3710
  resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87"
3935
3711
  dependencies:
@@ -3945,16 +3721,16 @@ webidl-conversions@^4.0.0:
3945
3721
  version "4.0.1"
3946
3722
  resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0"
3947
3723
 
3948
- webpack-sources@^0.1.4:
3949
- version "0.1.4"
3950
- resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.4.tgz#ccc2c817e08e5fa393239412690bb481821393cd"
3724
+ webpack-sources@^0.2.3:
3725
+ version "0.2.3"
3726
+ resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.2.3.tgz#17c62bfaf13c707f9d02c479e0dcdde8380697fb"
3951
3727
  dependencies:
3952
- source-list-map "~0.1.7"
3728
+ source-list-map "^1.1.1"
3953
3729
  source-map "~0.5.3"
3954
3730
 
3955
- webpack@^2.2.1:
3956
- version "2.2.1"
3957
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.2.1.tgz#7bb1d72ae2087dd1a4af526afec15eed17dda475"
3731
+ webpack@^2.3.1:
3732
+ version "2.3.2"
3733
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.3.2.tgz#7d521e6f0777a3a58985c69425263fdfe977b458"
3958
3734
  dependencies:
3959
3735
  acorn "^4.0.4"
3960
3736
  acorn-dynamic-import "^2.0.0"
@@ -3972,9 +3748,9 @@ webpack@^2.2.1:
3972
3748
  source-map "^0.5.3"
3973
3749
  supports-color "^3.1.0"
3974
3750
  tapable "~0.2.5"
3975
- uglify-js "^2.7.5"
3976
- watchpack "^1.2.0"
3977
- webpack-sources "^0.1.4"
3751
+ uglify-js "^2.8.5"
3752
+ watchpack "^1.3.1"
3753
+ webpack-sources "^0.2.3"
3978
3754
  yargs "^6.0.0"
3979
3755
 
3980
3756
  whatwg-encoding@^1.0.1:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: react_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.9.0
4
+ version: 6.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Gordon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-03-30 00:00:00.000000000 Z
11
+ date: 2017-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool