cable_ready 4.5.0 → 5.0.0.pre0
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/CHANGELOG.md +194 -161
- data/Gemfile.lock +122 -85
- data/LATEST +1 -0
- data/README.md +9 -9
- data/Rakefile +8 -2
- data/bin/standardize +1 -1
- data/cable_ready.gemspec +2 -1
- data/lib/cable_ready.rb +37 -5
- data/lib/cable_ready/broadcaster.rb +3 -4
- data/lib/cable_ready/cable_car.rb +17 -0
- data/lib/cable_ready/channel.rb +12 -32
- data/lib/cable_ready/channels.rb +4 -7
- data/lib/cable_ready/compoundable.rb +11 -0
- data/lib/cable_ready/config.rb +15 -5
- data/lib/cable_ready/identifiable.rb +19 -0
- data/lib/cable_ready/operation_builder.rb +69 -0
- data/lib/cable_ready/sanity_checker.rb +151 -0
- data/lib/cable_ready/stream_identifier.rb +13 -0
- data/lib/cable_ready/version.rb +1 -1
- data/lib/generators/cable_ready/channel_generator.rb +71 -0
- data/lib/generators/cable_ready/initializer_generator.rb +14 -0
- data/lib/generators/cable_ready/stream_from_generator.rb +43 -0
- data/lib/generators/cable_ready/templates/config/initializers/cable_ready.rb +18 -0
- data/package.json +8 -5
- data/tags +21 -3
- data/test/lib/cable_ready/cable_car_test.rb +28 -0
- data/test/lib/cable_ready/identifiable_test.rb +75 -0
- data/test/lib/cable_ready/operation_builder_test.rb +128 -0
- data/test/lib/generators/cable_ready/channel_generator_test.rb +157 -0
- data/test/support/generator_test_helpers.rb +28 -0
- data/test/test_helper.rb +15 -0
- data/yarn.lock +134 -124
- metadata +44 -7
| @@ -0,0 +1,157 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require "test_helper"
         | 
| 4 | 
            +
            require "generators/cable_ready/channel_generator"
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            class CableReady::ChannelGeneratorTest < Rails::Generators::TestCase
         | 
| 7 | 
            +
              include ::GeneratorTestHelpers
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              tests CableReady::ChannelGenerator
         | 
| 10 | 
            +
              destination File.expand_path("../../../../tmp/dummy", __dir__)
         | 
| 11 | 
            +
             | 
| 12 | 
            +
              prepare_destination
         | 
| 13 | 
            +
              create_sample_app
         | 
| 14 | 
            +
             | 
| 15 | 
            +
              MiniTest.after_run do
         | 
| 16 | 
            +
                remove_sample_app
         | 
| 17 | 
            +
              end
         | 
| 18 | 
            +
             | 
| 19 | 
            +
              test "should generate channel with the same resource name and stimulus controller" do
         | 
| 20 | 
            +
                run_generator ["user", "--stream-for=user", "--stimulus"]
         | 
| 21 | 
            +
             | 
| 22 | 
            +
                assert_file "app/channels/user_channel.rb" do |content|
         | 
| 23 | 
            +
                  assert_match(/class\ UserChannel\ </, content)
         | 
| 24 | 
            +
                  assert_match(/stream_for\ User\.find\(params\[:id\]\)/, content)
         | 
| 25 | 
            +
                end
         | 
| 26 | 
            +
             | 
| 27 | 
            +
                assert_file "app/javascript/channels/user_channel.js", /"UserChannel"/
         | 
| 28 | 
            +
                assert_file "app/javascript/controllers/user_controller.js", /'UserChannel'/
         | 
| 29 | 
            +
              end
         | 
| 30 | 
            +
             | 
| 31 | 
            +
              test "should generate channel with different resource name" do
         | 
| 32 | 
            +
                run_generator ["my_name", "--stream-for=under_scored_resource_name", "--no-stimulus"]
         | 
| 33 | 
            +
             | 
| 34 | 
            +
                assert_file "app/channels/my_name_channel.rb" do |content|
         | 
| 35 | 
            +
                  assert_match(/class\ MyNameChannel\ </, content)
         | 
| 36 | 
            +
                  assert_match(/stream_for\ UnderScoredResourceName\.find\(params\[:id\]\)/, content)
         | 
| 37 | 
            +
                end
         | 
| 38 | 
            +
             | 
| 39 | 
            +
                assert_file "app/javascript/channels/my_name_channel.js", /"MyNameChannel"/
         | 
| 40 | 
            +
                assert_no_file "app/javascript/controllers/my_name_controller.js"
         | 
| 41 | 
            +
              end
         | 
| 42 | 
            +
             | 
| 43 | 
            +
              test "should not generate stimulus controller if not requested" do
         | 
| 44 | 
            +
                run_generator ["comment", "--stream-for=comment", "--no-stimulus"]
         | 
| 45 | 
            +
             | 
| 46 | 
            +
                assert_file "app/channels/comment_channel.rb"
         | 
| 47 | 
            +
                assert_file "app/javascript/channels/comment_channel.js"
         | 
| 48 | 
            +
                assert_no_file "app/javascript/controllers/comment_controller.js"
         | 
| 49 | 
            +
              end
         | 
| 50 | 
            +
             | 
| 51 | 
            +
              test "should run the generator when streaming from identifier" do
         | 
| 52 | 
            +
                run_generator ["page", "--stream-from=page"]
         | 
| 53 | 
            +
             | 
| 54 | 
            +
                assert_file "app/channels/page_channel.rb" do |content|
         | 
| 55 | 
            +
                  assert_match(/PageChannel/, content)
         | 
| 56 | 
            +
                  assert_match(/stream_from\ "page"/, content)
         | 
| 57 | 
            +
                end
         | 
| 58 | 
            +
             | 
