react_on_rails 12.0.0.pre.beta.1 → 12.0.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 +4 -4
- data/.rubocop.yml +1 -0
- data/.travis.yml +6 -4
- data/CHANGELOG.md +27 -17
- data/README.md +77 -79
- data/SUMMARY.md +1 -1
- data/docs/additional-reading/converting-from-custom-webpack-config-to-rails-webpacker-config.md +10 -0
- data/docs/additional-reading/react-router.md +1 -1
- data/docs/additional-reading/server-rendering-tips.md +4 -1
- data/docs/api/javascript-api.md +3 -3
- data/docs/api/redux-store-api.md +2 -2
- data/docs/api/view-helpers-api.md +4 -4
- data/docs/basics/configuration.md +28 -17
- data/docs/basics/deployment.md +2 -3
- data/docs/basics/heroku-deployment.md +24 -0
- data/docs/basics/hmr-and-hot-reloading-with-the-webpack-dev-server.md +49 -0
- data/docs/basics/i18n.md +3 -3
- data/docs/basics/installation-into-an-existing-rails-app.md +2 -7
- data/docs/basics/recommended-project-structure.md +5 -22
- data/docs/basics/render-functions-and-railscontext.md +1 -1
- data/docs/basics/rspec-configuration.md +27 -16
- data/docs/basics/upgrading-react-on-rails.md +35 -13
- data/docs/basics/webpack-configuration.md +3 -7
- data/docs/misc/doctrine.md +1 -1
- data/docs/outdated/code-splitting.md +3 -3
- data/docs/outdated/how-react-on-rails-works.md +8 -4
- data/docs/outdated/manual-installation-overview.md +1 -1
- data/docs/outdated/rails-assets.md +0 -7
- data/docs/tutorial.md +40 -30
- data/lib/generators/react_on_rails/templates/base/base/Procfile.dev-hmr +17 -9
- data/lib/generators/react_on_rails/templates/base/base/config/initializers/react_on_rails.rb +4 -1
- data/lib/react_on_rails/configuration.rb +45 -6
- data/lib/react_on_rails/helper.rb +8 -8
- data/lib/react_on_rails/locales/base.rb +8 -0
- data/lib/react_on_rails/test_helper/ensure_assets_compiled.rb +1 -1
- data/lib/react_on_rails/test_helper/webpack_assets_compiler.rb +17 -0
- data/lib/react_on_rails/version.rb +1 -1
- data/lib/react_on_rails/webpacker_utils.rb +6 -0
- data/lib/tasks/assets.rake +47 -8
- data/lib/tasks/locale.rake +1 -5
- data/package.json +1 -1
- data/rakelib/examples.rake +1 -1
- data/rakelib/lint.rake +1 -1
- data/rakelib/release.rake +1 -3
- data/react_on_rails.gemspec +1 -0
- data/yarn.lock +260 -109
- metadata +21 -5
- data/docs/outdated/heroku-deployment.md +0 -86
@@ -4,6 +4,14 @@ require "erb"
|
|
4
4
|
|
5
5
|
module ReactOnRails
|
6
6
|
module Locales
|
7
|
+
def self.compile
|
8
|
+
if ReactOnRails.configuration.i18n_output_format&.downcase == "js"
|
9
|
+
ReactOnRails::Locales::ToJs.new
|
10
|
+
else
|
11
|
+
ReactOnRails::Locales::ToJson.new
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
7
15
|
class Base
|
8
16
|
def initialize
|
9
17
|
return if i18n_dir.nil?
|
@@ -6,6 +6,23 @@ module ReactOnRails
|
|
6
6
|
module TestHelper
|
7
7
|
class WebpackAssetsCompiler
|
8
8
|
def compile_assets
|
9
|
+
if ReactOnRails.configuration.build_test_command.blank?
|
10
|
+
msg = <<~MSG
|
11
|
+
You are using the React on Rails test helper.
|
12
|
+
Either you used:
|
13
|
+
ReactOnRails::TestHelper.configure_rspec_to_compile_assets or
|
14
|
+
ReactOnRails::TestHelper.ensure_assets_compiled
|
15
|
+
but you did not specify the config.build_test_command
|
16
|
+
|
17
|
+
React on Rails is aborting your test run
|
18
|
+
|
19
|
+
If you wish to use the config/webpacker.yml compile option for tests
|
20
|
+
them remove your call to the ReactOnRails test helper.
|
21
|
+
MSG
|
22
|
+
puts Rainbow(msg).red
|
23
|
+
exit!(1)
|
24
|
+
end
|
25
|
+
|
9
26
|
puts "\nBuilding Webpack assets..."
|
10
27
|
|
11
28
|
cmd = ReactOnRails::Utils.prepend_cd_node_modules_directory(
|
@@ -6,6 +6,12 @@ module ReactOnRails
|
|
6
6
|
ReactOnRails::Utils.gem_available?("webpacker")
|
7
7
|
end
|
8
8
|
|
9
|
+
def self.webpacker_webpack_production_config_exists?
|
10
|
+
webpacker_webpack_config_abs_path = File.join(Rails.root,
|
11
|
+
"config/webpack/production.js")
|
12
|
+
File.exist?(webpacker_webpack_config_abs_path)
|
13
|
+
end
|
14
|
+
|
9
15
|
def self.dev_server_running?
|
10
16
|
return false unless using_webpacker?
|
11
17
|
|
data/lib/tasks/assets.rake
CHANGED
@@ -1,30 +1,69 @@
|
|
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
|
+
|
3
6
|
require "active_support"
|
4
7
|
|
5
|
-
|
6
|
-
|
8
|
+
ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
|
9
|
+
ENV["NODE_ENV"] ||= "development"
|
10
|
+
|
11
|
+
unless ReactOnRails::WebpackerUtils.webpacker_webpack_production_config_exists?
|
12
|
+
# Ensure that rails/webpacker does not call bin/webpack if we're providing
|
13
|
+
# the build command.
|
14
|
+
ENV["WEBPACKER_PRECOMPILE"] = "false"
|
15
|
+
|
16
|
+
precompile_tasks = lambda {
|
7
17
|
Rake::Task["react_on_rails:assets:webpack"].invoke
|
18
|
+
puts "Invoking task webpacker:clean from React on Rails"
|
19
|
+
|
20
|
+
# VERSIONS is per the rails/webpacker clean method definition.
|
21
|
+
# We set it very big so that it is not used, and then clean just
|
22
|
+
# removes files older than 1 hour.
|
23
|
+
VERSIONS = 100_000
|
24
|
+
Rake::Task["webpacker:clean"].invoke(VERSIONS)
|
25
|
+
}
|
26
|
+
|
27
|
+
if Rake::Task.task_defined?("assets:precompile")
|
28
|
+
Rake::Task["assets:precompile"].enhance do
|
29
|
+
precompile_tasks.call
|
30
|
+
end
|
31
|
+
else
|
32
|
+
Rake::Task.define_task("assets:precompile") do
|
33
|
+
precompile_tasks.call
|
34
|
+
end
|
8
35
|
end
|
9
|
-
else
|
10
|
-
Rake::Task.define_task("assets:precompile" => ["react_on_rails:assets:webpack"])
|
11
36
|
end
|
12
37
|
|
13
38
|
# Sprockets independent tasks
|
39
|
+
# rubocop:disable Metrics/BlockLength
|
14
40
|
namespace :react_on_rails do
|
15
41
|
namespace :assets do
|
16
42
|
desc <<-DESC.strip_heredoc
|
17
|
-
Compile assets with webpack
|
18
|
-
Uses command defined with ReactOnRails.configuration.build_production_command
|
19
|
-
|
20
|
-
|
43
|
+
Compile assets with webpack
|
44
|
+
Uses command defined with ReactOnRails.configuration.build_production_command
|
45
|
+
sh "#{ReactOnRails::Utils.prepend_cd_node_modules_directory('<ReactOnRails.configuration.build_production_command>')}"
|
46
|
+
Note: This command is not automatically added to assets:precompile if the rails/webpacker
|
47
|
+
configuration file config/webpack/production.js exists.
|
21
48
|
DESC
|
22
49
|
task webpack: :locale do
|
23
50
|
if ReactOnRails.configuration.build_production_command.present?
|
24
51
|
sh ReactOnRails::Utils.prepend_cd_node_modules_directory(
|
25
52
|
ReactOnRails.configuration.build_production_command
|
26
53
|
).to_s
|
54
|
+
else
|
55
|
+
msg = <<~MSG
|
56
|
+
React on Rails is aborting webpack compilation from task react_on_rails:assets:webpack
|
57
|
+
because you do not have the `config.build_production_command` defined.
|
58
|
+
|
59
|
+
Note, this task may have run as part of `assets:precompile`. If file
|
60
|
+
config/webpack/production.js does not exist, React on Rails will modify
|
61
|
+
the default `asset:precompile` to run task `react_on_rails:assets:webpack`.
|
62
|
+
MSG
|
63
|
+
puts Rainbow(msg).red
|
64
|
+
exit!(1)
|
27
65
|
end
|
28
66
|
end
|
29
67
|
end
|
30
68
|
end
|
69
|
+
# rubocop:enable Metrics/BlockLength
|
data/lib/tasks/locale.rake
CHANGED
@@ -12,10 +12,6 @@ namespace :react_on_rails do
|
|
12
12
|
the "ReactOnRails.configuration.i18n_dir".
|
13
13
|
DESC
|
14
14
|
task locale: :environment do
|
15
|
-
|
16
|
-
ReactOnRails::Locales::ToJs.new
|
17
|
-
else
|
18
|
-
ReactOnRails::Locales::ToJson.new
|
19
|
-
end
|
15
|
+
ReactOnRails::Locales.compile
|
20
16
|
end
|
21
17
|
end
|
data/package.json
CHANGED
data/rakelib/examples.rake
CHANGED
data/rakelib/lint.rake
CHANGED
data/rakelib/release.rake
CHANGED
@@ -67,8 +67,6 @@ task :release, %i[gem_version dry_run tools_install] do |_t, args|
|
|
67
67
|
sh_in_dir(gem_root, release_it_command)
|
68
68
|
|
69
69
|
# Release the new gem version
|
70
|
-
unless is_dry_run
|
71
|
-
sh_in_dir(gem_root, "gem release")
|
72
|
-
end
|
70
|
+
sh_in_dir(gem_root, "gem release") unless is_dry_run
|
73
71
|
end
|
74
72
|
# rubocop:enable Metrics/BlockLength
|
data/react_on_rails.gemspec
CHANGED
@@ -30,6 +30,7 @@ Gem::Specification.new do |s|
|
|
30
30
|
s.add_dependency "execjs", "~> 2.5"
|
31
31
|
s.add_dependency "rails", ">= 3.2"
|
32
32
|
s.add_dependency "rainbow", "~> 3.0"
|
33
|
+
s.add_dependency "webpacker", ">= 4.0"
|
33
34
|
|
34
35
|
s.add_development_dependency "awesome_print"
|
35
36
|
s.add_development_dependency "bundler", "~> 2"
|
data/yarn.lock
CHANGED
@@ -1218,11 +1218,21 @@
|
|
1218
1218
|
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339"
|
1219
1219
|
integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==
|
1220
1220
|
|
1221
|
+
"@types/minimist@^1.2.0":
|
1222
|
+
version "1.2.0"
|
1223
|
+
resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.0.tgz#69a23a3ad29caf0097f06eda59b361ee2f0639f6"
|
1224
|
+
integrity sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY=
|
1225
|
+
|
1221
1226
|
"@types/node@^13.9.0":
|
1222
1227
|
version "13.11.0"
|
1223
1228
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.11.0.tgz#390ea202539c61c8fa6ba4428b57e05bc36dc47b"
|
1224
1229
|
integrity sha512-uM4mnmsIIPK/yeO+42F2RQhGUIs39K2RFmugcJANppXe6J1nvH87PvzPZYpza7Xhhs8Yn9yIAVdLZ84z61+0xQ==
|
1225
1230
|
|
1231
|
+
"@types/normalize-package-data@^2.4.0":
|
1232
|
+
version "2.4.0"
|
1233
|
+
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
|
1234
|
+
integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==
|
1235
|
+
|
1226
1236
|
"@types/prettier@^1.19.0":
|
1227
1237
|
version "1.19.1"
|
1228
1238
|
resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.19.1.tgz#33509849f8e679e4add158959fdb086440e9553f"
|
@@ -2605,7 +2615,7 @@ camelcase-keys@^4.0.0:
|
|
2605
2615
|
map-obj "^2.0.0"
|
2606
2616
|
quick-lru "^1.0.0"
|
2607
2617
|
|
2608
|
-
camelcase-keys@^6.0.0:
|
2618
|
+
camelcase-keys@^6.0.0, camelcase-keys@^6.2.2:
|
2609
2619
|
version "6.2.2"
|
2610
2620
|
resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0"
|
2611
2621
|
integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==
|
@@ -2634,7 +2644,17 @@ camelcase@^5.0.0, camelcase@^5.3.1:
|
|
2634
2644
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
|
2635
2645
|
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
2636
2646
|
|
2637
|
-
|
2647
|
+
camelcase@^6.0.0:
|
2648
|
+
version "6.0.0"
|
2649
|
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.0.0.tgz#5259f7c30e35e278f1bdc2a4d91230b37cad981e"
|
2650
|
+
integrity sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w==
|
2651
|
+
|
2652
|
+
caniuse-lite@^1.0.30000844:
|
2653
|
+
version "1.0.30001088"
|
2654
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001088.tgz#23a6b9e192106107458528858f2c0e0dba0d9073"
|
2655
|
+
integrity sha512-6eYUrlShRYveyqKG58HcyOfPgh3zb2xqs7NvT2VVtP3hEUeeWvc3lqhpeMTxYWBBeeaT9A4bKsrtjATm66BTHg==
|
2656
|
+
|
2657
|
+
caniuse-lite@^1.0.30001038:
|
2638
2658
|
version "1.0.30001039"
|
2639
2659
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001039.tgz#b3814a1c38ffeb23567f8323500c09526a577bbe"
|
2640
2660
|
integrity sha512-SezbWCTT34eyFoWHgx8UWso7YtvtM7oosmFoXbCkdC6qJzRfBTeTgE9REtKtiuKXuMwWTZEvdnFNGAyVMorv8Q==
|
@@ -2778,9 +2798,9 @@ cli-spinners@^1.1.0:
|
|
2778
2798
|
integrity sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==
|
2779
2799
|
|
2780
2800
|
cli-width@^2.0.0:
|
2781
|
-
version "2.2.
|
2782
|
-
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.
|
2783
|
-
integrity
|
2801
|
+
version "2.2.1"
|
2802
|
+
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"
|
2803
|
+
integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==
|
2784
2804
|
|
2785
2805
|
cliui@^2.1.0:
|
2786
2806
|
version "2.1.0"
|
@@ -2884,7 +2904,7 @@ combined-stream@^1.0.6, combined-stream@~1.0.6:
|
|
2884
2904
|
dependencies:
|
2885
2905
|
delayed-stream "~1.0.0"
|
2886
2906
|
|
2887
|
-
commander@^2.11.0
|
2907
|
+
commander@^2.11.0:
|
2888
2908
|
version "2.20.3"
|
2889
2909
|
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
|
2890
2910
|
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
|
@@ -2905,9 +2925,9 @@ commondir@^1.0.1:
|
|
2905
2925
|
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
|
2906
2926
|
|
2907
2927
|
compare-func@^1.3.1:
|
2908
|
-
version "1.3.
|
2909
|
-
resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.
|
2910
|
-
integrity
|
2928
|
+
version "1.3.4"
|
2929
|
+
resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.4.tgz#6b07c4c5e8341119baf44578085bda0f4a823516"
|
2930
|
+
integrity sha512-sq2sWtrqKPkEXAC8tEJA1+BqAH9GbFkGBtUOqrUX57VSfwp8xyktctk+uLoRy5eccTdxzDcVIztlYDpKs3Jv1Q==
|
2911
2931
|
dependencies:
|
2912
2932
|
array-ify "^1.0.0"
|
2913
2933
|
dot-prop "^3.0.0"
|
@@ -2975,24 +2995,24 @@ contains-path@^0.1.0:
|
|
2975
2995
|
integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=
|
2976
2996
|
|
2977
2997
|
conventional-changelog-angular@^5.0.2:
|
2978
|
-
version "5.0.
|
2979
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.
|
2980
|
-
integrity sha512-
|
2998
|
+
version "5.0.10"
|
2999
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.10.tgz#5cf7b00dd315b6a6a558223c80d5ef24ddb34205"
|
3000
|
+
integrity sha512-k7RPPRs0vp8+BtPsM9uDxRl6KcgqtCJmzRD1wRtgqmhQ96g8ifBGo9O/TZBG23jqlXS/rg8BKRDELxfnQQGiaA==
|
2981
3001
|
dependencies:
|
2982
3002
|
compare-func "^1.3.1"
|
2983
3003
|
q "^1.5.1"
|
2984
3004
|
|
2985
3005
|
conventional-changelog-atom@^2.0.1:
|
2986
|
-
version "2.0.
|
2987
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.
|
2988
|
-
integrity sha512-
|
3006
|
+
version "2.0.7"
|
3007
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.7.tgz#221575253a04f77a2fd273eb2bf29a138f710abf"
|
3008
|
+
integrity sha512-7dOREZwzB+tCEMjRTDfen0OHwd7vPUdmU0llTy1eloZgtOP4iSLVzYIQqfmdRZEty+3w5Jz+AbhfTJKoKw1JeQ==
|
2989
3009
|
dependencies:
|
2990
3010
|
q "^1.5.1"
|
2991
3011
|
|
2992
3012
|
conventional-changelog-codemirror@^2.0.1:
|
2993
|
-
version "2.0.
|
2994
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.
|
2995
|
-
integrity sha512-
|
3013
|
+
version "2.0.7"
|
3014
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.7.tgz#d6b6a8ce2707710c5a036e305037547fb9e15bfb"
|
3015
|
+
integrity sha512-Oralk1kiagn3Gb5cR5BffenWjVu59t/viE6UMD/mQa1hISMPkMYhJIqX+CMeA1zXgVBO+YHQhhokEj99GP5xcg==
|
2996
3016
|
dependencies:
|
2997
3017
|
q "^1.5.1"
|
2998
3018
|
|
@@ -3016,23 +3036,23 @@ conventional-changelog-core@^3.1.5:
|
|
3016
3036
|
through2 "^3.0.0"
|
3017
3037
|
|
3018
3038
|
conventional-changelog-ember@^2.0.2:
|
3019
|
-
version "2.0.
|
3020
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.
|
3021
|
-
integrity sha512-
|
3039
|
+
version "2.0.8"
|
3040
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.8.tgz#f0f04eb7ff3c885af97db100865ab95dcfa9917f"
|
3041
|
+
integrity sha512-JEMEcUAMg4Q9yxD341OgWlESQ4gLqMWMXIWWUqoQU8yvTJlKnrvcui3wk9JvnZQyONwM2g1MKRZuAjKxr8hAXA==
|
3022
3042
|
dependencies:
|
3023
3043
|
q "^1.5.1"
|
3024
3044
|
|
3025
3045
|
conventional-changelog-eslint@^3.0.1:
|
3026
|
-
version "3.0.
|
3027
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.
|
3028
|
-
integrity sha512-
|
3046
|
+
version "3.0.8"
|
3047
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.8.tgz#f8b952b7ed7253ea0ac0b30720bb381f4921b46c"
|
3048
|
+
integrity sha512-5rTRltgWG7TpU1PqgKHMA/2ivjhrB+E+S7OCTvj0zM/QGg4vmnVH67Vq/EzvSNYtejhWC+OwzvDrLk3tqPry8A==
|
3029
3049
|
dependencies:
|
3030
3050
|
q "^1.5.1"
|
3031
3051
|
|
3032
3052
|
conventional-changelog-express@^2.0.1:
|
3033
|
-
version "2.0.
|
3034
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-2.0.
|
3035
|
-
integrity sha512-
|
3053
|
+
version "2.0.5"
|
3054
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-2.0.5.tgz#6e93705acdad374516ca125990012a48e710f8de"
|
3055
|
+
integrity sha512-pW2hsjKG+xNx/Qjof8wYlAX/P61hT5gQ/2rZ2NsTpG+PgV7Rc8RCfITvC/zN9K8fj0QmV6dWmUefCteD9baEAw==
|
3036
3056
|
dependencies:
|
3037
3057
|
q "^1.5.1"
|
3038
3058
|
|
@@ -3044,30 +3064,30 @@ conventional-changelog-jquery@^3.0.4:
|
|
3044
3064
|
q "^1.5.1"
|
3045
3065
|
|
3046
3066
|
conventional-changelog-jshint@^2.0.1:
|
3047
|
-
version "2.0.
|
3048
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.
|
3049
|
-
integrity sha512-
|
3067
|
+
version "2.0.7"
|
3068
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.7.tgz#955a69266951cd31e8afeb3f1c55e0517fdca943"
|
3069
|
+
integrity sha512-qHA8rmwUnLiIxANJbz650+NVzqDIwNtc0TcpIa0+uekbmKHttidvQ1dGximU3vEDdoJVKFgR3TXFqYuZmYy9ZQ==
|
3050
3070
|
dependencies:
|
3051
3071
|
compare-func "^1.3.1"
|
3052
3072
|
q "^1.5.1"
|
3053
3073
|
|
3054
3074
|
conventional-changelog-preset-loader@^2.0.2:
|
3055
|
-
version "2.3.
|
3056
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.
|
3057
|
-
integrity sha512
|
3075
|
+
version "2.3.4"
|
3076
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c"
|
3077
|
+
integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==
|
3058
3078
|
|
3059
3079
|
conventional-changelog-writer@^4.0.6:
|
3060
|
-
version "4.0.
|
3061
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.
|
3062
|
-
integrity sha512-
|
3080
|
+
version "4.0.16"
|
3081
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.16.tgz#ca10f2691a8ea6d3c2eb74bd35bcf40aa052dda5"
|
3082
|
+
integrity sha512-jmU1sDJDZpm/dkuFxBeRXvyNcJQeKhGtVcFFkwTphUAzyYWcwz2j36Wcv+Mv2hU3tpvLMkysOPXJTLO55AUrYQ==
|
3063
3083
|
dependencies:
|
3064
3084
|
compare-func "^1.3.1"
|
3065
|
-
conventional-commits-filter "^2.0.
|
3085
|
+
conventional-commits-filter "^2.0.6"
|
3066
3086
|
dateformat "^3.0.0"
|
3067
|
-
handlebars "^4.
|
3087
|
+
handlebars "^4.7.6"
|
3068
3088
|
json-stringify-safe "^5.0.1"
|
3069
3089
|
lodash "^4.17.15"
|
3070
|
-
meow "^
|
3090
|
+
meow "^7.0.0"
|
3071
3091
|
semver "^6.0.0"
|
3072
3092
|
split "^1.0.0"
|
3073
3093
|
through2 "^3.0.0"
|
@@ -3088,23 +3108,23 @@ conventional-changelog@3.0.5:
|
|
3088
3108
|
conventional-changelog-jshint "^2.0.1"
|
3089
3109
|
conventional-changelog-preset-loader "^2.0.2"
|
3090
3110
|
|
3091
|
-
conventional-commits-filter@^2.0.1, conventional-commits-filter@^2.0.
|
3092
|
-
version "2.0.
|
3093
|
-
resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.
|
3094
|
-
integrity sha512-
|
3111
|
+
conventional-commits-filter@^2.0.1, conventional-commits-filter@^2.0.6:
|
3112
|
+
version "2.0.6"
|
3113
|
+
resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.6.tgz#0935e1240c5ca7698329affee1b6a46d33324c4c"
|
3114
|
+
integrity sha512-4g+sw8+KA50/Qwzfr0hL5k5NWxqtrOVw4DDk3/h6L85a9Gz0/Eqp3oP+CWCNfesBvZZZEFHF7OTEbRe+yYSyKw==
|
3095
3115
|
dependencies:
|
3096
3116
|
lodash.ismatch "^4.4.0"
|
3097
3117
|
modify-values "^1.0.0"
|
3098
3118
|
|
3099
3119
|
conventional-commits-parser@^3.0.1, conventional-commits-parser@^3.0.3:
|
3100
|
-
version "3.0
|
3101
|
-
resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.0.
|
3102
|
-
integrity sha512-
|
3120
|
+
version "3.1.0"
|
3121
|
+
resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.1.0.tgz#10140673d5e7ef5572633791456c5d03b69e8be4"
|
3122
|
+
integrity sha512-RSo5S0WIwXZiRxUGTPuYFbqvrR4vpJ1BDdTlthFgvHt5kEdnd1+pdvwWphWn57/oIl4V72NMmOocFqqJ8mFFhA==
|
3103
3123
|
dependencies:
|
3104
3124
|
JSONStream "^1.0.4"
|
3105
3125
|
is-text-path "^1.0.1"
|
3106
3126
|
lodash "^4.17.15"
|
3107
|
-
meow "^
|
3127
|
+
meow "^7.0.0"
|
3108
3128
|
split2 "^2.0.0"
|
3109
3129
|
through2 "^3.0.0"
|
3110
3130
|
trim-off-newlines "^1.0.0"
|
@@ -3397,7 +3417,7 @@ debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
|
|
3397
3417
|
dependencies:
|
3398
3418
|
ms "^2.1.1"
|
3399
3419
|
|
3400
|
-
decamelize-keys@^1.0.0:
|
3420
|
+
decamelize-keys@^1.0.0, decamelize-keys@^1.1.0:
|
3401
3421
|
version "1.1.0"
|
3402
3422
|
resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
|
3403
3423
|
integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=
|
@@ -3637,11 +3657,16 @@ ecc-jsbn@~0.1.1:
|
|
3637
3657
|
jsbn "~0.1.0"
|
3638
3658
|
safer-buffer "^2.1.0"
|
3639
3659
|
|
3640
|
-
electron-to-chromium@^1.3.390
|
3660
|
+
electron-to-chromium@^1.3.390:
|
3641
3661
|
version "1.3.397"
|
3642
3662
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.397.tgz#db640c2e67b08d590a504c20b56904537aa2bafa"
|
3643
3663
|
integrity sha512-zcUd1p/7yzTSdWkCTrqGvbnEOASy96d0RJL/lc5BDJoO23Z3G/VHd0yIPbguDU9n8QNUTCigLO7oEdtOb7fp2A==
|
3644
3664
|
|
3665
|
+
electron-to-chromium@^1.3.47:
|
3666
|
+
version "1.3.482"
|
3667
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.482.tgz#a7bcead342aba2e051305695402bb746ffa836ed"
|
3668
|
+
integrity sha512-iRK2JHR6Q3x20Pkl1Rf+gzalOwmVG+PF2J9BHiVOCPotloQmDSG6dT+Vtf2D+3JT3fpzoDNdtHgGuRO6OAUlhQ==
|
3669
|
+
|
3645
3670
|
elliptic@^6.0.0:
|
3646
3671
|
version "6.5.2"
|
3647
3672
|
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762"
|
@@ -4769,7 +4794,12 @@ got@^6.7.1:
|
|
4769
4794
|
unzip-response "^2.0.1"
|
4770
4795
|
url-parse-lax "^1.0.0"
|
4771
4796
|
|
4772
|
-
graceful-fs@^4.1.11, graceful-fs@^4.1.2
|
4797
|
+
graceful-fs@^4.1.11, graceful-fs@^4.1.2:
|
4798
|
+
version "4.2.4"
|
4799
|
+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
|
4800
|
+
integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
|
4801
|
+
|
4802
|
+
graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.3:
|
4773
4803
|
version "4.2.3"
|
4774
4804
|
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
|
4775
4805
|
integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
|
@@ -4779,7 +4809,7 @@ growly@^1.3.0:
|
|
4779
4809
|
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
|
4780
4810
|
integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
|
4781
4811
|
|
4782
|
-
handlebars@^4.
|
4812
|
+
handlebars@^4.7.6:
|
4783
4813
|
version "4.7.6"
|
4784
4814
|
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"
|
4785
4815
|
integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==
|
@@ -4804,6 +4834,11 @@ har-validator@~5.1.3:
|
|
4804
4834
|
ajv "^6.5.5"
|
4805
4835
|
har-schema "^2.0.0"
|
4806
4836
|
|
4837
|
+
hard-rejection@^2.1.0:
|
4838
|
+
version "2.1.0"
|
4839
|
+
resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883"
|
4840
|
+
integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==
|
4841
|
+
|
4807
4842
|
has-ansi@^2.0.0:
|
4808
4843
|
version "2.0.0"
|
4809
4844
|
resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
|
@@ -5033,7 +5068,7 @@ inflight@^1.0.4:
|
|
5033
5068
|
once "^1.3.0"
|
5034
5069
|
wrappy "1"
|
5035
5070
|
|
5036
|
-
inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4:
|
5071
|
+
inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4:
|
5037
5072
|
version "2.0.4"
|
5038
5073
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
5039
5074
|
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
@@ -5120,9 +5155,9 @@ internal-slot@^1.0.2:
|
|
5120
5155
|
side-channel "^1.0.2"
|
5121
5156
|
|
5122
5157
|
interpret@^1.0.0:
|
5123
|
-
version "1.
|
5124
|
-
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.
|
5125
|
-
integrity sha512-
|
5158
|
+
version "1.4.0"
|
5159
|
+
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
|
5160
|
+
integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==
|
5126
5161
|
|
5127
5162
|
into-stream@^3.1.0:
|
5128
5163
|
version "3.1.0"
|
@@ -5354,9 +5389,9 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4:
|
|
5354
5389
|
isobject "^3.0.1"
|
5355
5390
|
|
5356
5391
|
is-promise@^2.1.0:
|
5357
|
-
version "2.
|
5358
|
-
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.
|
5359
|
-
integrity
|
5392
|
+
version "2.2.2"
|
5393
|
+
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
|
5394
|
+
integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==
|
5360
5395
|
|
5361
5396
|
is-redirect@^1.0.0:
|
5362
5397
|
version "1.0.0"
|
@@ -6075,7 +6110,7 @@ kind-of@^5.0.0:
|
|
6075
6110
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
|
6076
6111
|
integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
|
6077
6112
|
|
6078
|
-
kind-of@^6.0.0, kind-of@^6.0.2:
|
6113
|
+
kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3:
|
6079
6114
|
version "6.0.3"
|
6080
6115
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
|
6081
6116
|
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
|
@@ -6136,6 +6171,11 @@ levn@^0.3.0, levn@~0.3.0:
|
|
6136
6171
|
prelude-ls "~1.1.2"
|
6137
6172
|
type-check "~0.3.2"
|
6138
6173
|
|
6174
|
+
lines-and-columns@^1.1.6:
|
6175
|
+
version "1.1.6"
|
6176
|
+
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
|
6177
|
+
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
|
6178
|
+
|
6139
6179
|
load-json-file@^1.0.0:
|
6140
6180
|
version "1.1.0"
|
6141
6181
|
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
|
@@ -6482,20 +6522,24 @@ meow@^4.0.0:
|
|
6482
6522
|
redent "^2.0.0"
|
6483
6523
|
trim-newlines "^2.0.0"
|
6484
6524
|
|
6485
|
-
meow@^
|
6486
|
-
version "
|
6487
|
-
resolved "https://registry.yarnpkg.com/meow/-/meow-
|
6488
|
-
integrity sha512-
|
6525
|
+
meow@^7.0.0:
|
6526
|
+
version "7.0.1"
|
6527
|
+
resolved "https://registry.yarnpkg.com/meow/-/meow-7.0.1.tgz#1ed4a0a50b3844b451369c48362eb0515f04c1dc"
|
6528
|
+
integrity sha512-tBKIQqVrAHqwit0vfuFPY3LlzJYkEOFyKa3bPgxzNl6q/RtN8KQ+ALYEASYuFayzSAsjlhXj/JZ10rH85Q6TUw==
|
6489
6529
|
dependencies:
|
6490
|
-
|
6491
|
-
|
6492
|
-
|
6493
|
-
|
6494
|
-
|
6495
|
-
|
6496
|
-
|
6497
|
-
|
6498
|
-
|
6530
|
+
"@types/minimist" "^1.2.0"
|
6531
|
+
arrify "^2.0.1"
|
6532
|
+
camelcase "^6.0.0"
|
6533
|
+
camelcase-keys "^6.2.2"
|
6534
|
+
decamelize-keys "^1.1.0"
|
6535
|
+
hard-rejection "^2.1.0"
|
6536
|
+
minimist-options "^4.0.2"
|
6537
|
+
normalize-package-data "^2.5.0"
|
6538
|
+
read-pkg-up "^7.0.1"
|
6539
|
+
redent "^3.0.0"
|
6540
|
+
trim-newlines "^3.0.0"
|
6541
|
+
type-fest "^0.13.1"
|
6542
|
+
yargs-parser "^18.1.3"
|
6499
6543
|
|
6500
6544
|
merge-stream@^2.0.0:
|
6501
6545
|
version "2.0.0"
|
@@ -6503,9 +6547,9 @@ merge-stream@^2.0.0:
|
|
6503
6547
|
integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
|
6504
6548
|
|
6505
6549
|
merge2@^1.2.3:
|
6506
|
-
version "1.
|
6507
|
-
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.
|
6508
|
-
integrity sha512-
|
6550
|
+
version "1.4.1"
|
6551
|
+
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
|
6552
|
+
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
6509
6553
|
|
6510
6554
|
messageformat-formatters@^2.0.1:
|
6511
6555
|
version "2.0.1"
|
@@ -6607,6 +6651,11 @@ min-document@^2.19.0:
|
|
6607
6651
|
dependencies:
|
6608
6652
|
dom-walk "^0.1.0"
|
6609
6653
|
|
6654
|
+
min-indent@^1.0.0:
|
6655
|
+
version "1.0.1"
|
6656
|
+
resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
|
6657
|
+
integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
|
6658
|
+
|
6610
6659
|
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
|
6611
6660
|
version "1.0.1"
|
6612
6661
|
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
|
@@ -6632,6 +6681,15 @@ minimist-options@^3.0.1:
|
|
6632
6681
|
arrify "^1.0.1"
|
6633
6682
|
is-plain-obj "^1.1.0"
|
6634
6683
|
|
6684
|
+
minimist-options@^4.0.2:
|
6685
|
+
version "4.1.0"
|
6686
|
+
resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
|
6687
|
+
integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
|
6688
|
+
dependencies:
|
6689
|
+
arrify "^1.0.1"
|
6690
|
+
is-plain-obj "^1.1.0"
|
6691
|
+
kind-of "^6.0.3"
|
6692
|
+
|
6635
6693
|
minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5, minimist@~1.2.0:
|
6636
6694
|
version "1.2.5"
|
6637
6695
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
|
@@ -6797,7 +6855,7 @@ node-releases@^1.1.53:
|
|
6797
6855
|
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4"
|
6798
6856
|
integrity sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ==
|
6799
6857
|
|
6800
|
-
normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5:
|
6858
|
+
normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5, normalize-package-data@^2.5.0:
|
6801
6859
|
version "2.5.0"
|
6802
6860
|
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
|
6803
6861
|
integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
|
@@ -7179,6 +7237,16 @@ parse-json@^4.0.0:
|
|
7179
7237
|
error-ex "^1.3.1"
|
7180
7238
|
json-parse-better-errors "^1.0.1"
|
7181
7239
|
|
7240
|
+
parse-json@^5.0.0:
|
7241
|
+
version "5.0.0"
|
7242
|
+
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f"
|
7243
|
+
integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
|
7244
|
+
dependencies:
|
7245
|
+
"@babel/code-frame" "^7.0.0"
|
7246
|
+
error-ex "^1.3.1"
|
7247
|
+
json-parse-better-errors "^1.0.1"
|
7248
|
+
lines-and-columns "^1.1.6"
|
7249
|
+
|
7182
7250
|
parse-repo@1.0.4:
|
7183
7251
|
version "1.0.4"
|
7184
7252
|
resolved "https://registry.yarnpkg.com/parse-repo/-/parse-repo-1.0.4.tgz#74b91d2cb8675d11b99976a0065f6ce17fa1bcc8"
|
@@ -7708,6 +7776,15 @@ read-pkg-up@^3.0.0:
|
|
7708
7776
|
find-up "^2.0.0"
|
7709
7777
|
read-pkg "^3.0.0"
|
7710
7778
|
|
7779
|
+
read-pkg-up@^7.0.1:
|
7780
|
+
version "7.0.1"
|
7781
|
+
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507"
|
7782
|
+
integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
|
7783
|
+
dependencies:
|
7784
|
+
find-up "^4.1.0"
|
7785
|
+
read-pkg "^5.2.0"
|
7786
|
+
type-fest "^0.8.1"
|
7787
|
+
|
7711
7788
|
read-pkg@^1.0.0:
|
7712
7789
|
version "1.1.0"
|
7713
7790
|
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
|
@@ -7744,6 +7821,16 @@ read-pkg@^4.0.1:
|
|
7744
7821
|
parse-json "^4.0.0"
|
7745
7822
|
pify "^3.0.0"
|
7746
7823
|
|
7824
|
+
read-pkg@^5.2.0:
|
7825
|
+
version "5.2.0"
|
7826
|
+
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc"
|
7827
|
+
integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
|
7828
|
+
dependencies:
|
7829
|
+
"@types/normalize-package-data" "^2.4.0"
|
7830
|
+
normalize-package-data "^2.5.0"
|
7831
|
+
parse-json "^5.0.0"
|
7832
|
+
type-fest "^0.6.0"
|
7833
|
+
|
7747
7834
|
"readable-stream@2 || 3":
|
7748
7835
|
version "3.6.0"
|
7749
7836
|
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
|
@@ -7808,6 +7895,14 @@ redent@^2.0.0:
|
|
7808
7895
|
indent-string "^3.0.0"
|
7809
7896
|
strip-indent "^2.0.0"
|
7810
7897
|
|
7898
|
+
redent@^3.0.0:
|
7899
|
+
version "3.0.0"
|
7900
|
+
resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f"
|
7901
|
+
integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==
|
7902
|
+
dependencies:
|
7903
|
+
indent-string "^4.0.0"
|
7904
|
+
strip-indent "^3.0.0"
|
7905
|
+
|
7811
7906
|
redux@^4.0.1:
|
7812
7907
|
version "4.0.5"
|
7813
7908
|
resolved "https://registry.yarnpkg.com/redux/-/redux-4.0.5.tgz#4db5de5816e17891de8a80c424232d06f051d93f"
|
@@ -7823,7 +7918,12 @@ regenerate-unicode-properties@^8.2.0:
|
|
7823
7918
|
dependencies:
|
7824
7919
|
regenerate "^1.4.0"
|
7825
7920
|
|
7826
|
-
regenerate@^1.2.1
|
7921
|
+
regenerate@^1.2.1:
|
7922
|
+
version "1.4.1"
|
7923
|
+
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f"
|
7924
|
+
integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==
|
7925
|
+
|
7926
|
+
regenerate@^1.4.0:
|
7827
7927
|
version "1.4.0"
|
7828
7928
|
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
|
7829
7929
|
integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
|
@@ -8085,13 +8185,20 @@ resolve@1.1.7:
|
|
8085
8185
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
|
8086
8186
|
integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
|
8087
8187
|
|
8088
|
-
resolve@1.x, resolve@^1.
|
8188
|
+
resolve@1.x, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.3.2, resolve@^1.8.1, resolve@~1.15.1:
|
8089
8189
|
version "1.15.1"
|
8090
8190
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8"
|
8091
8191
|
integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==
|
8092
8192
|
dependencies:
|
8093
8193
|
path-parse "^1.0.6"
|
8094
8194
|
|
8195
|
+
resolve@^1.1.6, resolve@^1.10.0:
|
8196
|
+
version "1.17.0"
|
8197
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
|
8198
|
+
integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
|
8199
|
+
dependencies:
|
8200
|
+
path-parse "^1.0.6"
|
8201
|
+
|
8095
8202
|
responselike@1.0.2:
|
8096
8203
|
version "1.0.2"
|
8097
8204
|
resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
|
@@ -8173,7 +8280,12 @@ rsvp@^4.8.4:
|
|
8173
8280
|
resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
|
8174
8281
|
integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
|
8175
8282
|
|
8176
|
-
run-async@^2.2.0
|
8283
|
+
run-async@^2.2.0:
|
8284
|
+
version "2.4.1"
|
8285
|
+
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
|
8286
|
+
integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
|
8287
|
+
|
8288
|
+
run-async@^2.4.0:
|
8177
8289
|
version "2.4.0"
|
8178
8290
|
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz#e59054a5b86876cfae07f431d18cbaddc594f1e8"
|
8179
8291
|
integrity sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg==
|
@@ -8187,7 +8299,12 @@ rxjs@^6.1.0, rxjs@^6.4.0, rxjs@^6.5.2, rxjs@^6.5.3:
|
|
8187
8299
|
dependencies:
|
8188
8300
|
tslib "^1.9.0"
|
8189
8301
|
|
8190
|
-
safe-buffer@^5.0.1, safe-buffer@^5.1.
|
8302
|
+
safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.2.0:
|
8303
|
+
version "5.2.1"
|
8304
|
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
|
8305
|
+
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
|
8306
|
+
|
8307
|
+
safe-buffer@^5.1.0, safe-buffer@^5.1.2:
|
8191
8308
|
version "5.2.0"
|
8192
8309
|
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
|
8193
8310
|
integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
|
@@ -8499,22 +8616,22 @@ spawn-command@^0.0.2-1:
|
|
8499
8616
|
integrity sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=
|
8500
8617
|
|
8501
8618
|
spdx-correct@^3.0.0:
|
8502
|
-
version "3.1.
|
8503
|
-
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.
|
8504
|
-
integrity sha512-
|
8619
|
+
version "3.1.1"
|
8620
|
+
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
|
8621
|
+
integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
|
8505
8622
|
dependencies:
|
8506
8623
|
spdx-expression-parse "^3.0.0"
|
8507
8624
|
spdx-license-ids "^3.0.0"
|
8508
8625
|
|
8509
8626
|
spdx-exceptions@^2.1.0:
|
8510
|
-
version "2.
|
8511
|
-
resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.
|
8512
|
-
integrity sha512
|
8627
|
+
version "2.3.0"
|
8628
|
+
resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
|
8629
|
+
integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
|
8513
8630
|
|
8514
8631
|
spdx-expression-parse@^3.0.0:
|
8515
|
-
version "3.0.
|
8516
|
-
resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.
|
8517
|
-
integrity sha512-
|
8632
|
+
version "3.0.1"
|
8633
|
+
resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
|
8634
|
+
integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
|
8518
8635
|
dependencies:
|
8519
8636
|
spdx-exceptions "^2.1.0"
|
8520
8637
|
spdx-license-ids "^3.0.0"
|
@@ -8805,6 +8922,13 @@ strip-indent@^2.0.0:
|
|
8805
8922
|
resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
|
8806
8923
|
integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=
|
8807
8924
|
|
8925
|
+
strip-indent@^3.0.0:
|
8926
|
+
version "3.0.0"
|
8927
|
+
resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001"
|
8928
|
+
integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
|
8929
|
+
dependencies:
|
8930
|
+
min-indent "^1.0.0"
|
8931
|
+
|
8808
8932
|
strip-json-comments@^2.0.1, strip-json-comments@~2.0.1:
|
8809
8933
|
version "2.0.1"
|
8810
8934
|
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
@@ -8950,10 +9074,11 @@ through2@^2.0.0, through2@^2.0.2:
|
|
8950
9074
|
xtend "~4.0.1"
|
8951
9075
|
|
8952
9076
|
through2@^3.0.0:
|
8953
|
-
version "3.0.
|
8954
|
-
resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.
|
8955
|
-
integrity sha512-
|
9077
|
+
version "3.0.2"
|
9078
|
+
resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.2.tgz#99f88931cfc761ec7678b41d5d7336b5b6a07bf4"
|
9079
|
+
integrity sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==
|
8956
9080
|
dependencies:
|
9081
|
+
inherits "^2.0.4"
|
8957
9082
|
readable-stream "2 || 3"
|
8958
9083
|
|
8959
9084
|
through@2, "through@>=2.2.7 <3", through@^2.3.6, through@~2.3, through@~2.3.1, through@~2.3.4, through@~2.3.8:
|
@@ -9079,6 +9204,11 @@ trim-newlines@^2.0.0:
|
|
9079
9204
|
resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20"
|
9080
9205
|
integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=
|
9081
9206
|
|
9207
|
+
trim-newlines@^3.0.0:
|
9208
|
+
version "3.0.0"
|
9209
|
+
resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.0.tgz#79726304a6a898aa8373427298d54c2ee8b1cb30"
|
9210
|
+
integrity sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==
|
9211
|
+
|
9082
9212
|
trim-off-newlines@^1.0.0:
|
9083
9213
|
version "1.0.1"
|
9084
9214
|
resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
|
@@ -9106,11 +9236,16 @@ ts-jest@^25.2.1:
|
|
9106
9236
|
semver "6.x"
|
9107
9237
|
yargs-parser "18.x"
|
9108
9238
|
|
9109
|
-
tslib@^1.8.1
|
9239
|
+
tslib@^1.8.1:
|
9110
9240
|
version "1.11.1"
|
9111
9241
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35"
|
9112
9242
|
integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==
|
9113
9243
|
|
9244
|
+
tslib@^1.9.0:
|
9245
|
+
version "1.13.0"
|
9246
|
+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043"
|
9247
|
+
integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==
|
9248
|
+
|
9114
9249
|
tslint-config-prettier@^1.18.0:
|
9115
9250
|
version "1.18.0"
|
9116
9251
|
resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz#75f140bde947d35d8f0d238e0ebf809d64592c37"
|
@@ -9157,6 +9292,16 @@ type-fest@^0.11.0:
|
|
9157
9292
|
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1"
|
9158
9293
|
integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==
|
9159
9294
|
|
9295
|
+
type-fest@^0.13.1:
|
9296
|
+
version "0.13.1"
|
9297
|
+
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934"
|
9298
|
+
integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==
|
9299
|
+
|
9300
|
+
type-fest@^0.6.0:
|
9301
|
+
version "0.6.0"
|
9302
|
+
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
|
9303
|
+
integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
|
9304
|
+
|
9160
9305
|
type-fest@^0.8.1:
|
9161
9306
|
version "0.8.1"
|
9162
9307
|
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
|
@@ -9205,12 +9350,9 @@ uglify-js@^2.8.29:
|
|
9205
9350
|
uglify-to-browserify "~1.0.0"
|
9206
9351
|
|
9207
9352
|
uglify-js@^3.1.4:
|
9208
|
-
version "3.
|
9209
|
-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.
|
9210
|
-
integrity sha512-
|
9211
|
-
dependencies:
|
9212
|
-
commander "~2.20.3"
|
9213
|
-
source-map "~0.6.1"
|
9353
|
+
version "3.10.0"
|
9354
|
+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.0.tgz#397a7e6e31ce820bfd1cb55b804ee140c587a9e7"
|
9355
|
+
integrity sha512-Esj5HG5WAyrLIdYU74Z3JdG2PxdIusvj6IWHMtlyESxc7kcDz7zYlYjpnSokn1UbpV0d/QX9fan7gkCNd/9BQA==
|
9214
9356
|
|
9215
9357
|
uglify-to-browserify@~1.0.0:
|
9216
9358
|
version "1.0.2"
|
@@ -9596,9 +9738,9 @@ window-size@1.1.1:
|
|
9596
9738
|
is-number "^3.0.0"
|
9597
9739
|
|
9598
9740
|
windows-release@^3.1.0:
|
9599
|
-
version "3.
|
9600
|
-
resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.
|
9601
|
-
integrity sha512-
|
9741
|
+
version "3.3.1"
|
9742
|
+
resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.3.1.tgz#cb4e80385f8550f709727287bf71035e209c4ace"
|
9743
|
+
integrity sha512-Pngk/RDCaI/DkuHPlGTdIkDiTAnAkyMjoQMZqRsxydNl1qGXNIoZrB7RK8g53F2tEgQBMqQJHQdYZuQEEAu54A==
|
9602
9744
|
dependencies:
|
9603
9745
|
execa "^1.0.0"
|
9604
9746
|
|
@@ -9744,13 +9886,6 @@ yargs-parser@18.x, yargs-parser@^18.1.1:
|
|
9744
9886
|
camelcase "^5.0.0"
|
9745
9887
|
decamelize "^1.2.0"
|
9746
9888
|
|
9747
|
-
yargs-parser@^10.0.0:
|
9748
|
-
version "10.1.0"
|
9749
|
-
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8"
|
9750
|
-
integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==
|
9751
|
-
dependencies:
|
9752
|
-
camelcase "^4.1.0"
|
9753
|
-
|
9754
9889
|
yargs-parser@^13.1.2:
|
9755
9890
|
version "13.1.2"
|
9756
9891
|
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
|
@@ -9767,6 +9902,22 @@ yargs-parser@^15.0.0:
|
|
9767
9902
|
camelcase "^5.0.0"
|
9768
9903
|
decamelize "^1.2.0"
|
9769
9904
|
|
9905
|
+
yargs-parser@^18.1.3:
|
9906
|
+
version "18.1.3"
|
9907
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
|
9908
|
+
integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
|
9909
|
+
dependencies:
|
9910
|
+
camelcase "^5.0.0"
|
9911
|
+
decamelize "^1.2.0"
|
9912
|
+
|
9913
|
+
yargs-parser@^18.1.3:
|
9914
|
+
version "18.1.3"
|
9915
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
|
9916
|
+
integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
|
9917
|
+
dependencies:
|
9918
|
+
camelcase "^5.0.0"
|
9919
|
+
decamelize "^1.2.0"
|
9920
|
+
|
9770
9921
|
yargs-parser@^7.0.0:
|
9771
9922
|
version "7.0.0"
|
9772
9923
|
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
|