react_on_rails 12.4.0 → 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/.circleci/config.yml +2 -1
- data/.github/ISSUE_TEMPLATE/bug_report.md +23 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.github/workflows/main.yml +3 -3
- data/.gitignore +0 -3
- data/.prettierignore +2 -0
- data/CHANGELOG.md +32 -2
- data/Gemfile.development_dependencies +7 -6
- data/REACT-ON-RAILS-PRO-LICENSE +1 -1
- data/README.md +22 -12
- data/SUMMARY.md +9 -0
- data/docs/deployment/heroku-deployment.md +16 -5
- data/docs/guides/configuration.md +26 -12
- data/docs/guides/how-react-on-rails-works.md +0 -1
- data/docs/guides/tutorial.md +18 -14
- data/lib/generators/react_on_rails/base_generator.rb +46 -3
- data/lib/generators/react_on_rails/generator_helper.rb +4 -0
- data/lib/generators/react_on_rails/templates/.eslintrc +3 -1
- data/lib/generators/react_on_rails/templates/base/base/Procfile.dev +4 -8
- data/lib/generators/react_on_rails/templates/base/base/Procfile.dev-static +9 -0
- data/lib/generators/react_on_rails/templates/base/base/app/javascript/bundles/HelloWorld/components/HelloWorld.jsx +2 -1
- data/lib/generators/react_on_rails/templates/base/base/app/javascript/bundles/HelloWorld/components/HelloWorld.module.css +4 -0
- data/lib/generators/react_on_rails/templates/base/base/app/javascript/bundles/HelloWorld/components/HelloWorldServer.js +5 -0
- data/lib/generators/react_on_rails/templates/base/base/app/javascript/packs/server-bundle.js +8 -0
- data/lib/generators/react_on_rails/templates/base/base/app/views/layouts/hello_world.html.erb +1 -0
- data/lib/generators/react_on_rails/templates/base/base/babel.config.js.tt +15 -0
- data/lib/generators/react_on_rails/templates/base/base/config/initializers/react_on_rails.rb +1 -1
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/clientWebpackConfig.js.tt +17 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/commonWebpackConfig.js.tt +15 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/development.js.tt +27 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/production.js.tt +11 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/serverWebpackConfig.js.tt +117 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpack/webpackConfig.js.tt +36 -0
- data/lib/generators/react_on_rails/templates/base/base/config/webpacker.yml +62 -0
- data/lib/generators/react_on_rails/templates/redux/base/app/javascript/bundles/HelloWorld/components/HelloWorld.jsx +2 -1
- data/lib/react_on_rails/configuration.rb +70 -35
- 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/server_rendering_js_code.rb +13 -0
- data/lib/react_on_rails/server_rendering_pool/ruby_embedded_java_script.rb +3 -1
- data/lib/react_on_rails/version.rb +1 -1
- data/lib/tasks/assets.rake +5 -47
- data/lib/tasks/locale.rake +1 -2
- data/package.json +1 -1
- data/rakelib/example_type.rb +5 -1
- data/rakelib/examples.rake +8 -3
- data/rakelib/release.rake +7 -1
- data/rakelib/task_helpers.rb +7 -0
- data/react_on_rails.gemspec +3 -3
- data/yarn.lock +117 -71
- metadata +22 -9
- data/lib/generators/react_on_rails/templates/base/base/Procfile.dev-hmr +0 -26
data/lib/tasks/assets.rake
CHANGED
@@ -1,51 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Important: The default assets:precompile is modified ONLY if the rails/webpacker webpack config
|
4
|
-
# does not exist!
|
5
|
-
|
6
|
-
require "active_support"
|
7
|
-
|
8
|
-
ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
|
9
|
-
|
10
|
-
skip_react_on_rails_precompile = %w[no false n f].include?(ENV["REACT_ON_RAILS_PRECOMPILE"])
|
11
|
-
|
12
|
-
if !skip_react_on_rails_precompile && !ReactOnRails::WebpackerUtils.webpacker_webpack_production_config_exists?
|
13
|
-
# Ensure that rails/webpacker does not call bin/webpack if we're providing
|
14
|
-
# the build command.
|
15
|
-
ENV["WEBPACKER_PRECOMPILE"] = "false"
|
16
|
-
|
17
|
-
precompile_tasks = lambda {
|
18
|
-
Rake::Task["react_on_rails:assets:webpack"].invoke
|
19
|
-
puts "Invoking task webpacker:clean from React on Rails"
|
20
|
-
|
21
|
-
# VERSIONS is per the rails/webpacker clean method definition.
|
22
|
-
# We set it very big so that it is not used, and then clean just
|
23
|
-
# removes files older than 1 hour.
|
24
|
-
versions = 100_000
|
25
|
-
Rake::Task["webpacker:clean"].invoke(versions)
|
26
|
-
}
|
27
|
-
|
28
|
-
if Rake::Task.task_defined?("assets:precompile")
|
29
|
-
Rake::Task["assets:precompile"].enhance do
|
30
|
-
precompile_tasks.call
|
31
|
-
end
|
32
|
-
else
|
33
|
-
Rake::Task.define_task("assets:precompile") do
|
34
|
-
precompile_tasks.call
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
# Sprockets independent tasks
|
40
3
|
# rubocop:disable Metrics/BlockLength
|
41
4
|
namespace :react_on_rails do
|
42
5
|
namespace :assets do
|
43
|
-
desc
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
Note: This command is not automatically added to assets:precompile if the rails/webpacker
|
48
|
-
configuration file config/webpack/production.js exists.
|
6
|
+
desc <<~DESC
|
7
|
+
If config.build_production_command is defined, this command is automatically
|
8
|
+
added to task assets:precompile and the regular webpacker compile will not run.
|
9
|
+
The defined command is either a script or a module with a method `call`.
|
49
10
|
DESC
|
50
11
|
task webpack: :locale do
|
51
12
|
build_production_command = ReactOnRails.configuration.build_production_command
|
@@ -63,13 +24,10 @@ namespace :react_on_rails do
|
|
63
24
|
exit!(1)
|
64
25
|
end
|
65
26
|
else
|
27
|
+
# Left in this warning message in case this rake task is run directly
|
66
28
|
msg = <<~MSG
|
67
29
|
React on Rails is aborting webpack compilation from task react_on_rails:assets:webpack
|
68
30
|
because you do not have the `config.build_production_command` defined.
|
69
|
-
|
70
|
-
Note, this task may have run as part of `assets:precompile`. If file
|
71
|
-
config/webpack/production.js does not exist, React on Rails will modify
|
72
|
-
the default `asset:precompile` to run task `react_on_rails:assets:webpack`.
|
73
31
|
MSG
|
74
32
|
puts Rainbow(msg).red
|
75
33
|
exit!(1)
|
data/lib/tasks/locale.rake
CHANGED
@@ -3,10 +3,9 @@
|
|
3
3
|
require "react_on_rails/locales/base"
|
4
4
|
require "react_on_rails/locales/to_js"
|
5
5
|
require "react_on_rails/locales/to_json"
|
6
|
-
require "active_support"
|
7
6
|
|
8
7
|
namespace :react_on_rails do
|
9
|
-
desc
|
8
|
+
desc <<~DESC
|
10
9
|
Generate i18n javascript files
|
11
10
|
This task generates javascript locale files: `translations.js` & `default.js` and places them in
|
12
11
|
the "ReactOnRails.configuration.i18n_dir".
|
data/package.json
CHANGED
data/rakelib/example_type.rb
CHANGED
@@ -52,7 +52,11 @@ module ReactOnRails
|
|
52
52
|
attr_writer :rails_options
|
53
53
|
|
54
54
|
def rails_options
|
55
|
-
@rails_options ||=
|
55
|
+
@rails_options ||= if ReactOnRails::Utils.rails_version_less_than("7.0")
|
56
|
+
"--skip-bundle --skip-spring --skip-git --skip-test-unit --skip-active-record -J"
|
57
|
+
else
|
58
|
+
"--skip-bundle --skip-spring --skip-git --skip-test-unit --skip-active-record -j webpack"
|
59
|
+
end
|
56
60
|
end
|
57
61
|
|
58
62
|
%w[gen clobber npm_install build_webpack_bundles].each do |task_type|
|
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|
|
@@ -30,12 +30,17 @@ namespace :examples do # rubocop:disable Metrics/BlockLength
|
|
30
30
|
desc "Generates #{example_type.name_pretty}"
|
31
31
|
task example_type.gen_task_name_short => example_type.clobber_task_name do
|
32
32
|
mkdir_p(example_type.dir)
|
33
|
-
|
33
|
+
if Rails::VERSION::MAJOR < 6
|
34
|
+
example_type.rails_options += " --webpack"
|
35
|
+
elsif Rails::VERSION::MAJOR >= 7
|
36
|
+
example_type.rails_options += "--javascript=webpack"
|
37
|
+
end
|
34
38
|
sh_in_dir(examples_dir, "rails new #{example_type.name} #{example_type.rails_options}")
|
35
39
|
sh_in_dir(example_type.dir, "touch .gitignore")
|
40
|
+
copy_generator_webpacker_yml_to(example_type.dir)
|
41
|
+
sh_in_dir(example_type.dir, "bundle add webpacker --version 6.0.0.rc.6")
|
36
42
|
sh_in_dir(example_type.dir, "rake webpacker:install")
|
37
43
|
sh_in_dir(example_type.dir, "bundle binstubs --path=#{example_type.dir}/bin webpacker")
|
38
|
-
sh_in_dir(example_type.dir, "rake webpacker:install:react")
|
39
44
|
append_to_gemfile(example_type.gemfile, example_type.required_gems)
|
40
45
|
bundle_install_in(example_type.dir)
|
41
46
|
sh_in_dir(example_type.dir, example_type.generator_shell_commands)
|
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")
|
@@ -27,6 +28,8 @@ which are installed via `bundle install` and `yarn global add release-it`
|
|
27
28
|
automatically perform a patch version bump.
|
28
29
|
2nd argument: Perform a dry run by passing 'true' as a second argument.
|
29
30
|
|
31
|
+
Note, accept defaults for npmjs options. Script will pause to get 2FA tokens.
|
32
|
+
|
30
33
|
Example: `rake release[2.1.0,false]`")
|
31
34
|
task :release, %i[gem_version dry_run tools_install] do |_t, args|
|
32
35
|
include ReactOnRails::TaskHelpers
|
@@ -57,14 +60,17 @@ task :release, %i[gem_version dry_run tools_install] do |_t, args|
|
|
57
60
|
# Update dummy app's Gemfile.lock
|
58
61
|
bundle_install_in(dummy_app_dir)
|
59
62
|
|
63
|
+
puts "Carefully add your OTP for NPM. If you get an error, 'git reset --hard' and start over."
|
60
64
|
# Will bump the yarn version, commit, tag the commit, push to repo, and release on yarn
|
61
65
|
release_it_command = +"release-it"
|
62
66
|
release_it_command << " #{npm_version}" unless npm_version.strip.empty?
|
63
|
-
release_it_command << " --
|
67
|
+
release_it_command << " --npm.publish --no-git.requireCleanWorkingDir"
|
64
68
|
release_it_command << " --dry-run --verbose" if is_dry_run
|
65
69
|
sh_in_dir(gem_root, release_it_command)
|
66
70
|
|
67
71
|
# Release the new gem version
|
72
|
+
|
73
|
+
puts "Carefully add your OTP for Rubygems. If you get an error, run 'gem release' again."
|
68
74
|
sh_in_dir(gem_root, "gem release") unless is_dry_run
|
69
75
|
|
70
76
|
msg = <<~MSG
|
data/rakelib/task_helpers.rb
CHANGED
@@ -12,6 +12,13 @@ module ReactOnRails
|
|
12
12
|
File.join(gem_root, "gen-examples", "examples")
|
13
13
|
end
|
14
14
|
|
15
|
+
# This method is used to prevent an error that when installing webpacker 6.0.0.rc.6
|
16
|
+
# without a previous config/webpacker.yml will throw and error
|
17
|
+
def copy_generator_webpacker_yml_to(destination)
|
18
|
+
webpacker_file = File.join(gem_root, "lib/generators/react_on_rails/templates/base/base/config/webpacker.yml")
|
19
|
+
sh %( cp #{webpacker_file} #{destination}/config/webpacker.yml )
|
20
|
+
end
|
21
|
+
|
15
22
|
def dummy_app_dir
|
16
23
|
File.join(gem_root, "spec/dummy")
|
17
24
|
end
|
data/react_on_rails.gemspec
CHANGED
@@ -23,14 +23,14 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
24
|
s.require_paths = ["lib"]
|
25
25
|
|
26
|
-
s.required_ruby_version = ">= 2.
|
26
|
+
s.required_ruby_version = ">= 2.7.0"
|
27
27
|
|
28
28
|
s.add_dependency "addressable"
|
29
29
|
s.add_dependency "connection_pool"
|
30
30
|
s.add_dependency "execjs", "~> 2.5"
|
31
|
-
s.add_dependency "rails", ">=
|
31
|
+
s.add_dependency "rails", ">= 5.2"
|
32
32
|
s.add_dependency "rainbow", "~> 3.0"
|
33
|
-
s.add_dependency "webpacker", ">= 4.
|
33
|
+
s.add_dependency "webpacker", ">= 4.2"
|
34
34
|
|
35
35
|
s.add_development_dependency "bundler", "~> 2"
|
36
36
|
s.add_development_dependency "gem-release"
|
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"
|