| 59 | 
            +
                assert_file "app/javascript/channels/page_channel.js" do |content|
         | 
| 60 | 
            +
                  assert_match(/"PageChannel"/, content)
         | 
| 61 | 
            +
                  assert_match(/import\ CableReady/, content)
         | 
| 62 | 
            +
                  assert_match(/if\ \(data\.cableReady\)\ CableReady\.perform\(data\.operations\)/, content)
         | 
| 63 | 
            +
                end
         | 
| 64 | 
            +
              end
         | 
| 65 | 
            +
             | 
| 66 | 
            +
              test "should run the generator when streaming without resource and different identifier" do
         | 
| 67 | 
            +
                run_generator ["my_page", "--stream-from=ThisIsMyPage"]
         | 
| 68 | 
            +
             | 
| 69 | 
            +
                assert_file "app/channels/my_page_channel.rb" do |content|
         | 
| 70 | 
            +
                  assert_match(/MyPageChannel/, content)
         | 
| 71 | 
            +
                  assert_match(/stream_from\ "this_is_my_page"/, content)
         | 
| 72 | 
            +
                end
         | 
| 73 | 
            +
             | 
| 74 | 
            +
                assert_file "app/javascript/channels/my_page_channel.js" do |content|
         | 
| 75 | 
            +
                  assert_match(/"MyPageChannel"/, content)
         | 
| 76 | 
            +
                  assert_match(/import\ CableReady/, content)
         | 
| 77 | 
            +
                  assert_match(/if\ \(data\.cableReady\)\ CableReady\.perform\(data\.operations\)/, content)
         | 
| 78 | 
            +
                end
         | 
| 79 | 
            +
              end
         | 
| 80 | 
            +
             | 
| 81 | 
            +
              test "should run the generator and use the NAME for --stream-from if nothing passed" do
         | 
| 82 | 
            +
                run_generator ["house", "--stream-from"]
         | 
| 83 | 
            +
             | 
| 84 | 
            +
                assert_file "app/channels/house_channel.rb" do |content|
         | 
| 85 | 
            +
                  assert_match(/HouseChannel/, content)
         | 
| 86 | 
            +
                  assert_match(/stream_from\ "house"/, content)
         | 
| 87 | 
            +
                end
         | 
| 88 | 
            +
             | 
| 89 | 
            +
                assert_file "app/javascript/channels/house_channel.js" do |content|
         | 
| 90 | 
            +
                  assert_match(/"HouseChannel"/, content)
         | 
| 91 | 
            +
                  assert_match(/import\ CableReady/, content)
         | 
| 92 | 
            +
                  assert_match(/if\ \(data\.cableReady\)\ CableReady\.perform\(data\.operations\)/, content)
         | 
| 93 | 
            +
                end
         | 
| 94 | 
            +
              end
         | 
| 95 | 
            +
             | 
| 96 | 
            +
              test "should run the generator and use the NAME for --stream-for if nothing passed" do
         | 
| 97 | 
            +
                run_generator ["option", "--stream-for", "--stimulus"]
         | 
| 98 | 
            +
             | 
| 99 | 
            +
                assert_file "app/channels/option_channel.rb" do |content|
         | 
| 100 | 
            +
                  assert_match(/class\ OptionChannel\ </, content)
         | 
| 101 | 
            +
                  assert_match(/stream_for\ Option\.find\(params\[:id\]\)/, content)
         | 
| 102 | 
            +
                end
         | 
| 103 | 
            +
             | 
| 104 | 
            +
                assert_file "app/javascript/channels/option_channel.js", /"OptionChannel"/
         | 
| 105 | 
            +
                assert_file "app/javascript/controllers/option_controller.js", /'OptionChannel'/
         | 
| 106 | 
            +
              end
         | 
| 107 | 
            +
             | 
| 108 | 
            +
              test "should run not generate anything if passed stream_from and stream_for" do
         | 
| 109 | 
            +
                assert_raises "Can't specify --stream-from and --stream-for at the same time" do
         | 
| 110 | 
            +
                  run_generator ["error", "--stream-from=1", "--stream-for=2"]
         | 
| 111 | 
            +
                end
         | 
| 112 | 
            +
              end
         | 
| 113 | 
            +
             | 
| 114 | 
            +
              # some tests without generator options to simulate the inputs passed via cli
         | 
| 115 | 
            +
             | 
| 116 | 
            +
              test "should generate channel with the same resource name and stimulus controller (without options)" do
         | 
| 117 | 
            +
                CableReady::ChannelGenerator.any_instance.stubs(:using_broadcast_to?).returns(true)
         | 
| 118 | 
            +
                CableReady::ChannelGenerator.any_instance.stubs(:resource).returns("Post")
         | 
| 119 | 
            +
                CableReady::ChannelGenerator.any_instance.stubs(:using_stimulus?).returns(true)
         | 
| 120 | 
            +
             | 
| 121 | 
            +
                run_generator ["post"]
         | 
| 122 | 
            +
             | 
| 123 | 
            +
                assert_file "app/channels/post_channel.rb" do |content|
         | 
| 124 | 
            +
                  assert_match(/class\ PostChannel\ </, content)
         | 
| 125 | 
            +
                  assert_match(/stream_for\ Post\.find\(params\[:id\]\)/, content)
         | 
| 126 | 
            +
                end
         | 
| 127 | 
            +
             | 
| 128 | 
            +
                assert_file "app/javascript/channels/post_channel.js", /PostChannel/
         | 
| 129 | 
            +
                assert_file "app/javascript/controllers/post_controller.js", /'PostChannel'/
         | 
| 130 | 
            +
              end
         | 
| 131 | 
            +
             | 
| 132 | 
            +
              test "should not generate stimulus controller if not requested (without options)" do
         | 
