react_on_rails 12.5.2 → 12.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +23 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.gitignore +0 -3
- data/.prettierignore +2 -0
- data/CHANGELOG.md +8 -1
- data/README.md +5 -4
- data/docs/guides/configuration.md +20 -5
- data/lib/react_on_rails/configuration.rb +4 -2
- data/lib/react_on_rails/helper.rb +1 -1
- data/lib/react_on_rails/react_component/render_options.rb +14 -0
- data/lib/react_on_rails/version.rb +1 -1
- data/package.json +1 -1
- data/rakelib/examples.rake +1 -1
- data/rakelib/release.rake +4 -0
- data/yarn.lock +117 -71
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5490e90d68dc9b21393bc6640239432d50872526c092fb88d47aa2c70625bf53
|
4
|
+
data.tar.gz: aa540a9735ca1f6e4ffc1609591ffd2882c73102775f335ee4465cecda4c113b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b1bb61ac6ce06aebb68769082403c20665ec89f27672e21a3a40d3f92fa11db7305b24470861f9028985e79c88fb43f4be76684f14eb02928e723030bf7ae23
|
7
|
+
data.tar.gz: 45e79902586891bab920ab9e0588bc970bd4f72fd502bad16db63d3194b3650e66119bd0b4dd8892fb3884a8dec9d9d055229954eae9081e6f4d9b20b0d5519d
|
@@ -0,0 +1,23 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to help us improve
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
A bug is a crash or incorrect behavior. If you have a debugging or troubleshooting question, please open [a discussion](https://github.com/shakacode/react_on_rails/discussions).
|
11
|
+
|
12
|
+
## Environment
|
13
|
+
|
14
|
+
1. Ruby version:
|
15
|
+
2. Rails version:
|
16
|
+
3. Webpacker version:
|
17
|
+
4. React on Rails version:
|
18
|
+
|
19
|
+
## Expected behavior
|
20
|
+
|
21
|
+
## Actual behavior
|
22
|
+
|
23
|
+
## Small, reproducible repo
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
name: Feature request
|
3
|
+
about: Suggest an idea for this project
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
**Is your feature request related to a problem? Please describe.**
|
11
|
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
12
|
+
|
13
|
+
**Describe the solution you'd like**
|
14
|
+
A clear and concise description of what you want to happen.
|
15
|
+
|
16
|
+
**Describe alternatives you've considered**
|
17
|
+
A clear and concise description of any alternative solutions or features you've considered.
|
18
|
+
|
19
|
+
**Additional context**
|
20
|
+
Add any other context or screenshots about the feature request here.
|
data/.gitignore
CHANGED
data/.prettierignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -16,6 +16,12 @@ Please follow the recommendations outlined at [keepachangelog.com](http://keepac
|
|
16
16
|
Changes since last non-beta release.
|
17
17
|
|
18
18
|
*Please add entries here for your pull requests that are not yet released.*
|
19
|
+
|
20
|
+
### [12.6.0] - 2022-01-22
|
21
|
+
|
22
|
+
### Added
|
23
|
+
- A `rendering_props_extension` configuration which takes a module with an `adjust_props_for_client_side_hydration` method, which is used to process props differently for server/client if `prerender` is set to `true`. [PR 1413](https://github.com/shakacode/react_on_rails/pull/1413) by [gscarv13](https://github.com/gscarv13) & [judahmeek](https://github.com/judahmeek).
|
24
|
+
|
19
25
|
### [12.5.2] - 2021-12-29
|
20
26
|
### Fixed
|
21
27
|
- Usage of config.build_production_command for custom command for production builds fixed. [PR 1415](https://github.com/shakacode/react_on_rails/pull/1415) by [judahmeek](https://github.com/judahmeek).
|
@@ -993,7 +999,8 @@ Best done with Object destructing:
|
|
993
999
|
##### Fixed
|
994
1000
|
- Fix several generator related issues.
|
995
1001
|
|
996
|
-
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/12.
|
1002
|
+
[Unreleased]: https://github.com/shakacode/react_on_rails/compare/12.6.0...master
|
1003
|
+
[12.6.0]: https://github.com/shakacode/react_on_rails/compare/12.5.2...12.6.0
|
997
1004
|
[12.5.2]: https://github.com/shakacode/react_on_rails/compare/12.5.1...12.5.2
|
998
1005
|
[12.5.1]: https://github.com/shakacode/react_on_rails/compare/12.5.0...12.5.1
|
999
1006
|
[12.5.0]: https://github.com/shakacode/react_on_rails/compare/12.4.0...12.5.0
|
data/README.md
CHANGED
@@ -12,6 +12,7 @@
|
|
12
12
|
[![License](https://img.shields.io/badge/license-mit-green.svg)](LICENSE.md) [![Build Status](https://travis-ci.org/shakacode/react_on_rails.svg?branch=master)](https://travis-ci.org/shakacode/react_on_rails) [![Gem Version](https://badge.fury.io/rb/react_on_rails.svg)](https://badge.fury.io/rb/react_on_rails) [![npm version](https://badge.fury.io/js/react-on-rails.svg)](https://badge.fury.io/js/react-on-rails) [![Code Climate](https://codeclimate.com/github/shakacode/react_on_rails/badges/gpa.svg)](https://codeclimate.com/github/shakacode/react_on_rails) [![Coverage Status](https://coveralls.io/repos/shakacode/react_on_rails/badge.svg?branch=master&service=github)](https://coveralls.io/github/shakacode/react_on_rails?branch=master) [![](https://ruby-gem-downloads-badge.herokuapp.com/react_on_rails?type=total)](https://rubygems.org/gems/react_on_rails)
|
13
13
|
|
14
14
|
# News
|
15
|
+
* ShakaCode now maintains the official successor to `rails/webpacker`, [`shakapacker`](https://github.com/shakacode/shakapacker).
|
15
16
|
* Project is updated to support Rails 7!
|
16
17
|
* **React and Webpack with Ruby on Rails**: The current version of https://github.com/rails/webpacker will soon ship. While it won't be the default for Rails 7, it is not "deprecated." The core webpack configuration has become slimmer, allowing easier extension. If you want to get started today, use the master branch of [shakacode/react_on_rails_tutorial_with_ssr_and_hmr_fast_refresh](https://github.com/shakacode/react_on_rails_tutorial_with_ssr_and_hmr_fast_refresh) with `gem "webpacker", "6.0.0.rc.6"` Any updates to get to v6 from this point forward should be simple.
|
17
18
|
|
@@ -29,9 +30,9 @@ This project is maintained by the software consulting firm [ShakaCode](https://w
|
|
29
30
|
Are you interested in optimizing your webpack setup for React on Rails including code
|
30
31
|
splitting with [react-router](https://github.com/ReactTraining/react-router#readme) and
|
31
32
|
[loadable-components](https://loadable-components.com/) with server-side rendering for SEO and hot-reloading for developers?
|
32
|
-
We did this for Popmenu, [lowering Heroku costs 20-25% while getting a 73% decrease in average response times](https://www.shakacode.com/recent-work/popmenu/).
|
33
|
+
We did this for Popmenu, [lowering Heroku costs 20-25% while getting a 73% decrease in average response times](https://www.shakacode.com/recent-work/popmenu/). Several years later, Popmenu is serving millions of SSR requests per day React on Rails.
|
33
34
|
|
34
|
-
For more information, feel free to contact Justin Gordon, [justin@shakacode.com](mailto:justin@shakacode.com), maintainer of React on Rails.
|
35
|
+
Check out [React on Rails Pro](https://www.shakacode.com/react-on-rails-pro/). For more information, feel free to contact Justin Gordon, [justin@shakacode.com](mailto:justin@shakacode.com), maintainer of React on Rails.
|
35
36
|
|
36
37
|
# Documentation
|
37
38
|
|
@@ -73,11 +74,11 @@ Ruby on Rails >=5, rails/webpacker >= 4.2, Ruby >= 2.7
|
|
73
74
|
|
74
75
|
* [Click to join **React + Rails Slack**](https://reactrails.slack.com/join/shared_invite/enQtNjY3NTczMjczNzYxLTlmYjdiZmY3MTVlMzU2YWE0OWM0MzNiZDI0MzdkZGFiZTFkYTFkOGVjODBmOWEyYWQ3MzA2NGE1YWJjNmVlMGE).
|
75
76
|
- [**Subscribe**](https://app.mailerlite.com/webforms/landing/l1d9x5) for announcements of new releases of React on Rails and of our latest [blog articles](https://blog.shakacode.com) and tutorials.
|
76
|
-
-
|
77
|
+
- [Discussions](https://github.com/shakacode/react_on_rails/discussions): Post your questions regarding React on Rails
|
78
|
+
- **[forum.shakacode.com](https://forum.shakacode.com)**: Other discussions
|
77
79
|
- **[@railsonmaui on Twitter](https://twitter.com/railsonmaui)**
|
78
80
|
- *See [NEWS.md](https://github.com/shakacode/react_on_rails/tree/master/NEWS.md) for more notes over time.*
|
79
81
|
- See [Projects](https://github.com/shakacode/react_on_rails/tree/master/PROJECTS.md) using and [KUDOS](https://github.com/shakacode/react_on_rails/tree/master/KUDOS.md) for React on Rails. Please submit yours! Please edit either page or [email us](mailto:contact@shakacode.com) and we'll add your info. We also **love stars** as it helps us attract new users and contributors.
|
80
|
-
- *See [NEWS.md](https://github.com/shakacode/react_on_rails/tree/master/NEWS.md) for more notes over time.*
|
81
82
|
|
82
83
|
## Contributing
|
83
84
|
|
@@ -68,7 +68,7 @@ ReactOnRails.configure do |config|
|
|
68
68
|
|
69
69
|
# If you're using the standard rails/webpacker configuration of webpack, then rails/webpacker
|
70
70
|
# will automatically modify or create an assets:precompile task to build your assets. If so,
|
71
|
-
# set this value to nil. Alternatively, you can specify `config.build_production_command`
|
71
|
+
# set this value to nil. Alternatively, you can specify `config.build_production_command`
|
72
72
|
# to have react_on_rails invoke a command for you during assets:precompile.
|
73
73
|
# The command is either a script or a module containing a class method `call`
|
74
74
|
# In this example, the module BuildProductionCommand would have a class method `call`.
|
@@ -129,6 +129,11 @@ ReactOnRails.configure do |config|
|
|
129
129
|
# any server rendering issues immediately during development.
|
130
130
|
config.raise_on_prerender_error = Rails.env.development?
|
131
131
|
|
132
|
+
# This configuration allows logic to be applied to client rendered props, such as stripping props that are only used during server rendering.
|
133
|
+
# Add a module with an adjust_props_for_client_side_hydration method that expects the component's name & props hash
|
134
|
+
# See below for an example definition of RenderingPropsExtension
|
135
|
+
config.rendering_props_extension = RenderingPropsExtension
|
136
|
+
|
132
137
|
################################################################################
|
133
138
|
# Server Renderer Configuration for ExecJS
|
134
139
|
################################################################################
|
@@ -176,9 +181,8 @@ ReactOnRails.configure do |config|
|
|
176
181
|
|
177
182
|
# You can optionally add values to your rails_context. This object is passed
|
178
183
|
# every time a component renders.
|
179
|
-
# See
|
180
|
-
|
181
|
-
# config.rendering_extension = RenderingExtension
|
184
|
+
# See below for an example definition of RenderingExtension
|
185
|
+
config.rendering_extension = RenderingExtension
|
182
186
|
|
183
187
|
################################################################################
|
184
188
|
################################################################################
|
@@ -216,12 +220,23 @@ ReactOnRails.configure do |config|
|
|
216
220
|
end
|
217
221
|
```
|
218
222
|
|
223
|
+
Example of a ReactOnRailsConfig module for `client_props_extension`:
|
224
|
+
|
225
|
+
```ruby
|
226
|
+
module RenderingPropsExtension
|
227
|
+
# The modify_props method will be called by ReactOnRails::ReactComponent::RenderOptions if config.client_props_extension is defined
|
228
|
+
def self.adjust_props_for_client_side_hydration(component_name, props)
|
229
|
+
component_name == 'HelloWorld' ? props.except(:server_side_only) : props
|
230
|
+
end
|
231
|
+
end
|
232
|
+
```
|
233
|
+
|
219
234
|
Example of a ReactOnRailsConfig module for `production_build_command`:
|
220
235
|
|
221
236
|
```ruby
|
222
237
|
module BuildProductionCommand
|
223
238
|
include FileUtils
|
224
|
-
#
|
239
|
+
# The call method will be called during assets:precompile
|
225
240
|
def self.call
|
226
241
|
sh "bin/webpack"
|
227
242
|
end
|
@@ -32,6 +32,7 @@ module ReactOnRails
|
|
32
32
|
# skip_display_none is deprecated
|
33
33
|
webpack_generated_files: %w[manifest.json],
|
34
34
|
rendering_extension: nil,
|
35
|
+
rendering_props_extension: nil,
|
35
36
|
server_render_method: nil,
|
36
37
|
build_test_command: "",
|
37
38
|
build_production_command: "",
|
@@ -51,7 +52,7 @@ module ReactOnRails
|
|
51
52
|
:build_production_command,
|
52
53
|
:i18n_dir, :i18n_yml_dir, :i18n_output_format,
|
53
54
|
:server_render_method, :random_dom_id,
|
54
|
-
:same_bundle_for_client_and_server
|
55
|
+
:same_bundle_for_client_and_server, :rendering_props_extension
|
55
56
|
|
56
57
|
# rubocop:disable Metrics/AbcSize
|
57
58
|
def initialize(node_modules_location: nil, server_bundle_js_file: nil, prerender: nil,
|
@@ -65,7 +66,7 @@ module ReactOnRails
|
|
65
66
|
build_production_command: nil,
|
66
67
|
same_bundle_for_client_and_server: nil,
|
67
68
|
i18n_dir: nil, i18n_yml_dir: nil, i18n_output_format: nil,
|
68
|
-
random_dom_id: nil, server_render_method: nil)
|
69
|
+
random_dom_id: nil, server_render_method: nil, rendering_props_extension: nil)
|
69
70
|
self.node_modules_location = node_modules_location.present? ? node_modules_location : Rails.root
|
70
71
|
self.generated_assets_dirs = generated_assets_dirs
|
71
72
|
self.generated_assets_dir = generated_assets_dir
|
@@ -87,6 +88,7 @@ module ReactOnRails
|
|
87
88
|
self.trace = trace.nil? ? Rails.env.development? : trace
|
88
89
|
self.raise_on_prerender_error = raise_on_prerender_error
|
89
90
|
self.skip_display_none = skip_display_none
|
91
|
+
self.rendering_props_extension = rendering_props_extension
|
90
92
|
|
91
93
|
# Server rendering:
|
92
94
|
self.server_bundle_js_file = server_bundle_js_file
|
@@ -413,7 +413,7 @@ module ReactOnRails
|
|
413
413
|
# Setup the page_loaded_js, which is the same regardless of prerendering or not!
|
414
414
|
# The reason is that React is smart about not doing extra work if the server rendering did its job.
|
415
415
|
component_specification_tag = content_tag(:script,
|
416
|
-
json_safe_and_pretty(render_options.
|
416
|
+
json_safe_and_pretty(render_options.client_props).html_safe,
|
417
417
|
type: "application/json",
|
418
418
|
class: "js-react-on-rails-component",
|
419
419
|
"data-component-name" => render_options.react_component_name,
|
@@ -27,6 +27,20 @@ module ReactOnRails
|
|
27
27
|
options.fetch(:props) { NO_PROPS }
|
28
28
|
end
|
29
29
|
|
30
|
+
def client_props
|
31
|
+
props_extension = ReactOnRails.configuration.rendering_props_extension
|
32
|
+
if props_extension.present?
|
33
|
+
if props_extension.respond_to?(:adjust_props_for_client_side_hydration)
|
34
|
+
return props_extension.adjust_props_for_client_side_hydration(react_component_name,
|
35
|
+
props.clone)
|
36
|
+
end
|
37
|
+
|
38
|
+
raise ReactOnRails::Error, "ReactOnRails: your rendering_props_extension module is missing the "\
|
39
|
+
"required adjust_props_for_client_side_hydration method & can not be used"
|
40
|
+
end
|
41
|
+
props
|
42
|
+
end
|
43
|
+
|
30
44
|
def random_dom_id
|
31
45
|
retrieve_configuration_value_for(:random_dom_id)
|
32
46
|
end
|
data/package.json
CHANGED
data/rakelib/examples.rake
CHANGED
@@ -16,7 +16,7 @@ namespace :examples do # rubocop:disable Metrics/BlockLength
|
|
16
16
|
# Loads data from examples_config.yml and instantiates corresponding ExampleType objects
|
17
17
|
examples_config_file = File.expand_path("examples_config.yml", __dir__)
|
18
18
|
examples_config = symbolize_keys(YAML.safe_load(File.read(examples_config_file)))
|
19
|
-
examples_config[:example_type_data].each { |example_type_data| ExampleType.new(symbolize_keys(example_type_data)) }
|
19
|
+
examples_config[:example_type_data].each { |example_type_data| ExampleType.new(**symbolize_keys(example_type_data)) }
|
20
20
|
|
21
21
|
# Define tasks for each example type
|
22
22
|
ExampleType.all.each do |example_type|
|
data/rakelib/release.rake
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "bundler"
|
3
4
|
require_relative "task_helpers"
|
4
5
|
require_relative File.join(gem_root, "lib", "react_on_rails", "version_syntax_converter")
|
5
6
|
require_relative File.join(gem_root, "lib", "react_on_rails", "git_utils")
|
@@ -59,6 +60,7 @@ task :release, %i[gem_version dry_run tools_install] do |_t, args|
|
|
59
60
|
# Update dummy app's Gemfile.lock
|
60
61
|
bundle_install_in(dummy_app_dir)
|
61
62
|
|
63
|
+
puts "Carefully add your OTP for NPM. If you get an error, 'git reset --hard' and start over."
|
62
64
|
# Will bump the yarn version, commit, tag the commit, push to repo, and release on yarn
|
63
65
|
release_it_command = +"release-it"
|
64
66
|
release_it_command << " #{npm_version}" unless npm_version.strip.empty?
|
@@ -67,6 +69,8 @@ task :release, %i[gem_version dry_run tools_install] do |_t, args|
|
|
67
69
|
sh_in_dir(gem_root, release_it_command)
|
68
70
|
|
69
71
|
# Release the new gem version
|
72
|
+
|
73
|
+
puts "Carefully add your OTP for Rubygems. If you get an error, run 'gem release' again."
|
70
74
|
sh_in_dir(gem_root, "gem release") unless is_dry_run
|
71
75
|
|
72
76
|
msg = <<~MSG
|
data/yarn.lock
CHANGED
@@ -27,11 +27,11 @@
|
|
27
27
|
"@babel/highlight" "^7.10.4"
|
28
28
|
|
29
29
|
"@babel/code-frame@^7.0.0":
|
30
|
-
version "7.
|
31
|
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.
|
32
|
-
integrity sha512-
|
30
|
+
version "7.16.0"
|
31
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz#0dfc80309beec8411e65e706461c408b0bb9b431"
|
32
|
+
integrity sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==
|
33
33
|
dependencies:
|
34
|
-
"@babel/highlight" "^7.
|
34
|
+
"@babel/highlight" "^7.16.0"
|
35
35
|
|
36
36
|
"@babel/code-frame@^7.10.4":
|
37
37
|
version "7.10.4"
|
@@ -403,7 +403,12 @@
|
|
403
403
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
|
404
404
|
integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
|
405
405
|
|
406
|
-
"@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.
|
406
|
+
"@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.15.7":
|
407
|
+
version "7.15.7"
|
408
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389"
|
409
|
+
integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==
|
410
|
+
|
411
|
+
"@babel/helper-validator-identifier@^7.9.0":
|
407
412
|
version "7.12.11"
|
408
413
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed"
|
409
414
|
integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
|
@@ -450,7 +455,16 @@
|
|
450
455
|
chalk "^2.0.0"
|
451
456
|
js-tokens "^4.0.0"
|
452
457
|
|
453
|
-
"@babel/highlight@^7.
|
458
|
+
"@babel/highlight@^7.16.0":
|
459
|
+
version "7.16.0"
|
460
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz#6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a"
|
461
|
+
integrity sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==
|
462
|
+
dependencies:
|
463
|
+
"@babel/helper-validator-identifier" "^7.15.7"
|
464
|
+
chalk "^2.0.0"
|
465
|
+
js-tokens "^4.0.0"
|
466
|
+
|
467
|
+
"@babel/highlight@^7.8.3":
|
454
468
|
version "7.13.10"
|
455
469
|
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1"
|
456
470
|
integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==
|
@@ -1566,9 +1580,9 @@
|
|
1566
1580
|
pretty-format "^26.0.0"
|
1567
1581
|
|
1568
1582
|
"@types/json-schema@^7.0.3":
|
1569
|
-
version "7.0.
|
1570
|
-
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.
|
1571
|
-
integrity sha512-
|
1583
|
+
version "7.0.9"
|
1584
|
+
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d"
|
1585
|
+
integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==
|
1572
1586
|
|
1573
1587
|
"@types/json5@^0.0.29":
|
1574
1588
|
version "0.0.29"
|
@@ -1754,7 +1768,12 @@ acorn-jsx@^3.0.0:
|
|
1754
1768
|
dependencies:
|
1755
1769
|
acorn "^3.0.4"
|
1756
1770
|
|
1757
|
-
acorn-jsx@^5.0.0
|
1771
|
+
acorn-jsx@^5.0.0:
|
1772
|
+
version "5.3.2"
|
1773
|
+
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
|
1774
|
+
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
|
1775
|
+
|
1776
|
+
acorn-jsx@^5.3.1:
|
1758
1777
|
version "5.3.1"
|
1759
1778
|
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
|
1760
1779
|
integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==
|
@@ -2134,9 +2153,9 @@ babylon@^7.0.0-beta.40:
|
|
2134
2153
|
integrity sha512-+rq2cr4GDhtToEzKFD6KZZMDBXhjFAr9JjPw9pAppZACeEWqNM294j+NdBzkSHYXwzzBmVjZ3nEVJlOhbR2gOQ==
|
2135
2154
|
|
2136
2155
|
balanced-match@^1.0.0:
|
2137
|
-
version "1.0.
|
2138
|
-
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.
|
2139
|
-
integrity
|
2156
|
+
version "1.0.2"
|
2157
|
+
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
|
2158
|
+
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
|
2140
2159
|
|
2141
2160
|
base@^0.11.1:
|
2142
2161
|
version "0.11.2"
|
@@ -2488,9 +2507,9 @@ concat-map@0.0.1:
|
|
2488
2507
|
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
|
2489
2508
|
|
2490
2509
|
concurrently@^5.1.0:
|
2491
|
-
version "5.
|
2492
|
-
resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-5.
|
2493
|
-
integrity sha512-
|
2510
|
+
version "5.3.0"
|
2511
|
+
resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-5.3.0.tgz#7500de6410d043c912b2da27de3202cb489b1e7b"
|
2512
|
+
integrity sha512-8MhqOB6PWlBfA2vJ8a0bSFKATOdWlHiQlk11IfmQBPaHVP8oP2gsh2MObE6UR3hqDHqvaIvLTyceNW6obVuFHQ==
|
2494
2513
|
dependencies:
|
2495
2514
|
chalk "^2.4.2"
|
2496
2515
|
date-fns "^2.0.1"
|
@@ -2538,9 +2557,9 @@ core-js@^1.0.0:
|
|
2538
2557
|
integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=
|
2539
2558
|
|
2540
2559
|
core-js@^3.1.4:
|
2541
|
-
version "3.
|
2542
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.
|
2543
|
-
integrity sha512-
|
2560
|
+
version "3.19.1"
|
2561
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.19.1.tgz#f6f173cae23e73a7d88fa23b6e9da329276c6641"
|
2562
|
+
integrity sha512-Tnc7E9iKd/b/ff7GFbhwPVzJzPztGrChB8X8GLqoYGdEOG8IpLnK1xPyo3ZoO3HsK6TodJS58VGPOxA+hLHQMg==
|
2544
2563
|
|
2545
2564
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
2546
2565
|
version "1.0.2"
|
@@ -2629,9 +2648,9 @@ data-urls@^2.0.0:
|
|
2629
2648
|
whatwg-url "^8.0.0"
|
2630
2649
|
|
2631
2650
|
date-fns@^2.0.1:
|
2632
|
-
version "2.
|
2633
|
-
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.
|
2634
|
-
integrity sha512-
|
2651
|
+
version "2.25.0"
|
2652
|
+
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.25.0.tgz#8c5c8f1d958be3809a9a03f4b742eba894fc5680"
|
2653
|
+
integrity sha512-ovYRFnTrbGPD4nqaEqescPEv1mNwvt+UTqI3Ay9SzNtey9NZnYu6E2qCcBBgJ6/2VF1zGGygpyTDITqpQQ5e+w==
|
2635
2654
|
|
2636
2655
|
debug@^2.2.0, debug@^2.3.3, debug@^2.6.9:
|
2637
2656
|
version "2.6.9"
|
@@ -2647,10 +2666,10 @@ debug@^3.1.0:
|
|
2647
2666
|
dependencies:
|
2648
2667
|
ms "^2.1.1"
|
2649
2668
|
|
2650
|
-
debug@^4.0.1
|
2651
|
-
version "4.3.
|
2652
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.
|
2653
|
-
integrity sha512-
|
2669
|
+
debug@^4.0.1:
|
2670
|
+
version "4.3.2"
|
2671
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
|
2672
|
+
integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
|
2654
2673
|
dependencies:
|
2655
2674
|
ms "2.1.2"
|
2656
2675
|
|
@@ -2661,6 +2680,13 @@ debug@^4.1.0:
|
|
2661
2680
|
dependencies:
|
2662
2681
|
ms "^2.1.1"
|
2663
2682
|
|
2683
|
+
debug@^4.1.1:
|
2684
|
+
version "4.3.1"
|
2685
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
|
2686
|
+
integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
|
2687
|
+
dependencies:
|
2688
|
+
ms "2.1.2"
|
2689
|
+
|
2664
2690
|
decamelize@^1.2.0:
|
2665
2691
|
version "1.2.0"
|
2666
2692
|
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
@@ -2688,11 +2714,16 @@ deep-equal@~1.1.1:
|
|
2688
2714
|
object-keys "^1.1.1"
|
2689
2715
|
regexp.prototype.flags "^1.2.0"
|
2690
2716
|
|
2691
|
-
deep-is@^0.1.3
|
2717
|
+
deep-is@^0.1.3:
|
2692
2718
|
version "0.1.3"
|
2693
2719
|
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
2694
2720
|
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
|
2695
2721
|
|
2722
|
+
deep-is@~0.1.3:
|
2723
|
+
version "0.1.4"
|
2724
|
+
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
|
2725
|
+
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
|
2726
|
+
|
2696
2727
|
deepmerge@^4.2.2:
|
2697
2728
|
version "4.2.2"
|
2698
2729
|
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
|
@@ -3232,9 +3263,9 @@ estraverse@^4.1.1, estraverse@^4.2.0:
|
|
3232
3263
|
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
|
3233
3264
|
|
3234
3265
|
estraverse@^5.1.0, estraverse@^5.2.0:
|
3235
|
-
version "5.
|
3236
|
-
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.
|
3237
|
-
integrity sha512-
|
3266
|
+
version "5.3.0"
|
3267
|
+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
|
3268
|
+
integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
|
3238
3269
|
|
3239
3270
|
esutils@^2.0.2:
|
3240
3271
|
version "2.0.3"
|
@@ -3656,7 +3687,7 @@ glob-parent@^5.1.0, glob-parent@~5.1.0:
|
|
3656
3687
|
dependencies:
|
3657
3688
|
is-glob "^4.0.1"
|
3658
3689
|
|
3659
|
-
glob@^7.0.0, glob@^7.1.1, glob
|
3690
|
+
glob@^7.0.0, glob@^7.1.1, glob@~7.1.6:
|
3660
3691
|
version "7.1.6"
|
3661
3692
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
|
3662
3693
|
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
|
@@ -3668,6 +3699,18 @@ glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.1.6:
|
|
3668
3699
|
once "^1.3.0"
|
3669
3700
|
path-is-absolute "^1.0.0"
|
3670
3701
|
|
3702
|
+
glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
|
3703
|
+
version "7.2.0"
|
3704
|
+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
|
3705
|
+
integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
|
3706
|
+
dependencies:
|
3707
|
+
fs.realpath "^1.0.0"
|
3708
|
+
inflight "^1.0.4"
|
3709
|
+
inherits "2"
|
3710
|
+
minimatch "^3.0.4"
|
3711
|
+
once "^1.3.0"
|
3712
|
+
path-is-absolute "^1.0.0"
|
3713
|
+
|
3671
3714
|
global@^4.3.0:
|
3672
3715
|
version "4.4.0"
|
3673
3716
|
resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406"
|
@@ -3801,9 +3844,9 @@ has@^1.0.3, has@~1.0.3:
|
|
3801
3844
|
function-bind "^1.1.1"
|
3802
3845
|
|
3803
3846
|
hosted-git-info@^2.1.4:
|
3804
|
-
version "2.8.
|
3805
|
-
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.
|
3806
|
-
integrity sha512-
|
3847
|
+
version "2.8.9"
|
3848
|
+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
|
3849
|
+
integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
|
3807
3850
|
|
3808
3851
|
html-encoding-sniffer@^2.0.1:
|
3809
3852
|
version "2.0.1"
|
@@ -3843,7 +3886,12 @@ ignore@^4.0.6:
|
|
3843
3886
|
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
|
3844
3887
|
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
|
3845
3888
|
|
3846
|
-
ignore@^5.1.2
|
3889
|
+
ignore@^5.1.2:
|
3890
|
+
version "5.1.9"
|
3891
|
+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.9.tgz#9ec1a5cbe8e1446ec60d4420060d43aa6e7382fb"
|
3892
|
+
integrity sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==
|
3893
|
+
|
3894
|
+
ignore@^5.1.4:
|
3847
3895
|
version "5.1.8"
|
3848
3896
|
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
|
3849
3897
|
integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
|
@@ -4891,12 +4939,12 @@ lodash.unescape@4.0.1:
|
|
4891
4939
|
resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c"
|
4892
4940
|
integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw=
|
4893
4941
|
|
4894
|
-
lodash@4.x, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4:
|
4942
|
+
lodash@4.x, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4:
|
4895
4943
|
version "4.17.21"
|
4896
4944
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
4897
4945
|
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
|
4898
4946
|
|
4899
|
-
lodash@^4.17.13, lodash@^4.
|
4947
|
+
lodash@^4.17.13, lodash@^4.6.1:
|
4900
4948
|
version "4.17.15"
|
4901
4949
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
|
4902
4950
|
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
|
@@ -4973,9 +5021,9 @@ map-cache@^0.2.2:
|
|
4973
5021
|
integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
|
4974
5022
|
|
4975
5023
|
map-obj@^4.0.0:
|
4976
|
-
version "4.
|
4977
|
-
resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.
|
4978
|
-
integrity sha512-
|
5024
|
+
version "4.3.0"
|
5025
|
+
resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
|
5026
|
+
integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
|
4979
5027
|
|
4980
5028
|
map-stream@~0.1.0:
|
4981
5029
|
version "0.1.0"
|
@@ -5523,9 +5571,9 @@ path-key@^3.0.0, path-key@^3.1.0:
|
|
5523
5571
|
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
|
5524
5572
|
|
5525
5573
|
path-parse@^1.0.6:
|
5526
|
-
version "1.0.
|
5527
|
-
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.
|
5528
|
-
integrity sha512-
|
5574
|
+
version "1.0.7"
|
5575
|
+
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
|
5576
|
+
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
|
5529
5577
|
|
5530
5578
|
path-type@^2.0.0:
|
5531
5579
|
version "2.0.0"
|
@@ -5670,9 +5718,9 @@ prettier@^1.7.0:
|
|
5670
5718
|
integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
|
5671
5719
|
|
5672
5720
|
prettier@^2.2.1:
|
5673
|
-
version "2.
|
5674
|
-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.
|
5675
|
-
integrity sha512-
|
5721
|
+
version "2.4.1"
|
5722
|
+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.4.1.tgz#671e11c89c14a4cfc876ce564106c4a6726c9f5c"
|
5723
|
+
integrity sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==
|
5676
5724
|
|
5677
5725
|
pretty-format@^23.0.1:
|
5678
5726
|
version "23.6.0"
|
@@ -6102,11 +6150,12 @@ resolve-url@^0.2.1:
|
|
6102
6150
|
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
6103
6151
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
6104
6152
|
|
6105
|
-
resolve@^1.10.0:
|
6106
|
-
version "1.
|
6107
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.
|
6108
|
-
integrity sha512-
|
6153
|
+
resolve@^1.10.0, resolve@^1.18.1:
|
6154
|
+
version "1.20.0"
|
6155
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
|
6156
|
+
integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
|
6109
6157
|
dependencies:
|
6158
|
+
is-core-module "^2.2.0"
|
6110
6159
|
path-parse "^1.0.6"
|
6111
6160
|
|
6112
6161
|
resolve@^1.13.1, resolve@^1.3.2, resolve@~1.15.1:
|
@@ -6124,14 +6173,6 @@ resolve@^1.17.0:
|
|
6124
6173
|
is-core-module "^2.1.0"
|
6125
6174
|
path-parse "^1.0.6"
|
6126
6175
|
|
6127
|
-
resolve@^1.18.1:
|
6128
|
-
version "1.20.0"
|
6129
|
-
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
|
6130
|
-
integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
|
6131
|
-
dependencies:
|
6132
|
-
is-core-module "^2.2.0"
|
6133
|
-
path-parse "^1.0.6"
|
6134
|
-
|
6135
6176
|
resolve@^2.0.0-next.3:
|
6136
6177
|
version "2.0.0-next.3"
|
6137
6178
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
|
@@ -6195,9 +6236,9 @@ run-parallel@^1.1.9:
|
|
6195
6236
|
integrity sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==
|
6196
6237
|
|
6197
6238
|
rxjs@^6.4.0, rxjs@^6.5.2:
|
6198
|
-
version "6.6.
|
6199
|
-
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.
|
6200
|
-
integrity sha512
|
6239
|
+
version "6.6.7"
|
6240
|
+
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
|
6241
|
+
integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
|
6201
6242
|
dependencies:
|
6202
6243
|
tslib "^1.9.0"
|
6203
6244
|
|
@@ -6350,11 +6391,16 @@ side-channel@^1.0.4:
|
|
6350
6391
|
get-intrinsic "^1.0.2"
|
6351
6392
|
object-inspect "^1.9.0"
|
6352
6393
|
|
6353
|
-
signal-exit@^3.0.0
|
6394
|
+
signal-exit@^3.0.0:
|
6354
6395
|
version "3.0.3"
|
6355
6396
|
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
|
6356
6397
|
integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
|
6357
6398
|
|
6399
|
+
signal-exit@^3.0.2:
|
6400
|
+
version "3.0.5"
|
6401
|
+
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f"
|
6402
|
+
integrity sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==
|
6403
|
+
|
6358
6404
|
sisteransi@^1.0.4:
|
6359
6405
|
version "1.0.5"
|
6360
6406
|
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
|
@@ -6492,9 +6538,9 @@ spdx-expression-parse@^3.0.0:
|
|
6492
6538
|
spdx-license-ids "^3.0.0"
|
6493
6539
|
|
6494
6540
|
spdx-license-ids@^3.0.0:
|
6495
|
-
version "3.0.
|
6496
|
-
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.
|
6497
|
-
integrity sha512-
|
6541
|
+
version "3.0.10"
|
6542
|
+
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz#0d9becccde7003d6c658d487dd48a32f0bf3014b"
|
6543
|
+
integrity sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==
|
6498
6544
|
|
6499
6545
|
split-string@^3.0.1, split-string@^3.0.2:
|
6500
6546
|
version "3.1.0"
|
@@ -7003,9 +7049,9 @@ typedarray-to-buffer@^3.1.5:
|
|
7003
7049
|
is-typedarray "^1.0.0"
|
7004
7050
|
|
7005
7051
|
typescript@^3.2.1:
|
7006
|
-
version "3.9.
|
7007
|
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.
|
7008
|
-
integrity sha512-
|
7052
|
+
version "3.9.10"
|
7053
|
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8"
|
7054
|
+
integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==
|
7009
7055
|
|
7010
7056
|
typescript@^4.1.2:
|
7011
7057
|
version "4.2.3"
|
@@ -7296,9 +7342,9 @@ xmlchars@^2.2.0:
|
|
7296
7342
|
integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
|
7297
7343
|
|
7298
7344
|
y18n@^4.0.0:
|
7299
|
-
version "4.0.
|
7300
|
-
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.
|
7301
|
-
integrity sha512-
|
7345
|
+
version "4.0.3"
|
7346
|
+
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
|
7347
|
+
integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
|
7302
7348
|
|
7303
7349
|
yallist@^4.0.0:
|
7304
7350
|
version "4.0.0"
|
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: 12.
|
4
|
+
version: 12.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Gordon
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -136,6 +136,8 @@ files:
|
|
136
136
|
- ".eslintignore"
|
137
137
|
- ".eslintrc"
|
138
138
|
- ".github/FUNDING.yml"
|
139
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
140
|
+
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
139
141
|
- ".github/workflows/lint-js-and-ruby.yml"
|
140
142
|
- ".github/workflows/main.yml"
|
141
143
|
- ".github/workflows/package-js-tests.yml"
|
@@ -348,7 +350,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
348
350
|
- !ruby/object:Gem::Version
|
349
351
|
version: '0'
|
350
352
|
requirements: []
|
351
|
-
rubygems_version: 3.
|
353
|
+
rubygems_version: 3.2.32
|
352
354
|
signing_key:
|
353
355
|
specification_version: 4
|
354
356
|
summary: Rails with react server rendering with webpack.
|