| 133 | 
            +
                CableReady::ChannelGenerator.any_instance.stubs(:using_broadcast_to?).returns(true)
         | 
| 134 | 
            +
                CableReady::ChannelGenerator.any_instance.stubs(:resource).returns("Admin")
         | 
| 135 | 
            +
                CableReady::ChannelGenerator.any_instance.stubs(:using_stimulus?).returns(false)
         | 
| 136 | 
            +
             | 
| 137 | 
            +
                run_generator ["admin"]
         | 
| 138 | 
            +
             | 
| 139 | 
            +
                assert_file "app/channels/admin_channel.rb"
         | 
| 140 | 
            +
                assert_file "app/javascript/channels/admin_channel.js"
         | 
| 141 | 
            +
                assert_no_file "app/javascript/controllers/admin_controller.js"
         | 
| 142 | 
            +
              end
         | 
| 143 | 
            +
             | 
| 144 | 
            +
              test "should run the generator when streaming from identifier (without options)" do
         | 
| 145 | 
            +
                CableReady::ChannelGenerator.any_instance.stubs(:using_broadcast_to?).returns(false)
         | 
| 146 | 
            +
                CableReady::ChannelGenerator.any_instance.stubs(:identifier).returns("index_identifier")
         | 
| 147 | 
            +
             | 
| 148 | 
            +
                run_generator ["index"]
         | 
| 149 | 
            +
             | 
| 150 | 
            +
                assert_file "app/channels/index_channel.rb" do |content|
         | 
| 151 | 
            +
                  assert_match(/IndexChannel/, content)
         | 
| 152 | 
            +
                  assert_match(/stream_from\ "index_identifier"/, content)
         | 
| 153 | 
            +
                end
         | 
| 154 | 
            +
             | 
| 155 | 
            +
                assert_file "app/javascript/channels/index_channel.js", /"IndexChannel"/
         | 
| 156 | 
            +
              end
         | 
| 157 | 
            +
            end
         | 
| @@ -0,0 +1,28 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module GeneratorTestHelpers
         | 
| 4 | 
            +
              def self.included(base)
         | 
| 5 | 
            +
                base.extend ClassMethods
         | 
| 6 | 
            +
              end
         | 
| 7 | 
            +
             | 
| 8 | 
            +
              module ClassMethods
         | 
| 9 | 
            +
                def sample_app_path
         | 
| 10 | 
            +
                  File.expand_path("../../tmp/dummy", __dir__)
         | 
| 11 | 
            +
                end
         | 
| 12 | 
            +
             | 
| 13 | 
            +
                def prepare_destination
         | 
| 14 | 
            +
                  FileUtils.rm_rf(sample_app_path) if Dir.exist?(sample_app_path)
         | 
| 15 | 
            +
                  FileUtils.mkdir_p(sample_app_path)
         | 
| 16 | 
            +
                end
         | 
| 17 | 
            +
             | 
| 18 | 
            +
                def create_sample_app
         | 
| 19 | 
            +
                  FileUtils.cd(sample_app_path) do
         | 
| 20 | 
            +
                    system "rails new . --minimal --skip-active-record --skip-test-unit --skip-spring --skip-bundle --quiet --force"
         | 
| 21 | 
            +
                  end
         | 
| 22 | 
            +
                end
         | 
| 23 | 
            +
             | 
| 24 | 
            +
                def remove_sample_app
         | 
| 25 | 
            +
                  FileUtils.rm_rf(destination_root)
         | 
| 26 | 
            +
                end
         | 
| 27 | 
            +
              end
         | 
| 28 | 
            +
            end
         | 
    
        data/test/test_helper.rb
    ADDED
    
    | @@ -0,0 +1,15 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            # Configure Rails Environment
         | 
| 4 | 
            +
            ENV["RAILS_ENV"] = "test"
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            require "mocha"
         | 
| 7 | 
            +
            require "rails"
         | 
| 8 | 
            +
            require "rails/generators"
         | 
| 9 | 
            +
            require "rails/test_help"
         | 
| 10 | 
            +
            require "minitest/mock"
         | 
| 11 | 
            +
            require "mocha/minitest"
         | 
| 12 | 
            +
            require "pry"
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            # Load support files
         | 
| 15 | 
            +
            Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].sort.each { |f| require f }
         | 
    
        data/yarn.lock
    CHANGED
    
    | @@ -17,23 +17,23 @@ | |
| 17 17 | 
             
                "@babel/highlight" "^7.8.3"
         | 
| 18 18 |  | 
| 19 19 | 
             
            "@babel/code-frame@^7.0.0":
         | 
| 20 | 
            -
              version "7. | 
| 21 | 
            -
              resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7. | 
| 22 | 
            -
              integrity sha512- | 
| 20 | 
            +
              version "7.12.13"
         | 
| 21 | 
            +
              resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
         | 
| 22 | 
            +
              integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==
         | 
| 23 23 | 
             
              dependencies:
         | 
| 24 | 
            -
                "@babel/highlight" "^7. | 
| 24 | 
            +
                "@babel/highlight" "^7.12.13"
         | 
| 25 25 |  | 
| 26 | 
            -
            "@babel/helper-validator-identifier@^7. | 
| 27 | 
            -
              version "7. | 
| 28 | 
            -
              resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7. | 
| 29 | 
            -
              integrity sha512- | 
| 26 | 
            +
            "@babel/helper-validator-identifier@^7.14.0":
         | 
| 27 | 
            +
              version "7.14.0"
         | 
| 28 | 
            +
              resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288"
         | 
| 29 | 
            +
              integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==
         | 
| 30 30 |  | 
| 31 | 
            -
            "@babel/highlight@^7. | 
| 32 | 
            -
              version "7. | 
| 33 | 
            -
              resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7. | 
| 34 | 
            -
              integrity sha512- | 
| 31 | 
            +
            "@babel/highlight@^7.12.13", "@babel/highlight@^7.8.3":
         | 
| 32 | 
            +
              version "7.14.0"
         | 
| 33 | 
            +
              resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf"
         | 
| 34 | 
            +
              integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==
         | 
| 35 35 | 
             
              dependencies:
         | 
| 36 | 
            -
                "@babel/helper-validator-identifier" "^7. | 
| 36 | 
            +
                "@babel/helper-validator-identifier" "^7.14.0"
         | 
| 37 37 | 
             
                chalk "^2.0.0"
         | 
| 38 38 | 
             
                js-tokens "^4.0.0"
         | 
| 39 39 |  | 
| @@ -43,9 +43,9 @@ | |
| 43 43 | 
             
              integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
         | 
| 44 44 |  | 
| 45 45 | 
             
            "@babel/runtime@^7.8.7":
         | 
| 46 | 
            -
              version "7. | 
| 47 | 
            -
              resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7. | 
| 48 | 
            -
              integrity sha512- | 
| 46 | 
            +
              version "7.14.0"
         | 
| 47 | 
            +
              resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6"
         | 
| 48 | 
            +
              integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==
         | 
| 49 49 | 
             
              dependencies:
         | 
| 50 50 | 
             
                regenerator-runtime "^0.13.4"
         | 
| 51 51 |  | 
| @@ -74,25 +74,25 @@ | |
| 74 74 | 
             
              resolved "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.3.tgz#f060bf6eaafae4d56a7dac618980838b0696e2ab"
         | 
| 75 75 | 
             
              integrity sha512-FmuxfCuolpLl0AnQ2NHSzoUKWEJDFl63qXjzdoWBVyFCXzMGm1spBzk7LeHNoVCiWCF7mRVms9e6jEV9+MoPbg==
         | 
| 76 76 |  | 
| 77 | 
            -
            "@nodelib/fs.scandir@2.1. | 
| 78 | 
            -
              version "2.1. | 
| 79 | 
            -
              resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1. | 
| 80 | 
            -
              integrity sha512- | 
| 77 | 
            +
            "@nodelib/fs.scandir@2.1.4":
         | 
| 78 | 
            +
              version "2.1.4"
         | 
| 79 | 
            +
              resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69"
         | 
| 80 | 
            +
              integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==
         | 
| 81 81 | 
             
              dependencies:
         | 
| 82 | 
            -
                "@nodelib/fs.stat" "2.0. | 
| 82 | 
            +
                "@nodelib/fs.stat" "2.0.4"
         | 
| 83 83 | 
             
                run-parallel "^1.1.9"
         | 
| 84 84 |  | 
| 85 | 
            -
            "@nodelib/fs.stat@2.0. | 
| 86 | 
            -
              version "2.0. | 
| 87 | 
            -
              resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0. | 
| 88 | 
            -
              integrity sha512- | 
| 85 | 
            +
            "@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2":
         | 
| 86 | 
            +
              version "2.0.4"
         | 
| 87 | 
            +
              resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz#a3f2dd61bab43b8db8fa108a121cfffe4c676655"
         | 
| 88 | 
            +
              integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==
         | 
| 89 89 |  | 
| 90 90 | 
             
            "@nodelib/fs.walk@^1.2.3":
         | 
| 91 | 
            -
              version "1.2. | 
| 92 | 
            -
              resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2. | 
| 93 | 
            -
              integrity sha512- | 
| 91 | 
            +
              version "1.2.6"
         | 
| 92 | 
            +
              resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz#cce9396b30aa5afe9e3756608f5831adcb53d063"
         | 
| 93 | 
            +
              integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==
         | 
| 94 94 | 
             
              dependencies:
         | 
| 95 | 
            -
                "@nodelib/fs.scandir" "2.1. | 
| 95 | 
            +
                "@nodelib/fs.scandir" "2.1.4"
         | 
| 96 96 | 
             
                fastq "^1.6.0"
         | 
| 97 97 |  | 
| 98 98 | 
             
            "@samverschueren/stream-to-observable@^0.3.0":
         | 
| @@ -111,14 +111,14 @@ | |
| 111 111 | 
             
                "@types/node" "*"
         | 
| 112 112 |  | 
| 113 113 | 
             
            "@types/minimatch@*":
         | 
| 114 | 
            -
              version "3.0. | 
| 115 | 
            -
              resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0. | 
| 116 | 
            -
              integrity sha512- | 
| 114 | 
            +
              version "3.0.4"
         | 
| 115 | 
            +
              resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21"
         | 
| 116 | 
            +
              integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==
         | 
| 117 117 |  | 
| 118 118 | 
             
            "@types/node@*":
         | 
| 119 | 
            -
              version " | 
| 120 | 
            -
              resolved "https://registry.yarnpkg.com/@types/node/-/node- | 
| 121 | 
            -
              integrity sha512- | 
| 119 | 
            +
              version "15.3.1"
         | 
| 120 | 
            +
              resolved "https://registry.yarnpkg.com/@types/node/-/node-15.3.1.tgz#23a06b87eedb524016616e886b116b8fdcb180af"
         | 
| 121 | 
            +
              integrity sha512-weaeiP4UF4XgF++3rpQhpIJWsCTS4QJw5gvBhQu6cFIxTwyxWIe3xbnrY/o2lTCQ0lsdb8YIUDUvLR4Vuz5rbw==
         | 
| 122 122 |  | 
| 123 123 | 
             
            "@types/unist@^2.0.0", "@types/unist@^2.0.2":
         | 
| 124 124 | 
             
              version "2.0.3"
         | 
| @@ -186,11 +186,11 @@ ansi-escapes@^3.0.0: | |
| 186 186 | 
             
              integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
         | 
| 187 187 |  | 
| 188 188 | 
             
            ansi-escapes@^4.2.1:
         | 
| 189 | 
            -
              version "4.3. | 
| 190 | 
            -
              resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3. | 
| 191 | 
            -
              integrity sha512- | 
| 189 | 
            +
              version "4.3.2"
         | 
| 190 | 
            +
              resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
         | 
| 191 | 
            +
              integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
         | 
| 192 192 | 
             
              dependencies:
         | 
| 193 | 
            -
                type-fest "^0. | 
| 193 | 
            +
                type-fest "^0.21.3"
         | 
| 194 194 |  | 
| 195 195 | 
             
            ansi-regex@^2.0.0:
         | 
| 196 196 | 
             
              version "2.1.1"
         | 
| @@ -281,9 +281,9 @@ bail@^1.0.0: | |
| 281 281 | 
             
              integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==
         | 
| 282 282 |  | 
| 283 283 | 
             
            balanced-match@^1.0.0:
         | 
| 284 | 
            -
              version "1.0. | 
| 285 | 
            -
              resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0. | 
| 286 | 
            -
              integrity  | 
| 284 | 
            +
              version "1.0.2"
         | 
| 285 | 
            +
              resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
         | 
| 286 | 
            +
              integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
         | 
| 287 287 |  | 
| 288 288 | 
             
            brace-expansion@^1.1.7:
         | 
| 289 289 | 
             
              version "1.1.11"
         | 
| @@ -358,9 +358,9 @@ chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: | |
| 358 358 | 
             
                supports-color "^5.3.0"
         | 
| 359 359 |  | 
| 360 360 | 
             
            chalk@^4.1.0:
         | 
| 361 | 
            -
              version "4.1. | 
| 362 | 
            -
              resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1. | 
| 363 | 
            -
              integrity sha512- | 
| 361 | 
            +
              version "4.1.1"
         | 
| 362 | 
            +
              resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
         | 
| 363 | 
            +
              integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
         | 
| 364 364 | 
             
              dependencies:
         | 
| 365 365 | 
             
                ansi-styles "^4.1.0"
         | 
| 366 366 | 
             
                supports-color "^7.1.0"
         | 
| @@ -701,9 +701,9 @@ esprima@^4.0.0: | |
| 701 701 | 
             
              integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
         | 
| 702 702 |  | 
| 703 703 | 
             
            esquery@^1.0.1:
         | 
| 704 | 
            -
              version "1. | 
| 705 | 
            -
              resolved "https://registry.yarnpkg.com/esquery/-/esquery-1. | 
| 706 | 
            -
              integrity sha512- | 
| 704 | 
            +
              version "1.4.0"
         | 
| 705 | 
            +
              resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
         | 
| 706 | 
            +
              integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
         | 
| 707 707 | 
             
              dependencies:
         | 
| 708 708 | 
             
                estraverse "^5.1.0"
         | 
| 709 709 |  | 
| @@ -764,9 +764,9 @@ fast-deep-equal@^3.1.1: | |
| 764 764 | 
             
              integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
         | 
| 765 765 |  | 
| 766 766 | 
             
            fast-glob@^3.0.3:
         | 
| 767 | 
            -
              version "3.2. | 
| 768 | 
            -
              resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2. | 
| 769 | 
            -
              integrity sha512- | 
| 767 | 
            +
              version "3.2.5"
         | 
| 768 | 
            +
              resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661"
         | 
| 769 | 
            +
              integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==
         | 
| 770 770 | 
             
              dependencies:
         | 
| 771 771 | 
             
                "@nodelib/fs.stat" "^2.0.2"
         | 
| 772 772 | 
             
                "@nodelib/fs.walk" "^1.2.3"
         | 
| @@ -786,9 +786,9 @@ fast-levenshtein@~2.0.6: | |
| 786 786 | 
             
              integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
         | 
| 787 787 |  | 
| 788 788 | 
             
            fastq@^1.6.0:
         | 
| 789 | 
            -
              version "1. | 
| 790 | 
            -
              resolved "https://registry.yarnpkg.com/fastq/-/fastq-1. | 
| 791 | 
            -
              integrity sha512- | 
| 789 | 
            +
              version "1.11.0"
         | 
| 790 | 
            +
              resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858"
         | 
| 791 | 
            +
              integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==
         | 
| 792 792 | 
             
              dependencies:
         | 
| 793 793 | 
             
                reusify "^1.0.4"
         | 
| 794 794 |  | 
| @@ -905,16 +905,16 @@ get-stream@^5.0.0: | |
| 905 905 | 
             
                pump "^3.0.0"
         | 
| 906 906 |  | 
| 907 907 | 
             
            glob-parent@^5.0.0, glob-parent@^5.1.0:
         | 
| 908 | 
            -
              version "5.1. | 
| 909 | 
            -
              resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1. | 
| 910 | 
            -
              integrity sha512- | 
| 908 | 
            +
              version "5.1.2"
         | 
| 909 | 
            +
              resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
         | 
| 910 | 
            +
              integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
         | 
| 911 911 | 
             
              dependencies:
         | 
| 912 912 | 
             
                is-glob "^4.0.1"
         | 
| 913 913 |  | 
| 914 914 | 
             
            glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
         | 
| 915 | 
            -
              version "7.1. | 
| 916 | 
            -
              resolved "https://registry.yarnpkg.com/glob/-/glob-7.1. | 
| 917 | 
            -
              integrity sha512- | 
| 915 | 
            +
              version "7.1.7"
         | 
| 916 | 
            +
              resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
         | 
| 917 | 
            +
              integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
         | 
| 918 918 | 
             
              dependencies:
         | 
| 919 919 | 
             
                fs.realpath "^1.0.0"
         | 
| 920 920 | 
             
                inflight "^1.0.4"
         | 
| @@ -956,9 +956,9 @@ globby@^10.0.1: | |
| 956 956 | 
             
                slash "^3.0.0"
         | 
| 957 957 |  | 
| 958 958 | 
             
            graceful-fs@^4.2.2:
         | 
| 959 | 
            -
              version "4.2. | 
| 960 | 
            -
              resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2. | 
| 961 | 
            -
              integrity sha512- | 
| 959 | 
            +
              version "4.2.6"
         | 
| 960 | 
            +
              resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
         | 
| 961 | 
            +
              integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==
         | 
| 962 962 |  | 
| 963 963 | 
             
            graphql@14.6.0:
         | 
| 964 964 | 
             
              version "14.6.0"
         | 
| @@ -968,9 +968,9 @@ graphql@14.6.0: | |
| 968 968 | 
             
                iterall "^1.2.2"
         | 
| 969 969 |  | 
| 970 970 | 
             
            handlebars@^4.0.13:
         | 
| 971 | 
            -
              version "4.7. | 
| 972 | 
            -
              resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7. | 
| 973 | 
            -
              integrity sha512- | 
| 971 | 
            +
              version "4.7.7"
         | 
| 972 | 
            +
              resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
         | 
| 973 | 
            +
              integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==
         | 
| 974 974 | 
             
              dependencies:
         | 
| 975 975 | 
             
                minimist "^1.2.5"
         | 
| 976 976 | 
             
                neo-async "^2.6.0"
         | 
| @@ -1047,9 +1047,9 @@ import-fresh@^2.0.0: | |
| 1047 1047 | 
             
                resolve-from "^3.0.0"
         | 
| 1048 1048 |  | 
| 1049 1049 | 
             
            import-fresh@^3.0.0:
         | 
| 1050 | 
            -
              version "3. | 
| 1051 | 
            -
              resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3. | 
| 1052 | 
            -
              integrity sha512- | 
| 1050 | 
            +
              version "3.3.0"
         | 
| 1051 | 
            +
              resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
         | 
| 1052 | 
            +
              integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
         | 
| 1053 1053 | 
             
              dependencies:
         | 
| 1054 1054 | 
             
                parent-module "^1.0.0"
         | 
| 1055 1055 | 
             
                resolve-from "^4.0.0"
         | 
| @@ -1203,9 +1203,9 @@ is-path-cwd@^2.2.0: | |
| 1203 1203 | 
             
              integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
         | 
| 1204 1204 |  | 
| 1205 1205 | 
             
            is-path-inside@^3.0.1:
         | 
| 1206 | 
            -
              version "3.0. | 
| 1207 | 
            -
              resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0. | 
| 1208 | 
            -
              integrity sha512 | 
| 1206 | 
            +
              version "3.0.3"
         | 
| 1207 | 
            +
              resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
         | 
| 1208 | 
            +
              integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
         | 
| 1209 1209 |  | 
| 1210 1210 | 
             
            is-plain-obj@^2.0.0:
         | 
| 1211 1211 | 
             
              version "2.1.0"
         | 
| @@ -1270,9 +1270,9 @@ js-tokens@^4.0.0: | |
| 1270 1270 | 
             
              integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
         | 
| 1271 1271 |  | 
| 1272 1272 | 
             
            js-yaml@^3.13.1:
         | 
| 1273 | 
            -
              version "3.14. | 
| 1274 | 
            -
              resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14. | 
| 1275 | 
            -
              integrity sha512 | 
| 1273 | 
            +
              version "3.14.1"
         | 
| 1274 | 
            +
              resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
         | 
| 1275 | 
            +
              integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
         | 
| 1276 1276 | 
             
              dependencies:
         | 
| 1277 1277 | 
             
                argparse "^1.0.7"
         | 
| 1278 1278 | 
             
                esprima "^4.0.0"
         | 
| @@ -1414,9 +1414,9 @@ lodash.uniqby@4.7.0: | |
| 1414 1414 | 
             
              integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=
         | 
| 1415 1415 |  | 
| 1416 1416 | 
             
            lodash@^4.17.14, lodash@^4.17.19:
         | 
| 1417 | 
            -
              version "4.17. | 
| 1418 | 
            -
              resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17. | 
| 1419 | 
            -
              integrity sha512- | 
| 1417 | 
            +
              version "4.17.21"
         | 
| 1418 | 
            +
              resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
         | 
| 1419 | 
            +
              integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
         | 
| 1420 1420 |  | 
| 1421 1421 | 
             
            log-symbols@^1.0.2:
         | 
| 1422 1422 | 
             
              version "1.0.2"
         | 
| @@ -1481,12 +1481,12 @@ merge2@^1.2.3, merge2@^1.3.0: | |
| 1481 1481 | 
             
              integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
         | 
| 1482 1482 |  | 
| 1483 1483 | 
             
            micromatch@^4.0.2:
         | 
| 1484 | 
            -
              version "4.0. | 
| 1485 | 
            -
              resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0. | 
| 1486 | 
            -
              integrity sha512- | 
| 1484 | 
            +
              version "4.0.4"
         | 
| 1485 | 
            +
              resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
         | 
| 1486 | 
            +
              integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
         | 
| 1487 1487 | 
             
              dependencies:
         | 
| 1488 1488 | 
             
                braces "^3.0.1"
         | 
| 1489 | 
            -
                picomatch "^2. | 
| 1489 | 
            +
                picomatch "^2.2.3"
         | 
| 1490 1490 |  | 
| 1491 1491 | 
             
            mimic-fn@^1.0.0:
         | 
| 1492 1492 | 
             
              version "1.2.0"
         | 
| @@ -1735,10 +1735,10 @@ path-type@^4.0.0: | |
| 1735 1735 | 
             
              resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
         | 
| 1736 1736 | 
             
              integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
         | 
| 1737 1737 |  | 
| 1738 | 
            -
            picomatch@^2. | 
| 1739 | 
            -
              version "2.2. | 
| 1740 | 
            -
              resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2. | 
| 1741 | 
            -
              integrity sha512- | 
| 1738 | 
            +
            picomatch@^2.2.1, picomatch@^2.2.3:
         | 
| 1739 | 
            +
              version "2.2.3"
         | 
| 1740 | 
            +
              resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d"
         | 
| 1741 | 
            +
              integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==
         | 
| 1742 1742 |  | 
| 1743 1743 | 
             
            pify@^2.0.0:
         | 
| 1744 1744 | 
             
              version "2.3.0"
         | 
| @@ -1930,6 +1930,11 @@ punycode@^2.1.0: | |
| 1930 1930 | 
             
              resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
         | 
| 1931 1931 | 
             
              integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
         | 
| 1932 1932 |  | 
| 1933 | 
            +
            queue-microtask@^1.2.2:
         | 
| 1934 | 
            +
              version "1.2.3"
         | 
| 1935 | 
            +
              resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
         | 
| 1936 | 
            +
              integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
         | 
| 1937 | 
            +
             | 
| 1933 1938 | 
             
            regenerator-runtime@^0.13.4:
         | 
| 1934 1939 | 
             
              version "0.13.7"
         | 
| 1935 1940 | 
             
              resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
         | 
| @@ -1980,11 +1985,6 @@ repeat-string@^1.5.4: | |
| 1980 1985 | 
             
              resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
         | 
| 1981 1986 | 
             
              integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
         | 
| 1982 1987 |  | 
| 1983 | 
            -
            replace-ext@1.0.0:
         | 
| 1984 | 
            -
              version "1.0.0"
         | 
| 1985 | 
            -
              resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
         | 
| 1986 | 
            -
              integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
         | 
| 1987 | 
            -
             | 
| 1988 1988 | 
             
            resolve-from@^3.0.0:
         | 
| 1989 1989 | 
             
              version "3.0.0"
         | 
| 1990 1990 | 
             
              resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
         | 
| @@ -2043,14 +2043,16 @@ run-async@^2.4.0: | |
| 2043 2043 | 
             
              integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
         | 
| 2044 2044 |  | 
| 2045 2045 | 
             
            run-parallel@^1.1.9:
         | 
| 2046 | 
            -
              version "1. | 
| 2047 | 
            -
              resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1. | 
| 2048 | 
            -
              integrity sha512- | 
| 2046 | 
            +
              version "1.2.0"
         | 
| 2047 | 
            +
              resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
         | 
| 2048 | 
            +
              integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
         | 
| 2049 | 
            +
              dependencies:
         | 
| 2050 | 
            +
                queue-microtask "^1.2.2"
         | 
| 2049 2051 |  | 
| 2050 2052 | 
             
            rxjs@^6.3.3, rxjs@^6.6.0:
         | 
| 2051 | 
            -
              version "6.6. | 
| 2052 | 
            -
              resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6. | 
| 2053 | 
            -
              integrity sha512- | 
| 2053 | 
            +
              version "6.6.7"
         | 
| 2054 | 
            +
              resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
         | 
| 2055 | 
            +
              integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
         | 
| 2054 2056 | 
             
              dependencies:
         | 
| 2055 2057 | 
             
                tslib "^1.9.0"
         | 
| 2056 2058 |  | 
| @@ -2109,9 +2111,9 @@ signal-exit@^3.0.2: | |
| 2109 2111 | 
             
              integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
         | 
| 2110 2112 |  | 
| 2111 2113 | 
             
            simple-html-tokenizer@^0.5.7:
         | 
| 2112 | 
            -
              version "0.5. | 
| 2113 | 
            -
              resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5. | 
| 2114 | 
            -
              integrity sha512- | 
| 2114 | 
            +
              version "0.5.11"
         | 
| 2115 | 
            +
              resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.11.tgz#4c5186083c164ba22a7b477b7687ac056ad6b1d9"
         | 
| 2116 | 
            +
              integrity sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og==
         | 
| 2115 2117 |  | 
| 2116 2118 | 
             
            slash@^3.0.0:
         | 
| 2117 2119 | 
             
              version "3.0.0"
         | 
| @@ -2157,7 +2159,7 @@ string-argv@^0.3.0: | |
| 2157 2159 | 
             
              resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
         | 
| 2158 2160 | 
             
              integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
         | 
| 2159 2161 |  | 
| 2160 | 
            -
            string-width@4.2.0 | 
| 2162 | 
            +
            string-width@4.2.0:
         | 
| 2161 2163 | 
             
              version "4.2.0"
         | 
| 2162 2164 | 
             
              resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
         | 
| 2163 2165 | 
             
              integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
         | 
| @@ -2192,6 +2194,15 @@ string-width@^3.0.0: | |
| 2192 2194 | 
             
                is-fullwidth-code-point "^2.0.0"
         | 
| 2193 2195 | 
             
                strip-ansi "^5.1.0"
         | 
| 2194 2196 |  | 
| 2197 | 
            +
            string-width@^4.1.0:
         | 
| 2198 | 
            +
              version "4.2.2"
         | 
| 2199 | 
            +
              resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
         | 
| 2200 | 
            +
              integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
         | 
| 2201 | 
            +
              dependencies:
         | 
| 2202 | 
            +
                emoji-regex "^8.0.0"
         | 
| 2203 | 
            +
                is-fullwidth-code-point "^3.0.0"
         | 
| 2204 | 
            +
                strip-ansi "^6.0.0"
         | 
| 2205 | 
            +
             | 
| 2195 2206 | 
             
            stringify-object@^3.3.0:
         | 
| 2196 2207 | 
             
              version "3.3.0"
         | 
| 2197 2208 | 
             
              resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
         | 
| @@ -2332,9 +2343,9 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: | |
| 2332 2343 | 
             
              integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
         | 
| 2333 2344 |  | 
| 2334 2345 | 
             
            tsutils@^3.17.1:
         | 
| 2335 | 
            -
              version "3. | 
| 2336 | 
            -
              resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3. | 
| 2337 | 
            -
              integrity sha512- | 
| 2346 | 
            +
              version "3.21.0"
         | 
| 2347 | 
            +
              resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
         | 
| 2348 | 
            +
              integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
         | 
| 2338 2349 | 
             
              dependencies:
         | 
| 2339 2350 | 
             
                tslib "^1.8.1"
         | 
| 2340 2351 |  | 
| @@ -2345,10 +2356,10 @@ type-check@~0.3.2: | |
| 2345 2356 | 
             
              dependencies:
         | 
| 2346 2357 | 
             
                prelude-ls "~1.1.2"
         | 
| 2347 2358 |  | 
| 2348 | 
            -
            type-fest@^0. | 
| 2349 | 
            -
              version "0. | 
| 2350 | 
            -
              resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0. | 
| 2351 | 
            -
              integrity sha512- | 
| 2359 | 
            +
            type-fest@^0.21.3:
         | 
| 2360 | 
            +
              version "0.21.3"
         | 
| 2361 | 
            +
              resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
         | 
| 2362 | 
            +
              integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
         | 
| 2352 2363 |  | 
| 2353 2364 | 
             
            type-fest@^0.8.1:
         | 
| 2354 2365 | 
             
              version "0.8.1"
         | 
| @@ -2356,9 +2367,9 @@ type-fest@^0.8.1: | |
| 2356 2367 | 
             
              integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
         | 
| 2357 2368 |  | 
| 2358 2369 | 
             
            uglify-js@^3.1.4:
         | 
| 2359 | 
            -
              version "3. | 
| 2360 | 
            -
              resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3. | 
| 2361 | 
            -
              integrity sha512- | 
| 2370 | 
            +
              version "3.13.7"
         | 
| 2371 | 
            +
              resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.7.tgz#25468a3b39b1c875df03f0937b2b7036a93f3fee"
         | 
| 2372 | 
            +
              integrity sha512-1Psi2MmnZJbnEsgJJIlfnd7tFlJfitusmR7zDI8lXlFI0ACD4/Rm/xdrU8bh6zF0i74aiVoBtkRiFulkrmh3AA==
         | 
| 2362 2373 |  | 
| 2363 2374 | 
             
            unherit@^1.0.4:
         | 
| 2364 2375 | 
             
              version "1.1.3"
         | 
| @@ -2432,16 +2443,16 @@ unist-util-visit@^1.1.0: | |
| 2432 2443 | 
             
                unist-util-visit-parents "^2.0.0"
         | 
| 2433 2444 |  | 
| 2434 2445 | 
             
            uri-js@^4.2.2:
         | 
| 2435 | 
            -
              version "4.4. | 
| 2436 | 
            -
              resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4. | 
| 2437 | 
            -
              integrity sha512- | 
| 2446 | 
            +
              version "4.4.1"
         | 
| 2447 | 
            +
              resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
         | 
| 2448 | 
            +
              integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
         | 
| 2438 2449 | 
             
              dependencies:
         | 
| 2439 2450 | 
             
                punycode "^2.1.0"
         | 
| 2440 2451 |  | 
| 2441 2452 | 
             
            v8-compile-cache@^2.0.3:
         | 
| 2442 | 
            -
              version "2. | 
| 2443 | 
            -
              resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2. | 
| 2444 | 
            -
              integrity sha512- | 
| 2453 | 
            +
              version "2.3.0"
         | 
| 2454 | 
            +
              resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
         | 
| 2455 | 
            +
              integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
         | 
| 2445 2456 |  | 
| 2446 2457 | 
             
            vfile-location@^2.0.0:
         | 
| 2447 2458 | 
             
              version "2.0.6"
         | 
| @@ -2457,13 +2468,12 @@ vfile-message@^2.0.0: | |
| 2457 2468 | 
             
                unist-util-stringify-position "^2.0.0"
         | 
| 2458 2469 |  | 
| 2459 2470 | 
             
            vfile@^4.0.0:
         | 
| 2460 | 
            -
              version "4.2. | 
| 2461 | 
            -
              resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2. | 
| 2462 | 
            -
              integrity sha512- | 
| 2471 | 
            +
              version "4.2.1"
         | 
| 2472 | 
            +
              resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624"
         | 
| 2473 | 
            +
              integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==
         | 
| 2463 2474 | 
             
              dependencies:
         | 
| 2464 2475 | 
             
                "@types/unist" "^2.0.0"
         | 
| 2465 2476 | 
             
                is-buffer "^2.0.0"
         | 
| 2466 | 
            -
                replace-ext "1.0.0"
         | 
| 2467 2477 | 
             
                unist-util-stringify-position "^2.0.0"
         | 
| 2468 2478 | 
             
                vfile-message "^2.0.0"
         | 
| 2469 2479 |  | 
| @@ -2547,6 +2557,6 @@ yaml@1.8.3: | |
| 2547 2557 | 
             
                "@babel/runtime" "^7.8.7"
         | 
| 2548 2558 |  | 
| 2549 2559 | 
             
            yaml@^1.7.1:
         | 
| 2550 | 
            -
              version "1.10. | 
| 2551 | 
            -
              resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10. | 
| 2552 | 
            -
              integrity sha512- | 
| 2560 | 
            +
              version "1.10.2"
         | 
| 2561 | 
            +
              resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
         | 
| 2562 | 
            +
              integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
         |