Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
5962ac37 1bf59887

+873 -765
-4
nixos/modules/virtualisation/qemu-vm.nix
··· 605 605 606 606 virtualisation.bootDevice = mkDefault (driveDeviceName 1); 607 607 608 - virtualisation.useEFIBoot = mkDefault 609 - (config.boot.loader.systemd-boot.enable || 610 - config.boot.loader.efi.canTouchEfiVariables); 611 - 612 608 virtualisation.pathsInNixDB = [ config.system.build.toplevel ]; 613 609 614 610 # FIXME: Consolidate this one day.
+2
nixos/tests/prometheus.nix
··· 36 36 nodes = { 37 37 prometheus = { pkgs, ... }: { 38 38 virtualisation.diskSize = 2 * 1024; 39 + virtualisation.memorySize = 2048; 39 40 environment.systemPackages = [ pkgs.jq ]; 40 41 networking.firewall.allowedTCPPorts = [ grpcPort ]; 41 42 services.prometheus = { ··· 132 133 133 134 store = { pkgs, ... }: { 134 135 virtualisation.diskSize = 2 * 1024; 136 + virtualisation.memorySize = 2048; 135 137 environment.systemPackages = with pkgs; [ jq thanos ]; 136 138 services.thanos.store = { 137 139 enable = true;
+4
nixos/tests/shadow.nix
··· 35 35 shadow.send_chars("emma\n") 36 36 shadow.wait_until_tty_matches(2, "login: emma") 37 37 shadow.wait_until_succeeds("pgrep login") 38 + shadow.sleep(2) 38 39 shadow.send_chars("${password1}\n") 39 40 shadow.send_chars("whoami > /tmp/1\n") 40 41 shadow.wait_for_file("/tmp/1") ··· 49 50 shadow.send_chars("emma\n") 50 51 shadow.wait_until_tty_matches(3, "login: emma") 51 52 shadow.wait_until_succeeds("pgrep login") 53 + shadow.sleep(2) 52 54 shadow.send_chars("${password1}\n") 53 55 shadow.send_chars("passwd\n") 54 56 shadow.sleep(2) ··· 66 68 shadow.send_chars("emma\n") 67 69 shadow.wait_until_tty_matches(4, "login: emma") 68 70 shadow.wait_until_succeeds("pgrep login") 71 + shadow.sleep(2) 69 72 shadow.send_chars("${password1}\n") 70 73 shadow.wait_until_tty_matches(4, "Login incorrect") 71 74 shadow.wait_until_tty_matches(4, "login:") 72 75 shadow.send_chars("emma\n") 73 76 shadow.wait_until_tty_matches(4, "login: emma") 74 77 shadow.wait_until_succeeds("pgrep login") 78 + shadow.sleep(2) 75 79 shadow.send_chars("${password3}\n") 76 80 shadow.send_chars("whoami > /tmp/2\n") 77 81 shadow.wait_for_file("/tmp/2")
+1
nixos/tests/systemd-boot.nix
··· 9 9 let 10 10 common = { 11 11 virtualisation.useBootLoader = true; 12 + virtualisation.useEFIBoot = true; 12 13 boot.loader.systemd-boot.enable = true; 13 14 boot.loader.efi.canTouchEfiVariables = true; 14 15 environment.systemPackages = [ pkgs.efibootmgr ];
+26 -19
pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix
··· 1 - { stdenv, fetchurl, config, makeWrapper 1 + { stdenv, lib, fetchurl, config, makeWrapper 2 2 , alsaLib 3 3 , at-spi2-atk 4 4 , atk 5 5 , cairo 6 + , coreutils 6 7 , cups 7 8 , curl 8 - , dbus-glib 9 9 , dbus 10 + , dbus-glib 10 11 , fontconfig 11 12 , freetype 12 13 , gdk-pixbuf 13 14 , glib 14 15 , glibc 16 + , gnome3 17 + , gnugrep 18 + , gnupg 19 + , gnused 20 + , gpgme 15 21 , gtk2 16 22 , gtk3 17 23 , kerberos 24 + , libcanberra 25 + , libGL 26 + , libGLU 18 27 , libX11 19 - , libXScrnSaver 28 + , libxcb 20 29 , libXcomposite 21 30 , libXcursor 22 31 , libXdamage ··· 25 34 , libXi 26 35 , libXinerama 27 36 , libXrender 37 + , libXScrnSaver 28 38 , libXt 29 - , libxcb 30 - , libcanberra 31 - , gnome3 32 - , libGLU, libGL 33 39 , nspr 34 40 , nss 35 41 , pango 42 + , runtimeShell 36 43 , writeScript 37 44 , xidel 38 - , coreutils 39 - , gnused 40 - , gnugrep 41 - , gnupg 42 - , runtimeShell 43 45 }: 44 46 45 47 # imports `version` and `sources` ··· 58 60 59 61 systemLocale = config.i18n.defaultLocale or "en-US"; 60 62 61 - defaultSource = stdenv.lib.findFirst (sourceMatches "en-US") {} sources; 63 + defaultSource = lib.findFirst (sourceMatches "en-US") {} sources; 62 64 63 - source = stdenv.lib.findFirst (sourceMatches systemLocale) defaultSource sources; 65 + source = lib.findFirst (sourceMatches systemLocale) defaultSource sources; 64 66 65 67 name = "thunderbird-bin-${version}"; 66 68 in ··· 75 77 76 78 phases = "unpackPhase installPhase"; 77 79 78 - libPath = stdenv.lib.makeLibraryPath 80 + libPath = lib.makeLibraryPath 79 81 [ stdenv.cc.cc 80 82 alsaLib 81 83 at-spi2-atk ··· 110 112 nspr 111 113 nss 112 114 pango 113 - ] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [ 115 + ] + ":" + lib.makeSearchPathOutput "lib" "lib64" [ 114 116 stdenv.cc.cc 115 117 ]; 116 118 ··· 118 120 119 121 nativeBuildInputs = [ makeWrapper ]; 120 122 123 + # See "Note on GPG support" in `../thunderbird/default.nix` for explanations 124 + # on adding `gnupg` and `gpgme` into PATH/LD_LIBRARY_PATH. 125 + 121 126 installPhase = 122 127 '' 123 128 mkdir -p "$prefix/usr/lib/thunderbird-bin-${version}" ··· 158 163 --suffix XDG_DATA_DIRS : "$XDG_ICON_DIRS" \ 159 164 --set SNAP_NAME "thunderbird" \ 160 165 --set MOZ_LEGACY_PROFILES 1 \ 161 - --set MOZ_ALLOW_DOWNGRADE 1 166 + --set MOZ_ALLOW_DOWNGRADE 1 \ 167 + --prefix PATH : "${lib.getBin gnupg}/bin" \ 168 + --prefix LD_LIBRARY_PATH : "${lib.getLib gpgme}/lib" 162 169 ''; 163 170 164 171 passthru.updateScript = import ./../../browsers/firefox-bin/update.nix { ··· 168 175 basePath = "pkgs/applications/networking/mailreaders/thunderbird-bin"; 169 176 baseUrl = "http://archive.mozilla.org/pub/thunderbird/releases/"; 170 177 }; 171 - meta = with stdenv.lib; { 178 + meta = with lib; { 172 179 description = "Mozilla Thunderbird, a full-featured email client (binary package)"; 173 180 homepage = "http://www.mozilla.org/thunderbird/"; 174 181 license = { 175 182 free = false; 176 183 url = "http://www.mozilla.org/en-US/foundation/trademarks/policy/"; 177 184 }; 178 - maintainers = with stdenv.lib.maintainers; [ ]; 185 + maintainers = with lib.maintainers; [ ]; 179 186 platforms = platforms.linux; 180 187 }; 181 188 }
+15 -2
pkgs/applications/networking/mailreaders/thunderbird/default.nix
··· 14 14 , freetype 15 15 , glib 16 16 , gnugrep 17 + , gnupg 17 18 , gnused 19 + , gpgme 18 20 , icu 19 21 , jemalloc 20 22 , lib 23 + , libevent 21 24 , libGL 22 25 , libGLU 23 - , libevent 24 26 , libjpeg 25 27 , libnotify 26 28 , libpng ··· 288 290 rm -rf $out/include $out/lib/thunderbird-devel-* $out/share/idl 289 291 ''; 290 292 293 + # Note on GPG support: 294 + # Thunderbird's native GPG support does not yet support smartcards. 295 + # The official upstream recommendation is to configure fall back to gnupg 296 + # using the Thunderbird config `mail.openpgp.allow_external_gnupg` 297 + # and GPG keys set up; instructions with pictures at: 298 + # https://anweshadas.in/how-to-use-yubikey-or-any-gpg-smartcard-in-thunderbird-78/ 299 + # For that to work out of the box, it requires `gnupg` on PATH and 300 + # `gpgme` in `LD_LIBRARY_PATH`; we do this below. 301 + 291 302 preFixup = '' 292 303 # Needed to find Mozilla runtime 293 304 gappsWrapperArgs+=( ··· 297 308 --set SNAP_NAME "thunderbird" 298 309 --set MOZ_LEGACY_PROFILES 1 299 310 --set MOZ_ALLOW_DOWNGRADE 1 311 + --prefix PATH : "${lib.getBin gnupg}/bin" 312 + --prefix LD_LIBRARY_PATH : "${lib.getLib gpgme}/lib" 300 313 ) 301 314 ''; 302 315 ··· 325 338 326 339 requiredSystemFeatures = [ "big-parallel" ]; 327 340 328 - meta = with stdenv.lib; { 341 + meta = with lib; { 329 342 description = "A full-featured e-mail client"; 330 343 homepage = "https://www.thunderbird.net"; 331 344 maintainers = with maintainers; [
+11 -10
pkgs/applications/science/astronomy/kstars/default.nix
··· 1 1 { 2 - stdenv, extra-cmake-modules, fetchurl, 2 + lib, mkDerivation, extra-cmake-modules, fetchurl, 3 3 4 4 kconfig, kdoctools, kguiaddons, ki18n, kinit, kiconthemes, kio, 5 - knewstuff, kplotting, kwidgetsaddons, kxmlgui, wrapQtAppsHook, 5 + knewstuff, kplotting, kwidgetsaddons, kxmlgui, knotifyconfig, 6 6 7 - qtx11extras, qtwebsockets, 7 + 8 + qtx11extras, qtwebsockets, qtkeychain, libsecret, 8 9 9 10 eigen, zlib, 10 11 11 - cfitsio, indilib, xplanet, libnova, gsl 12 + cfitsio, indilib, xplanet, libnova, libraw, gsl, wcslib 12 13 }: 13 14 14 - stdenv.mkDerivation rec { 15 + mkDerivation rec { 15 16 pname = "kstars"; 16 17 version = "3.4.3"; 17 18 ··· 24 25 ./indi-fix.patch 25 26 ]; 26 27 27 - nativeBuildInputs = [ extra-cmake-modules kdoctools wrapQtAppsHook ]; 28 + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 28 29 buildInputs = [ 29 30 kconfig kdoctools kguiaddons ki18n kinit kiconthemes kio 30 - knewstuff kplotting kwidgetsaddons kxmlgui 31 + knewstuff kplotting kwidgetsaddons kxmlgui knotifyconfig 31 32 32 - qtx11extras qtwebsockets 33 + qtx11extras qtwebsockets qtkeychain libsecret 33 34 34 35 eigen zlib 35 36 36 - cfitsio indilib xplanet libnova gsl 37 + cfitsio indilib xplanet libnova libraw gsl wcslib 37 38 ]; 38 39 39 40 cmakeFlags = [ 40 41 "-DINDI_NIX_ROOT=${indilib}" 41 42 ]; 42 43 43 - meta = with stdenv.lib; { 44 + meta = with lib; { 44 45 description = "Virtual planetarium astronomy software"; 45 46 homepage = "https://kde.org/applications/education/org.kde.kstars"; 46 47 longDescription = ''
+1
pkgs/applications/version-management/git-and-tools/default.nix
··· 201 201 202 202 gitui = callPackage ./gitui { 203 203 inherit (darwin.apple_sdk.frameworks) Security AppKit; 204 + inherit (pkgs) openssl perl; 204 205 }; 205 206 206 207 glab = callPackage ./glab { };
+7 -7
pkgs/applications/version-management/git-and-tools/gitui/default.nix
··· 1 - { stdenv, rustPlatform, fetchFromGitHub, libiconv, xorg, python3, Security, AppKit }: 1 + { stdenv, rustPlatform, fetchFromGitHub, libiconv, perl, python3, Security, AppKit, openssl, xclip }: 2 2 rustPlatform.buildRustPackage rec { 3 3 pname = "gitui"; 4 - version = "0.10.1"; 4 + version = "0.11.0"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "extrawurst"; 8 8 repo = pname; 9 9 rev = "v${version}"; 10 - sha256 = "1ifwbi6nydh66z6cprjmz2qvy9z52rj9jg2xf054i249gy955hah"; 10 + sha256 = "0yq98jslbac87zdzlwqc2kcd6hqy2wnza3l8n3asss1iaqcb0ilh"; 11 11 }; 12 12 13 - cargoSha256 = "1454dn7k1fc4yxhbcmx0z3hj9d9srnlc2k1qp707h1vq46ib1rsf"; 13 + cargoSha256 = "16riggrhk1f6lg8y46wn89ab5b1iz6lw00ngid20x4z32d2ww70f"; 14 14 15 - nativeBuildInputs = [ python3 ]; 16 - buildInputs = [ ] 17 - ++ stdenv.lib.optional stdenv.isLinux xorg.libxcb 15 + nativeBuildInputs = [ python3 perl ]; 16 + buildInputs = [ openssl ] 17 + ++ stdenv.lib.optional stdenv.isLinux xclip 18 18 ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Security AppKit ]; 19 19 20 20 meta = with stdenv.lib; {
+3 -2
pkgs/development/python-modules/acme/default.nix
··· 1 1 { buildPythonPackage 2 2 , certbot 3 - , pytest 4 3 , cryptography 5 4 , pyasn1 6 5 , pyopenssl ··· 25 24 werkzeug mock ndg-httpsclient josepy 26 25 ]; 27 26 28 - checkInputs = [ pytest ]; 27 + # does not contain any tests 28 + doCheck = false; 29 + pythonImportsCheck = [ "acme" ]; 29 30 30 31 sourceRoot = "source/${pname}"; 31 32
+2 -2
pkgs/development/python-modules/boto3/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "boto3"; 16 - version = "1.16.42"; # N.B: if you change this, change botocore too 16 + version = "1.16.43"; # N.B: if you change this, change botocore too 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "sha256-ko5z9R9xRpobDOrR+7N/MERX7FRACDPALAwyjmRYH+o="; 20 + sha256 = "sha256-pJs6tL+i9jlLpgFlz8RoQQeX3UEPMu7UfiL2FFHumG4="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
+2 -2
pkgs/development/python-modules/botocore/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "botocore"; 15 - version = "1.19.42"; # N.B: if you change this, change boto3 and awscli to a matching version 15 + version = "1.19.43"; # N.B: if you change this, change boto3 and awscli to a matching version 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "sha256-8LBx/Qj01y17osVH2lKavr4FJwXBWVvm0SohUadaYCk="; 19 + sha256 = "sha256-c5jJANvU49YWRyaSFTluo+gIL0lPPntl2basoEnB1GM="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/casbin/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "casbin"; 11 - version = "0.13.0"; 11 + version = "0.14.0"; 12 12 13 13 disabled = isPy27; 14 14 ··· 16 16 owner = pname; 17 17 repo = "pycasbin"; 18 18 rev = "v${version}"; 19 - sha256 = "1im5j3wsjh916v2mp1bfi53m6k6w9s3sr5ja4anrz4b9izc65m0j"; 19 + sha256 = "0k5dhhlypilpa7h6ncqldvc14bv70c8mb2bbj7vyzfwahy57zb29"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/seaborn/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "seaborn"; 12 - version = "0.11.0"; 12 + version = "0.11.1"; 13 13 disabled = pythonOlder "3.6"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - sha256 = "390f8437b14f5ce845062f2865ad51656464c306d09bb97d7764c6cba1dd607c"; 17 + sha256 = "44e78eaed937c5a87fc7a892c329a7cc091060b67ebd1d0d306b446a74ba01ad"; 18 18 }; 19 19 20 20 checkInputs = [ nose ];
+2 -2
pkgs/development/python-modules/tqdm/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "tqdm"; 14 - version = "4.54.0"; 14 + version = "4.54.1"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "5c0d04e06ccc0da1bd3fa5ae4550effcce42fcad947b4a6cafa77bdc9b09ff22"; 18 + sha256 = "1x9chlh3msikddmq8p8p5s5kgqqs48bclxgzz3vb9ygcwjimidiq"; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/development/tools/coursier/default.nix
··· 2 2 , coreutils, git, gnused, nix, nixfmt }: 3 3 4 4 let 5 - version = "2.0.7"; 5 + version = "2.0.8"; 6 6 7 7 zshCompletion = fetchurl { 8 8 url = ··· 19 19 src = fetchurl { 20 20 url = 21 21 "https://github.com/coursier/coursier/releases/download/v${version}/coursier"; 22 - sha256 = "1m6b12cqbwsk4xf2r79y51154j6ws6f0kiw1yj57gylw7pjkgfnk"; 22 + sha256 = "sha256-7dNJUMZu6YY3076cnjWHRisJZVn1NPRH1VC+cJjfI/8="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ makeWrapper ];
+14 -4
pkgs/servers/monitoring/prometheus/default.nix
··· 1 - { stdenv, lib, go, buildGoPackage, fetchFromGitHub, mkYarnPackage, nixosTests }: 1 + { stdenv, lib, go, buildGoPackage, fetchFromGitHub, mkYarnPackage, nixosTests 2 + , fetchpatch 3 + }: 2 4 3 5 let 4 - version = "2.22.2"; 6 + version = "2.23.0"; 5 7 6 8 src = fetchFromGitHub { 7 9 rev = "v${version}"; 8 10 owner = "prometheus"; 9 11 repo = "prometheus"; 10 - sha256 = "04pf3shdfd25wf8snkan5hzv1gjzazjw06i11xaamnc8gfahnzdv"; 12 + sha256 = "sha256-UQ1r8271EiZDU/h2zta6toMRfk2GjXol8GexYL9n+BE="; 11 13 }; 12 14 13 15 webui = mkYarnPackage { ··· 29 31 30 32 goPackagePath = "github.com/prometheus/prometheus"; 31 33 34 + patches = [ 35 + # Fix https://github.com/prometheus/prometheus/issues/8144 36 + (fetchpatch { 37 + url = "https://github.com/prometheus/prometheus/commit/8b64b70fe4a5aa2877c95aa12c6798b12d3ff7ec.patch"; 38 + sha256 = "sha256-RuXT5pBXv8z6WoE59KNGh+OXr1KGLGWs/n0Hjf4BuH8="; 39 + }) 40 + ]; 41 + 32 42 postPatch = '' 33 43 ln -s ${webui.node_modules} web/ui/react-app/node_modules 34 44 ln -s ${webui} web/ui/static/react 35 45 ''; 36 46 47 + buildFlags = "-tags=builtinassets"; 37 48 buildFlagsArray = let 38 49 t = "${goPackagePath}/vendor/github.com/prometheus/common/version"; 39 50 in [ 40 - "-tags=builtinassets" 41 51 '' 42 52 -ldflags= 43 53 -X ${t}.Version=${version}
+728 -680
pkgs/servers/monitoring/prometheus/webui-yarndeps.nix
··· 18 18 }; 19 19 } 20 20 { 21 - name = "_babel_compat_data___compat_data_7.11.0.tgz"; 21 + name = "_babel_compat_data___compat_data_7.12.5.tgz"; 22 22 path = fetchurl { 23 - name = "_babel_compat_data___compat_data_7.11.0.tgz"; 24 - url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz"; 25 - sha1 = "e9f73efe09af1355b723a7f39b11bad637d7c99c"; 23 + name = "_babel_compat_data___compat_data_7.12.5.tgz"; 24 + url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.5.tgz"; 25 + sha1 = "f56db0c4bb1bbbf221b4e81345aab4141e7cb0e9"; 26 26 }; 27 27 } 28 28 { ··· 34 34 }; 35 35 } 36 36 { 37 - name = "_babel_core___core_7.11.6.tgz"; 37 + name = "_babel_core___core_7.12.3.tgz"; 38 38 path = fetchurl { 39 - name = "_babel_core___core_7.11.6.tgz"; 40 - url = "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz"; 41 - sha1 = "3a9455dc7387ff1bac45770650bc13ba04a15651"; 39 + name = "_babel_core___core_7.12.3.tgz"; 40 + url = "https://registry.yarnpkg.com/@babel/core/-/core-7.12.3.tgz"; 41 + sha1 = "1b436884e1e3bff6fb1328dc02b208759de92ad8"; 42 42 }; 43 43 } 44 44 { 45 - name = "_babel_generator___generator_7.11.6.tgz"; 45 + name = "_babel_generator___generator_7.12.5.tgz"; 46 46 path = fetchurl { 47 - name = "_babel_generator___generator_7.11.6.tgz"; 48 - url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.6.tgz"; 49 - sha1 = "b868900f81b163b4d464ea24545c61cbac4dc620"; 47 + name = "_babel_generator___generator_7.12.5.tgz"; 48 + url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz"; 49 + sha1 = "a2c50de5c8b6d708ab95be5e6053936c1884a4de"; 50 50 }; 51 51 } 52 52 { ··· 66 66 }; 67 67 } 68 68 { 69 - name = "_babel_helper_builder_react_jsx_experimental___helper_builder_react_jsx_experimental_7.11.5.tgz"; 69 + name = "_babel_helper_builder_react_jsx_experimental___helper_builder_react_jsx_experimental_7.12.4.tgz"; 70 70 path = fetchurl { 71 - name = "_babel_helper_builder_react_jsx_experimental___helper_builder_react_jsx_experimental_7.11.5.tgz"; 72 - url = "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.11.5.tgz"; 73 - sha1 = "4ea43dd63857b0a35cd1f1b161dc29b43414e79f"; 71 + name = "_babel_helper_builder_react_jsx_experimental___helper_builder_react_jsx_experimental_7.12.4.tgz"; 72 + url = "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz"; 73 + sha1 = "55fc1ead5242caa0ca2875dcb8eed6d311e50f48"; 74 74 }; 75 75 } 76 76 { ··· 82 82 }; 83 83 } 84 84 { 85 - name = "_babel_helper_compilation_targets___helper_compilation_targets_7.10.4.tgz"; 85 + name = "_babel_helper_compilation_targets___helper_compilation_targets_7.12.5.tgz"; 86 86 path = fetchurl { 87 - name = "_babel_helper_compilation_targets___helper_compilation_targets_7.10.4.tgz"; 88 - url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz"; 89 - sha1 = "804ae8e3f04376607cc791b9d47d540276332bd2"; 87 + name = "_babel_helper_compilation_targets___helper_compilation_targets_7.12.5.tgz"; 88 + url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz"; 89 + sha1 = "cb470c76198db6a24e9dbc8987275631e5d29831"; 90 90 }; 91 91 } 92 92 { 93 - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.10.5.tgz"; 93 + name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.12.1.tgz"; 94 94 path = fetchurl { 95 - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.10.5.tgz"; 96 - url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz"; 97 - sha1 = "9f61446ba80e8240b0a5c85c6fdac8459d6f259d"; 95 + name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.12.1.tgz"; 96 + url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz"; 97 + sha1 = "3c45998f431edd4a9214c5f1d3ad1448a6137f6e"; 98 98 }; 99 99 } 100 100 { 101 - name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.10.4.tgz"; 101 + name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.12.1.tgz"; 102 102 path = fetchurl { 103 - name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.10.4.tgz"; 104 - url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz"; 105 - sha1 = "fdd60d88524659a0b6959c0579925e425714f3b8"; 103 + name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.12.1.tgz"; 104 + url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz"; 105 + sha1 = "18b1302d4677f9dc4740fe8c9ed96680e29d37e8"; 106 106 }; 107 107 } 108 108 { ··· 114 114 }; 115 115 } 116 116 { 117 - name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.11.4.tgz"; 117 + name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.12.1.tgz"; 118 118 path = fetchurl { 119 - name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.11.4.tgz"; 120 - url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz"; 121 - sha1 = "2d8e3470252cc17aba917ede7803d4a7a276a41b"; 119 + name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.12.1.tgz"; 120 + url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz"; 121 + sha1 = "8006a466695c4ad86a2a5f2fb15b5f2c31ad5633"; 122 122 }; 123 123 } 124 124 { ··· 146 146 }; 147 147 } 148 148 { 149 - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.11.0.tgz"; 149 + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.1.tgz"; 150 150 path = fetchurl { 151 - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.11.0.tgz"; 152 - url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz"; 153 - sha1 = "ae69c83d84ee82f4b42f96e2a09410935a8f26df"; 151 + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.1.tgz"; 152 + url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz"; 153 + sha1 = "fba0f2fcff3fba00e6ecb664bb5e6e26e2d6165c"; 154 154 }; 155 155 } 156 156 { 157 - name = "_babel_helper_module_imports___helper_module_imports_7.10.4.tgz"; 157 + name = "_babel_helper_module_imports___helper_module_imports_7.12.5.tgz"; 158 158 path = fetchurl { 159 - name = "_babel_helper_module_imports___helper_module_imports_7.10.4.tgz"; 160 - url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz"; 161 - sha1 = "4c5c54be04bd31670a7382797d75b9fa2e5b5620"; 159 + name = "_babel_helper_module_imports___helper_module_imports_7.12.5.tgz"; 160 + url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz"; 161 + sha1 = "1bfc0229f794988f76ed0a4d4e90860850b54dfb"; 162 162 }; 163 163 } 164 164 { 165 - name = "_babel_helper_module_transforms___helper_module_transforms_7.11.0.tgz"; 165 + name = "_babel_helper_module_transforms___helper_module_transforms_7.12.1.tgz"; 166 166 path = fetchurl { 167 - name = "_babel_helper_module_transforms___helper_module_transforms_7.11.0.tgz"; 168 - url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz"; 169 - sha1 = "b16f250229e47211abdd84b34b64737c2ab2d359"; 167 + name = "_babel_helper_module_transforms___helper_module_transforms_7.12.1.tgz"; 168 + url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz"; 169 + sha1 = "7954fec71f5b32c48e4b303b437c34453fd7247c"; 170 170 }; 171 171 } 172 172 { ··· 194 194 }; 195 195 } 196 196 { 197 - name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.11.4.tgz"; 197 + name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.12.1.tgz"; 198 198 path = fetchurl { 199 - name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.11.4.tgz"; 200 - url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz"; 201 - sha1 = "4474ea9f7438f18575e30b0cac784045b402a12d"; 199 + name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.12.1.tgz"; 200 + url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz"; 201 + sha1 = "8c4dbbf916314f6047dc05e6a2217074238347fd"; 202 202 }; 203 203 } 204 204 { 205 - name = "_babel_helper_replace_supers___helper_replace_supers_7.10.4.tgz"; 205 + name = "_babel_helper_replace_supers___helper_replace_supers_7.12.5.tgz"; 206 206 path = fetchurl { 207 - name = "_babel_helper_replace_supers___helper_replace_supers_7.10.4.tgz"; 208 - url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz"; 209 - sha1 = "d585cd9388ea06e6031e4cd44b6713cbead9e6cf"; 207 + name = "_babel_helper_replace_supers___helper_replace_supers_7.12.5.tgz"; 208 + url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz"; 209 + sha1 = "f009a17543bbbbce16b06206ae73b63d3fca68d9"; 210 210 }; 211 211 } 212 212 { 213 - name = "_babel_helper_simple_access___helper_simple_access_7.10.4.tgz"; 213 + name = "_babel_helper_simple_access___helper_simple_access_7.12.1.tgz"; 214 214 path = fetchurl { 215 - name = "_babel_helper_simple_access___helper_simple_access_7.10.4.tgz"; 216 - url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz"; 217 - sha1 = "0f5ccda2945277a2a7a2d3a821e15395edcf3461"; 215 + name = "_babel_helper_simple_access___helper_simple_access_7.12.1.tgz"; 216 + url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz"; 217 + sha1 = "32427e5aa61547d38eb1e6eaf5fd1426fdad9136"; 218 218 }; 219 219 } 220 220 { 221 - name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.11.0.tgz"; 221 + name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.12.1.tgz"; 222 222 path = fetchurl { 223 - name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.11.0.tgz"; 224 - url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz"; 225 - sha1 = "eec162f112c2f58d3af0af125e3bb57665146729"; 223 + name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.12.1.tgz"; 224 + url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz"; 225 + sha1 = "462dc63a7e435ade8468385c63d2b84cce4b3cbf"; 226 226 }; 227 227 } 228 228 { ··· 242 242 }; 243 243 } 244 244 { 245 - name = "_babel_helper_wrap_function___helper_wrap_function_7.10.4.tgz"; 245 + name = "_babel_helper_validator_option___helper_validator_option_7.12.1.tgz"; 246 246 path = fetchurl { 247 - name = "_babel_helper_wrap_function___helper_wrap_function_7.10.4.tgz"; 248 - url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz"; 249 - sha1 = "8a6f701eab0ff39f765b5a1cfef409990e624b87"; 247 + name = "_babel_helper_validator_option___helper_validator_option_7.12.1.tgz"; 248 + url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz"; 249 + sha1 = "175567380c3e77d60ff98a54bb015fe78f2178d9"; 250 250 }; 251 251 } 252 252 { 253 - name = "_babel_helpers___helpers_7.10.4.tgz"; 253 + name = "_babel_helper_wrap_function___helper_wrap_function_7.12.3.tgz"; 254 254 path = fetchurl { 255 - name = "_babel_helpers___helpers_7.10.4.tgz"; 256 - url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz"; 257 - sha1 = "2abeb0d721aff7c0a97376b9e1f6f65d7a475044"; 255 + name = "_babel_helper_wrap_function___helper_wrap_function_7.12.3.tgz"; 256 + url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz"; 257 + sha1 = "3332339fc4d1fbbf1c27d7958c27d34708e990d9"; 258 + }; 259 + } 260 + { 261 + name = "_babel_helpers___helpers_7.12.5.tgz"; 262 + path = fetchurl { 263 + name = "_babel_helpers___helpers_7.12.5.tgz"; 264 + url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz"; 265 + sha1 = "1a1ba4a768d9b58310eda516c449913fe647116e"; 258 266 }; 259 267 } 260 268 { ··· 266 274 }; 267 275 } 268 276 { 269 - name = "_babel_parser___parser_7.11.5.tgz"; 277 + name = "_babel_parser___parser_7.12.5.tgz"; 270 278 path = fetchurl { 271 - name = "_babel_parser___parser_7.11.5.tgz"; 272 - url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz"; 273 - sha1 = "c7ff6303df71080ec7a4f5b8c003c58f1cf51037"; 279 + name = "_babel_parser___parser_7.12.5.tgz"; 280 + url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.5.tgz"; 281 + sha1 = "b4af32ddd473c0bfa643bd7ff0728b8e71b81ea0"; 274 282 }; 275 283 } 276 284 { 277 - name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.10.5.tgz"; 285 + name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.12.1.tgz"; 278 286 path = fetchurl { 279 - name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.10.5.tgz"; 280 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz"; 281 - sha1 = "3491cabf2f7c179ab820606cec27fed15e0e8558"; 287 + name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.12.1.tgz"; 288 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz"; 289 + sha1 = "dc6c1170e27d8aca99ff65f4925bd06b1c90550e"; 282 290 }; 283 291 } 284 292 { ··· 290 298 }; 291 299 } 292 300 { 293 - name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.10.4.tgz"; 301 + name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.12.1.tgz"; 294 302 path = fetchurl { 295 - name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.10.4.tgz"; 296 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz"; 297 - sha1 = "a33bf632da390a59c7a8c570045d1115cd778807"; 303 + name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.12.1.tgz"; 304 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz"; 305 + sha1 = "a082ff541f2a29a4821065b8add9346c0c16e5de"; 298 306 }; 299 307 } 300 308 { ··· 306 314 }; 307 315 } 308 316 { 309 - name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.10.4.tgz"; 317 + name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.12.1.tgz"; 310 318 path = fetchurl { 311 - name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.10.4.tgz"; 312 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz"; 313 - sha1 = "ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e"; 319 + name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.12.1.tgz"; 320 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz"; 321 + sha1 = "43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc"; 314 322 }; 315 323 } 316 324 { 317 - name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.10.4.tgz"; 325 + name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.12.1.tgz"; 318 326 path = fetchurl { 319 - name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.10.4.tgz"; 320 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz"; 321 - sha1 = "570d883b91031637b3e2958eea3c438e62c05f54"; 327 + name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.12.1.tgz"; 328 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz"; 329 + sha1 = "8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4"; 322 330 }; 323 331 } 324 332 { 325 - name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.10.4.tgz"; 333 + name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.12.1.tgz"; 326 334 path = fetchurl { 327 - name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.10.4.tgz"; 328 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz"; 329 - sha1 = "593e59c63528160233bd321b1aebe0820c2341db"; 335 + name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.12.1.tgz"; 336 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz"; 337 + sha1 = "d45423b517714eedd5621a9dfdc03fa9f4eb241c"; 330 338 }; 331 339 } 332 340 { 333 - name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.11.0.tgz"; 341 + name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.12.1.tgz"; 334 342 path = fetchurl { 335 - name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.11.0.tgz"; 336 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz"; 337 - sha1 = "9f80e482c03083c87125dee10026b58527ea20c8"; 343 + name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.12.1.tgz"; 344 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz"; 345 + sha1 = "f2c490d36e1b3c9659241034a5d2cd50263a2751"; 338 346 }; 339 347 } 340 348 { ··· 346 354 }; 347 355 } 348 356 { 349 - name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.10.4.tgz"; 357 + name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.12.1.tgz"; 350 358 path = fetchurl { 351 - name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.10.4.tgz"; 352 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz"; 353 - sha1 = "02a7e961fc32e6d5b2db0649e01bf80ddee7e04a"; 359 + name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.12.1.tgz"; 360 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz"; 361 + sha1 = "3ed4fff31c015e7f3f1467f190dbe545cd7b046c"; 354 362 }; 355 363 } 356 364 { ··· 362 370 }; 363 371 } 364 372 { 365 - name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.10.4.tgz"; 373 + name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.12.5.tgz"; 366 374 path = fetchurl { 367 - name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.10.4.tgz"; 368 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz"; 369 - sha1 = "ce1590ff0a65ad12970a609d78855e9a4c1aef06"; 375 + name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.12.5.tgz"; 376 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz"; 377 + sha1 = "b1ce757156d40ed79d59d467cb2b154a5c4149ba"; 370 378 }; 371 379 } 372 380 { 373 - name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.11.0.tgz"; 381 + name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.12.1.tgz"; 374 382 path = fetchurl { 375 - name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.11.0.tgz"; 376 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz"; 377 - sha1 = "bd81f95a1f746760ea43b6c2d3d62b11790ad0af"; 383 + name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.12.1.tgz"; 384 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz"; 385 + sha1 = "def9bd03cea0f9b72283dac0ec22d289c7691069"; 378 386 }; 379 387 } 380 388 { 381 - name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.10.4.tgz"; 389 + name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.12.1.tgz"; 382 390 path = fetchurl { 383 - name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.10.4.tgz"; 384 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz"; 385 - sha1 = "31c938309d24a78a49d68fdabffaa863758554dd"; 391 + name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.12.1.tgz"; 392 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz"; 393 + sha1 = "ccc2421af64d3aae50b558a71cede929a5ab2942"; 386 394 }; 387 395 } 388 396 { ··· 394 402 }; 395 403 } 396 404 { 397 - name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.11.0.tgz"; 405 + name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.12.1.tgz"; 398 406 path = fetchurl { 399 - name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.11.0.tgz"; 400 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz"; 401 - sha1 = "de5866d0646f6afdaab8a566382fe3a221755076"; 407 + name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.12.1.tgz"; 408 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz"; 409 + sha1 = "cce122203fc8a32794296fc377c6dedaf4363797"; 402 410 }; 403 411 } 404 412 { 405 - name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.10.4.tgz"; 413 + name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.12.1.tgz"; 406 414 path = fetchurl { 407 - name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.10.4.tgz"; 408 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz"; 409 - sha1 = "b160d972b8fdba5c7d111a145fc8c421fc2a6909"; 415 + name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.12.1.tgz"; 416 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz"; 417 + sha1 = "86814f6e7a21374c980c10d38b4493e703f4a389"; 410 418 }; 411 419 } 412 420 { 413 - name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.10.4.tgz"; 421 + name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.1.tgz"; 414 422 path = fetchurl { 415 - name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.10.4.tgz"; 416 - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz"; 417 - sha1 = "4483cda53041ce3413b7fe2f00022665ddfaa75d"; 423 + name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.1.tgz"; 424 + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz"; 425 + sha1 = "2a183958d417765b9eae334f47758e5d6a82e072"; 418 426 }; 419 427 } 420 428 { ··· 426 434 }; 427 435 } 428 436 { 429 - name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.10.4.tgz"; 437 + name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.1.tgz"; 430 438 path = fetchurl { 431 - name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.10.4.tgz"; 432 - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz"; 433 - sha1 = "6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c"; 439 + name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.1.tgz"; 440 + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz"; 441 + sha1 = "bcb297c5366e79bebadef509549cd93b04f19978"; 434 442 }; 435 443 } 436 444 { 437 - name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.10.4.tgz"; 445 + name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.12.1.tgz"; 438 446 path = fetchurl { 439 - name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.10.4.tgz"; 440 - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.10.4.tgz"; 441 - sha1 = "6853085b2c429f9d322d02f5a635018cdeb2360c"; 447 + name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.12.1.tgz"; 448 + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.1.tgz"; 449 + sha1 = "81a8b535b284476c41be6de06853a8802b98c5dd"; 442 450 }; 443 451 } 444 452 { ··· 458 466 }; 459 467 } 460 468 { 461 - name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.10.4.tgz"; 469 + name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.12.1.tgz"; 462 470 path = fetchurl { 463 - name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.10.4.tgz"; 464 - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.10.4.tgz"; 465 - sha1 = "53351dd7ae01995e567d04ce42af1a6e0ba846a6"; 471 + name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.12.1.tgz"; 472 + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.1.tgz"; 473 + sha1 = "a77670d9abe6d63e8acadf4c31bb1eb5a506bbdd"; 466 474 }; 467 475 } 468 476 { ··· 474 482 }; 475 483 } 476 484 { 477 - name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.10.4.tgz"; 485 + name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.1.tgz"; 478 486 path = fetchurl { 479 - name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.10.4.tgz"; 480 - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz"; 481 - sha1 = "39abaae3cbf710c4373d8429484e6ba21340166c"; 487 + name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.1.tgz"; 488 + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz"; 489 + sha1 = "9d9d357cc818aa7ae7935917c1257f67677a0926"; 482 490 }; 483 491 } 484 492 { ··· 530 538 }; 531 539 } 532 540 { 533 - name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.10.4.tgz"; 541 + name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.1.tgz"; 534 542 path = fetchurl { 535 - name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.10.4.tgz"; 536 - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz"; 537 - sha1 = "4bbeb8917b54fcf768364e0a81f560e33a3ef57d"; 543 + name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.1.tgz"; 544 + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz"; 545 + sha1 = "dd6c0b357ac1bb142d98537450a319625d13d2a0"; 538 546 }; 539 547 } 540 548 { 541 - name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.10.4.tgz"; 549 + name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.12.1.tgz"; 542 550 path = fetchurl { 543 - name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.10.4.tgz"; 544 - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.4.tgz"; 545 - sha1 = "2f55e770d3501e83af217d782cb7517d7bb34d25"; 551 + name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.12.1.tgz"; 552 + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.1.tgz"; 553 + sha1 = "460ba9d77077653803c3dd2e673f76d66b4029e5"; 546 554 }; 547 555 } 548 556 { 549 - name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.10.4.tgz"; 557 + name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.12.1.tgz"; 550 558 path = fetchurl { 551 - name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.10.4.tgz"; 552 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz"; 553 - sha1 = "e22960d77e697c74f41c501d44d73dbf8a6a64cd"; 559 + name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.12.1.tgz"; 560 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz"; 561 + sha1 = "8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3"; 554 562 }; 555 563 } 556 564 { 557 - name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.10.4.tgz"; 565 + name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.12.1.tgz"; 558 566 path = fetchurl { 559 - name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.10.4.tgz"; 560 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz"; 561 - sha1 = "41a5017e49eb6f3cda9392a51eef29405b245a37"; 567 + name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.12.1.tgz"; 568 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz"; 569 + sha1 = "3849a49cc2a22e9743cbd6b52926d30337229af1"; 562 570 }; 563 571 } 564 572 { 565 - name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.10.4.tgz"; 573 + name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.1.tgz"; 566 574 path = fetchurl { 567 - name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.10.4.tgz"; 568 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz"; 569 - sha1 = "1afa595744f75e43a91af73b0d998ecfe4ebc2e8"; 575 + name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.1.tgz"; 576 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz"; 577 + sha1 = "f2a1a365bde2b7112e0a6ded9067fdd7c07905d9"; 570 578 }; 571 579 } 572 580 { 573 - name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.11.1.tgz"; 581 + name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.12.1.tgz"; 574 582 path = fetchurl { 575 - name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.11.1.tgz"; 576 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz"; 577 - sha1 = "5b7efe98852bef8d652c0b28144cd93a9e4b5215"; 583 + name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.12.1.tgz"; 584 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz"; 585 + sha1 = "f0ee727874b42a208a48a586b84c3d222c2bbef1"; 578 586 }; 579 587 } 580 588 { 581 - name = "_babel_plugin_transform_classes___plugin_transform_classes_7.10.4.tgz"; 589 + name = "_babel_plugin_transform_classes___plugin_transform_classes_7.12.1.tgz"; 582 590 path = fetchurl { 583 - name = "_babel_plugin_transform_classes___plugin_transform_classes_7.10.4.tgz"; 584 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz"; 585 - sha1 = "405136af2b3e218bc4a1926228bc917ab1a0adc7"; 591 + name = "_babel_plugin_transform_classes___plugin_transform_classes_7.12.1.tgz"; 592 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz"; 593 + sha1 = "65e650fcaddd3d88ddce67c0f834a3d436a32db6"; 586 594 }; 587 595 } 588 596 { 589 - name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.10.4.tgz"; 597 + name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.12.1.tgz"; 590 598 path = fetchurl { 591 - name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.10.4.tgz"; 592 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz"; 593 - sha1 = "9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb"; 599 + name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.12.1.tgz"; 600 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz"; 601 + sha1 = "d68cf6c9b7f838a8a4144badbe97541ea0904852"; 594 602 }; 595 603 } 596 604 { 597 - name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.10.4.tgz"; 605 + name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.12.1.tgz"; 598 606 path = fetchurl { 599 - name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.10.4.tgz"; 600 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz"; 601 - sha1 = "70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5"; 607 + name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.12.1.tgz"; 608 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz"; 609 + sha1 = "b9a570fe0d0a8d460116413cb4f97e8e08b2f847"; 602 610 }; 603 611 } 604 612 { 605 - name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.10.4.tgz"; 613 + name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.1.tgz"; 606 614 path = fetchurl { 607 - name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.10.4.tgz"; 608 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz"; 609 - sha1 = "469c2062105c1eb6a040eaf4fac4b488078395ee"; 615 + name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.1.tgz"; 616 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz"; 617 + sha1 = "a1d16c14862817b6409c0a678d6f9373ca9cd975"; 610 618 }; 611 619 } 612 620 { 613 - name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.10.4.tgz"; 621 + name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.1.tgz"; 614 622 path = fetchurl { 615 - name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.10.4.tgz"; 616 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz"; 617 - sha1 = "697e50c9fee14380fe843d1f306b295617431e47"; 623 + name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.1.tgz"; 624 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz"; 625 + sha1 = "745661baba295ac06e686822797a69fbaa2ca228"; 618 626 }; 619 627 } 620 628 { 621 - name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.10.4.tgz"; 629 + name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.1.tgz"; 622 630 path = fetchurl { 623 - name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.10.4.tgz"; 624 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz"; 625 - sha1 = "5ae338c57f8cf4001bdb35607ae66b92d665af2e"; 631 + name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.1.tgz"; 632 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz"; 633 + sha1 = "b0f2ed356ba1be1428ecaf128ff8a24f02830ae0"; 626 634 }; 627 635 } 628 636 { ··· 634 642 }; 635 643 } 636 644 { 637 - name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.10.4.tgz"; 645 + name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.12.1.tgz"; 638 646 path = fetchurl { 639 - name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.10.4.tgz"; 640 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz"; 641 - sha1 = "c08892e8819d3a5db29031b115af511dbbfebae9"; 647 + name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.12.1.tgz"; 648 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz"; 649 + sha1 = "07640f28867ed16f9511c99c888291f560921cfa"; 642 650 }; 643 651 } 644 652 { 645 - name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.10.4.tgz"; 653 + name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.1.tgz"; 646 654 path = fetchurl { 647 - name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.10.4.tgz"; 648 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz"; 649 - sha1 = "6a467880e0fc9638514ba369111811ddbe2644b7"; 655 + name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.1.tgz"; 656 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz"; 657 + sha1 = "2ec76258c70fe08c6d7da154003a480620eba667"; 650 658 }; 651 659 } 652 660 { 653 - name = "_babel_plugin_transform_literals___plugin_transform_literals_7.10.4.tgz"; 661 + name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.1.tgz"; 654 662 path = fetchurl { 655 - name = "_babel_plugin_transform_literals___plugin_transform_literals_7.10.4.tgz"; 656 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz"; 657 - sha1 = "9f42ba0841100a135f22712d0e391c462f571f3c"; 663 + name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.1.tgz"; 664 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz"; 665 + sha1 = "d73b803a26b37017ddf9d3bb8f4dc58bfb806f57"; 658 666 }; 659 667 } 660 668 { 661 - name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.10.4.tgz"; 669 + name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.1.tgz"; 662 670 path = fetchurl { 663 - name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.10.4.tgz"; 664 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz"; 665 - sha1 = "b1ec44fcf195afcb8db2c62cd8e551c881baf8b7"; 671 + name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.1.tgz"; 672 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz"; 673 + sha1 = "496038602daf1514a64d43d8e17cbb2755e0c3ad"; 666 674 }; 667 675 } 668 676 { 669 - name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.10.5.tgz"; 677 + name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.12.1.tgz"; 670 678 path = fetchurl { 671 - name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.10.5.tgz"; 672 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz"; 673 - sha1 = "1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1"; 679 + name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.12.1.tgz"; 680 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz"; 681 + sha1 = "3154300b026185666eebb0c0ed7f8415fefcf6f9"; 674 682 }; 675 683 } 676 684 { 677 - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.10.4.tgz"; 685 + name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.12.1.tgz"; 678 686 path = fetchurl { 679 - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.10.4.tgz"; 680 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz"; 681 - sha1 = "66667c3eeda1ebf7896d41f1f16b17105a2fbca0"; 687 + name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.12.1.tgz"; 688 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz"; 689 + sha1 = "fa403124542636c786cf9b460a0ffbb48a86e648"; 682 690 }; 683 691 } 684 692 { 685 - name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.10.5.tgz"; 693 + name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.12.1.tgz"; 686 694 path = fetchurl { 687 - name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.10.5.tgz"; 688 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz"; 689 - sha1 = "6270099c854066681bae9e05f87e1b9cadbe8c85"; 695 + name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.12.1.tgz"; 696 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz"; 697 + sha1 = "663fea620d593c93f214a464cd399bf6dc683086"; 690 698 }; 691 699 } 692 700 { 693 - name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.10.4.tgz"; 701 + name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.12.1.tgz"; 694 702 path = fetchurl { 695 - name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.10.4.tgz"; 696 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz"; 697 - sha1 = "9a8481fe81b824654b3a0b65da3df89f3d21839e"; 703 + name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.12.1.tgz"; 704 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz"; 705 + sha1 = "eb5a218d6b1c68f3d6217b8fa2cc82fec6547902"; 698 706 }; 699 707 } 700 708 { 701 - name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.10.4.tgz"; 709 + name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.1.tgz"; 702 710 path = fetchurl { 703 - name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.10.4.tgz"; 704 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz"; 705 - sha1 = "78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6"; 711 + name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.1.tgz"; 712 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz"; 713 + sha1 = "b407f5c96be0d9f5f88467497fa82b30ac3e8753"; 706 714 }; 707 715 } 708 716 { 709 - name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.10.4.tgz"; 717 + name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.1.tgz"; 710 718 path = fetchurl { 711 - name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.10.4.tgz"; 712 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz"; 713 - sha1 = "9097d753cb7b024cb7381a3b2e52e9513a9c6888"; 719 + name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.1.tgz"; 720 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz"; 721 + sha1 = "80073f02ee1bb2d365c3416490e085c95759dec0"; 714 722 }; 715 723 } 716 724 { 717 - name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.10.4.tgz"; 725 + name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.1.tgz"; 718 726 path = fetchurl { 719 - name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.10.4.tgz"; 720 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz"; 721 - sha1 = "d7146c4d139433e7a6526f888c667e314a093894"; 727 + name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.1.tgz"; 728 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz"; 729 + sha1 = "4ea08696b8d2e65841d0c7706482b048bed1066e"; 722 730 }; 723 731 } 724 732 { 725 - name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.10.5.tgz"; 733 + name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.12.1.tgz"; 726 734 path = fetchurl { 727 - name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.10.5.tgz"; 728 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz"; 729 - sha1 = "59d339d58d0b1950435f4043e74e2510005e2c4a"; 735 + name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.12.1.tgz"; 736 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz"; 737 + sha1 = "d2e963b038771650c922eff593799c96d853255d"; 730 738 }; 731 739 } 732 740 { 733 - name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.10.4.tgz"; 741 + name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.1.tgz"; 734 742 path = fetchurl { 735 - name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.10.4.tgz"; 736 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz"; 737 - sha1 = "f6fe54b6590352298785b83edd815d214c42e3c0"; 743 + name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.1.tgz"; 744 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz"; 745 + sha1 = "41bc81200d730abb4456ab8b3fbd5537b59adecd"; 738 746 }; 739 747 } 740 748 { 741 - name = "_babel_plugin_transform_react_constant_elements___plugin_transform_react_constant_elements_7.10.4.tgz"; 749 + name = "_babel_plugin_transform_react_constant_elements___plugin_transform_react_constant_elements_7.12.1.tgz"; 742 750 path = fetchurl { 743 - name = "_babel_plugin_transform_react_constant_elements___plugin_transform_react_constant_elements_7.10.4.tgz"; 744 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.10.4.tgz"; 745 - sha1 = "0f485260bf1c29012bb973e7e404749eaac12c9e"; 751 + name = "_babel_plugin_transform_react_constant_elements___plugin_transform_react_constant_elements_7.12.1.tgz"; 752 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.12.1.tgz"; 753 + sha1 = "4471f0851feec3231cc9aaa0dccde39947c1ac1e"; 746 754 }; 747 755 } 748 756 { ··· 754 762 }; 755 763 } 756 764 { 757 - name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.10.4.tgz"; 765 + name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.12.1.tgz"; 758 766 path = fetchurl { 759 - name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.10.4.tgz"; 760 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz"; 761 - sha1 = "b5795f4e3e3140419c3611b7a2a3832b9aef328d"; 767 + name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.12.1.tgz"; 768 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz"; 769 + sha1 = "1cbcd0c3b1d6648c55374a22fc9b6b7e5341c00d"; 762 770 }; 763 771 } 764 772 { 765 - name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.11.5.tgz"; 773 + name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.5.tgz"; 766 774 path = fetchurl { 767 - name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.11.5.tgz"; 768 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.11.5.tgz"; 769 - sha1 = "e1439e6a57ee3d43e9f54ace363fb29cefe5d7b6"; 775 + name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.5.tgz"; 776 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.5.tgz"; 777 + sha1 = "677de5b96da310430d6cfb7fee16a1603afa3d56"; 770 778 }; 771 779 } 772 780 { 773 - name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.10.4.tgz"; 781 + name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.12.1.tgz"; 774 782 path = fetchurl { 775 - name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.10.4.tgz"; 776 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz"; 777 - sha1 = "cd301a5fed8988c182ed0b9d55e9bd6db0bd9369"; 783 + name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.12.1.tgz"; 784 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz"; 785 + sha1 = "ef43cbca2a14f1bd17807dbe4376ff89d714cf28"; 778 786 }; 779 787 } 780 788 { 781 - name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.10.5.tgz"; 789 + name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.12.1.tgz"; 782 790 path = fetchurl { 783 - name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.10.5.tgz"; 784 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz"; 785 - sha1 = "34f1779117520a779c054f2cdd9680435b9222b4"; 791 + name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.12.1.tgz"; 792 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz"; 793 + sha1 = "d07de6863f468da0809edcf79a1aa8ce2a82a26b"; 786 794 }; 787 795 } 788 796 { 789 - name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.10.4.tgz"; 797 + name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.12.5.tgz"; 790 798 path = fetchurl { 791 - name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.10.4.tgz"; 792 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz"; 793 - sha1 = "673c9f913948764a4421683b2bef2936968fddf2"; 799 + name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.12.5.tgz"; 800 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.5.tgz"; 801 + sha1 = "39ede0e30159770561b6963be143e40af3bde00c"; 794 802 }; 795 803 } 796 804 { 797 - name = "_babel_plugin_transform_react_pure_annotations___plugin_transform_react_pure_annotations_7.10.4.tgz"; 805 + name = "_babel_plugin_transform_react_pure_annotations___plugin_transform_react_pure_annotations_7.12.1.tgz"; 798 806 path = fetchurl { 799 - name = "_babel_plugin_transform_react_pure_annotations___plugin_transform_react_pure_annotations_7.10.4.tgz"; 800 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz"; 801 - sha1 = "3eefbb73db94afbc075f097523e445354a1c6501"; 807 + name = "_babel_plugin_transform_react_pure_annotations___plugin_transform_react_pure_annotations_7.12.1.tgz"; 808 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz"; 809 + sha1 = "05d46f0ab4d1339ac59adf20a1462c91b37a1a42"; 802 810 }; 803 811 } 804 812 { 805 - name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.10.4.tgz"; 813 + name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.12.1.tgz"; 806 814 path = fetchurl { 807 - name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.10.4.tgz"; 808 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz"; 809 - sha1 = "2015e59d839074e76838de2159db421966fd8b63"; 815 + name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.12.1.tgz"; 816 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz"; 817 + sha1 = "5f0a28d842f6462281f06a964e88ba8d7ab49753"; 810 818 }; 811 819 } 812 820 { 813 - name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.10.4.tgz"; 821 + name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.1.tgz"; 814 822 path = fetchurl { 815 - name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.10.4.tgz"; 816 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz"; 817 - sha1 = "8f2682bcdcef9ed327e1b0861585d7013f8a54dd"; 823 + name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.1.tgz"; 824 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz"; 825 + sha1 = "6fdfc8cc7edcc42b36a7c12188c6787c873adcd8"; 818 826 }; 819 827 } 820 828 { ··· 826 834 }; 827 835 } 828 836 { 829 - name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.10.4.tgz"; 837 + name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.1.tgz"; 830 838 path = fetchurl { 831 - name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.10.4.tgz"; 832 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz"; 833 - sha1 = "9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6"; 839 + name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.1.tgz"; 840 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz"; 841 + sha1 = "0bf9cac5550fce0cfdf043420f661d645fdc75e3"; 834 842 }; 835 843 } 836 844 { 837 - name = "_babel_plugin_transform_spread___plugin_transform_spread_7.11.0.tgz"; 845 + name = "_babel_plugin_transform_spread___plugin_transform_spread_7.12.1.tgz"; 838 846 path = fetchurl { 839 - name = "_babel_plugin_transform_spread___plugin_transform_spread_7.11.0.tgz"; 840 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz"; 841 - sha1 = "fa84d300f5e4f57752fe41a6d1b3c554f13f17cc"; 847 + name = "_babel_plugin_transform_spread___plugin_transform_spread_7.12.1.tgz"; 848 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz"; 849 + sha1 = "527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e"; 842 850 }; 843 851 } 844 852 { 845 - name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.10.4.tgz"; 853 + name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.1.tgz"; 846 854 path = fetchurl { 847 - name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.10.4.tgz"; 848 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz"; 849 - sha1 = "8f3889ee8657581130a29d9cc91d7c73b7c4a28d"; 855 + name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.1.tgz"; 856 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz"; 857 + sha1 = "5c24cf50de396d30e99afc8d1c700e8bce0f5caf"; 850 858 }; 851 859 } 852 860 { 853 - name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.10.5.tgz"; 861 + name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.12.1.tgz"; 854 862 path = fetchurl { 855 - name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.10.5.tgz"; 856 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz"; 857 - sha1 = "78bc5d626a6642db3312d9d0f001f5e7639fde8c"; 863 + name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.12.1.tgz"; 864 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz"; 865 + sha1 = "b43ece6ed9a79c0c71119f576d299ef09d942843"; 858 866 }; 859 867 } 860 868 { 861 - name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.10.4.tgz"; 869 + name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.1.tgz"; 862 870 path = fetchurl { 863 - name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.10.4.tgz"; 864 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz"; 865 - sha1 = "9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc"; 871 + name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.1.tgz"; 872 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz"; 873 + sha1 = "9ca6be343d42512fbc2e68236a82ae64bc7af78a"; 866 874 }; 867 875 } 868 876 { 869 - name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.11.0.tgz"; 877 + name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.12.1.tgz"; 870 878 path = fetchurl { 871 - name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.11.0.tgz"; 872 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.11.0.tgz"; 873 - sha1 = "2b4879676af37342ebb278216dd090ac67f13abb"; 879 + name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.12.1.tgz"; 880 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.1.tgz"; 881 + sha1 = "d92cc0af504d510e26a754a7dbc2e5c8cd9c7ab4"; 874 882 }; 875 883 } 876 884 { 877 - name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.10.4.tgz"; 885 + name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.1.tgz"; 878 886 path = fetchurl { 879 - name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.10.4.tgz"; 880 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz"; 881 - sha1 = "feae523391c7651ddac115dae0a9d06857892007"; 887 + name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.1.tgz"; 888 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz"; 889 + sha1 = "5232b9f81ccb07070b7c3c36c67a1b78f1845709"; 882 890 }; 883 891 } 884 892 { 885 - name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.10.4.tgz"; 893 + name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.1.tgz"; 886 894 path = fetchurl { 887 - name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.10.4.tgz"; 888 - url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz"; 889 - sha1 = "e56d71f9282fac6db09c82742055576d5e6d80a8"; 895 + name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.1.tgz"; 896 + url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz"; 897 + sha1 = "cc9661f61390db5c65e3febaccefd5c6ac3faecb"; 890 898 }; 891 899 } 892 900 { ··· 898 906 }; 899 907 } 900 908 { 901 - name = "_babel_preset_env___preset_env_7.11.5.tgz"; 909 + name = "_babel_preset_env___preset_env_7.12.1.tgz"; 902 910 path = fetchurl { 903 - name = "_babel_preset_env___preset_env_7.11.5.tgz"; 904 - url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.5.tgz"; 905 - sha1 = "18cb4b9379e3e92ffea92c07471a99a2914e4272"; 911 + name = "_babel_preset_env___preset_env_7.12.1.tgz"; 912 + url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.1.tgz"; 913 + sha1 = "9c7e5ca82a19efc865384bb4989148d2ee5d7ac2"; 906 914 }; 907 915 } 908 916 { ··· 922 930 }; 923 931 } 924 932 { 925 - name = "_babel_preset_react___preset_react_7.10.4.tgz"; 933 + name = "_babel_preset_react___preset_react_7.12.5.tgz"; 926 934 path = fetchurl { 927 - name = "_babel_preset_react___preset_react_7.10.4.tgz"; 928 - url = "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.10.4.tgz"; 929 - sha1 = "92e8a66d816f9911d11d4cc935be67adfc82dbcf"; 935 + name = "_babel_preset_react___preset_react_7.12.5.tgz"; 936 + url = "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.5.tgz"; 937 + sha1 = "d45625f65d53612078a43867c5c6750e78772c56"; 930 938 }; 931 939 } 932 940 { ··· 938 946 }; 939 947 } 940 948 { 941 - name = "_babel_runtime_corejs3___runtime_corejs3_7.11.2.tgz"; 949 + name = "_babel_runtime_corejs3___runtime_corejs3_7.12.5.tgz"; 942 950 path = fetchurl { 943 - name = "_babel_runtime_corejs3___runtime_corejs3_7.11.2.tgz"; 944 - url = "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.11.2.tgz"; 945 - sha1 = "02c3029743150188edeb66541195f54600278419"; 951 + name = "_babel_runtime_corejs3___runtime_corejs3_7.12.5.tgz"; 952 + url = "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz"; 953 + sha1 = "ffee91da0eb4c6dae080774e94ba606368e414f4"; 946 954 }; 947 955 } 948 956 { ··· 954 962 }; 955 963 } 956 964 { 957 - name = "_babel_runtime___runtime_7.11.2.tgz"; 965 + name = "_babel_runtime___runtime_7.12.5.tgz"; 958 966 path = fetchurl { 959 - name = "_babel_runtime___runtime_7.11.2.tgz"; 960 - url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz"; 961 - sha1 = "f549c13c754cc40b87644b9fa9f09a6a95fe0736"; 967 + name = "_babel_runtime___runtime_7.12.5.tgz"; 968 + url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz"; 969 + sha1 = "410e7e487441e1b360c29be715d870d9b985882e"; 962 970 }; 963 971 } 964 972 { ··· 970 978 }; 971 979 } 972 980 { 973 - name = "_babel_traverse___traverse_7.11.5.tgz"; 981 + name = "_babel_traverse___traverse_7.12.5.tgz"; 974 982 path = fetchurl { 975 - name = "_babel_traverse___traverse_7.11.5.tgz"; 976 - url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.5.tgz"; 977 - sha1 = "be777b93b518eb6d76ee2e1ea1d143daa11e61c3"; 983 + name = "_babel_traverse___traverse_7.12.5.tgz"; 984 + url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.5.tgz"; 985 + sha1 = "78a0c68c8e8a35e4cacfd31db8bb303d5606f095"; 978 986 }; 979 987 } 980 988 { 981 - name = "_babel_types___types_7.11.5.tgz"; 989 + name = "_babel_types___types_7.12.6.tgz"; 982 990 path = fetchurl { 983 - name = "_babel_types___types_7.11.5.tgz"; 984 - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz"; 985 - sha1 = "d9de577d01252d77c6800cee039ee64faf75662d"; 991 + name = "_babel_types___types_7.12.6.tgz"; 992 + url = "https://registry.yarnpkg.com/@babel/types/-/types-7.12.6.tgz"; 993 + sha1 = "ae0e55ef1cce1fbc881cd26f8234eb3e657edc96"; 986 994 }; 987 995 } 988 996 { ··· 1034 1042 }; 1035 1043 } 1036 1044 { 1037 - name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.11.tgz"; 1045 + name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.12.tgz"; 1038 1046 path = fetchurl { 1039 - name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.11.tgz"; 1040 - url = "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.11.tgz"; 1041 - sha1 = "c1a95a2bdb6a18fa97b355a563832e248bf6ef4a"; 1047 + name = "_fortawesome_react_fontawesome___react_fontawesome_0.1.12.tgz"; 1048 + url = "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.12.tgz"; 1049 + sha1 = "fbdea86e8b73032895e6ded1ee1dbb1874902d1a"; 1042 1050 }; 1043 1051 } 1044 1052 { ··· 1162 1170 }; 1163 1171 } 1164 1172 { 1165 - name = "_jest_types___types_25.5.0.tgz"; 1173 + name = "_jest_types___types_26.6.2.tgz"; 1166 1174 path = fetchurl { 1167 - name = "_jest_types___types_25.5.0.tgz"; 1168 - url = "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz"; 1169 - sha1 = "4d6a4793f7b9599fc3680877b856a97dbccf2a9d"; 1175 + name = "_jest_types___types_26.6.2.tgz"; 1176 + url = "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz"; 1177 + sha1 = "bef5a532030e1d88a2f5a6d933f84e97226ed48e"; 1170 1178 }; 1171 1179 } 1172 1180 { ··· 1218 1226 }; 1219 1227 } 1220 1228 { 1221 - name = "_sinonjs_samsam___samsam_5.2.0.tgz"; 1229 + name = "_sinonjs_samsam___samsam_5.3.0.tgz"; 1222 1230 path = fetchurl { 1223 - name = "_sinonjs_samsam___samsam_5.2.0.tgz"; 1224 - url = "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-5.2.0.tgz"; 1225 - sha1 = "fcff83ab86f83b5498f4a967869c079408d9b5eb"; 1231 + name = "_sinonjs_samsam___samsam_5.3.0.tgz"; 1232 + url = "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-5.3.0.tgz"; 1233 + sha1 = "1d2f0743dc54bf13fe9d508baefacdffa25d4329"; 1226 1234 }; 1227 1235 } 1228 1236 { ··· 1354 1362 }; 1355 1363 } 1356 1364 { 1357 - name = "_types_babel__core___babel__core_7.1.10.tgz"; 1365 + name = "_types_babel__core___babel__core_7.1.12.tgz"; 1358 1366 path = fetchurl { 1359 - name = "_types_babel__core___babel__core_7.1.10.tgz"; 1360 - url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.10.tgz"; 1361 - sha1 = "ca58fc195dd9734e77e57c6f2df565623636ab40"; 1367 + name = "_types_babel__core___babel__core_7.1.12.tgz"; 1368 + url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.12.tgz"; 1369 + sha1 = "4d8e9e51eb265552a7e4f1ff2219ab6133bdfb2d"; 1362 1370 }; 1363 1371 } 1364 1372 { ··· 1370 1378 }; 1371 1379 } 1372 1380 { 1373 - name = "_types_babel__template___babel__template_7.0.3.tgz"; 1381 + name = "_types_babel__template___babel__template_7.4.0.tgz"; 1374 1382 path = fetchurl { 1375 - name = "_types_babel__template___babel__template_7.0.3.tgz"; 1376 - url = "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.3.tgz"; 1377 - sha1 = "b8aaeba0a45caca7b56a5de9459872dde3727214"; 1383 + name = "_types_babel__template___babel__template_7.4.0.tgz"; 1384 + url = "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.0.tgz"; 1385 + sha1 = "0c888dd70b3ee9eebb6e4f200e809da0076262be"; 1378 1386 }; 1379 1387 } 1380 1388 { ··· 1402 1410 }; 1403 1411 } 1404 1412 { 1405 - name = "_types_enzyme___enzyme_3.10.7.tgz"; 1413 + name = "_types_enzyme___enzyme_3.10.8.tgz"; 1406 1414 path = fetchurl { 1407 - name = "_types_enzyme___enzyme_3.10.7.tgz"; 1408 - url = "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.7.tgz"; 1409 - sha1 = "ebdf3b972d293095e09af479e36c772025285e3a"; 1415 + name = "_types_enzyme___enzyme_3.10.8.tgz"; 1416 + url = "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.8.tgz"; 1417 + sha1 = "ad7ac9d3af3de6fd0673773123fafbc63db50d42"; 1410 1418 }; 1411 1419 } 1412 1420 { ··· 1466 1474 }; 1467 1475 } 1468 1476 { 1469 - name = "_types_jest___jest_26.0.14.tgz"; 1477 + name = "_types_istanbul_reports___istanbul_reports_3.0.0.tgz"; 1470 1478 path = fetchurl { 1471 - name = "_types_jest___jest_26.0.14.tgz"; 1472 - url = "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.14.tgz"; 1473 - sha1 = "078695f8f65cb55c5a98450d65083b2b73e5a3f3"; 1479 + name = "_types_istanbul_reports___istanbul_reports_3.0.0.tgz"; 1480 + url = "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz"; 1481 + sha1 = "508b13aa344fa4976234e75dddcc34925737d821"; 1474 1482 }; 1475 1483 } 1476 1484 { 1477 - name = "_types_jquery___jquery_3.5.2.tgz"; 1485 + name = "_types_jest___jest_26.0.15.tgz"; 1478 1486 path = fetchurl { 1479 - name = "_types_jquery___jquery_3.5.2.tgz"; 1480 - url = "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.5.2.tgz"; 1481 - sha1 = "e17c1756ecf7bbb431766c6761674a5d1de16579"; 1487 + name = "_types_jest___jest_26.0.15.tgz"; 1488 + url = "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.15.tgz"; 1489 + sha1 = "12e02c0372ad0548e07b9f4e19132b834cb1effe"; 1490 + }; 1491 + } 1492 + { 1493 + name = "_types_jquery___jquery_3.5.4.tgz"; 1494 + path = fetchurl { 1495 + name = "_types_jquery___jquery_3.5.4.tgz"; 1496 + url = "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.5.4.tgz"; 1497 + sha1 = "e923f7d05ca790530f17f80a3b89bc28853fa17f"; 1482 1498 }; 1483 1499 } 1484 1500 { ··· 1514 1530 }; 1515 1531 } 1516 1532 { 1517 - name = "_types_node___node_14.11.5.tgz"; 1533 + name = "_types_node___node_14.14.8.tgz"; 1518 1534 path = fetchurl { 1519 - name = "_types_node___node_14.11.5.tgz"; 1520 - url = "https://registry.yarnpkg.com/@types/node/-/node-14.11.5.tgz"; 1521 - sha1 = "fecad41c041cae7f2404ad4b2d0742fdb628b305"; 1535 + name = "_types_node___node_14.14.8.tgz"; 1536 + url = "https://registry.yarnpkg.com/@types/node/-/node-14.14.8.tgz"; 1537 + sha1 = "2127bd81949a95c8b7d3240f3254352d72563aec"; 1522 1538 }; 1523 1539 } 1524 1540 { 1525 - name = "_types_node___node_12.12.64.tgz"; 1541 + name = "_types_node___node_12.19.5.tgz"; 1526 1542 path = fetchurl { 1527 - name = "_types_node___node_12.12.64.tgz"; 1528 - url = "https://registry.yarnpkg.com/@types/node/-/node-12.12.64.tgz"; 1529 - sha1 = "e3b336dc4c6ba52c6b59e3bd69a100347c20b1c0"; 1543 + name = "_types_node___node_12.19.5.tgz"; 1544 + url = "https://registry.yarnpkg.com/@types/node/-/node-12.19.5.tgz"; 1545 + sha1 = "9be3946136e818597c71c62d04240d0602c645d4"; 1530 1546 }; 1531 1547 } 1532 1548 { ··· 1570 1586 }; 1571 1587 } 1572 1588 { 1573 - name = "_types_react_dom___react_dom_16.9.8.tgz"; 1589 + name = "_types_react_dom___react_dom_16.9.9.tgz"; 1574 1590 path = fetchurl { 1575 - name = "_types_react_dom___react_dom_16.9.8.tgz"; 1576 - url = "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.8.tgz"; 1577 - sha1 = "fe4c1e11dfc67155733dfa6aa65108b4971cb423"; 1591 + name = "_types_react_dom___react_dom_16.9.9.tgz"; 1592 + url = "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.9.tgz"; 1593 + sha1 = "d2d0a6f720a0206369ccbefff752ba37b9583136"; 1578 1594 }; 1579 1595 } 1580 1596 { ··· 1594 1610 }; 1595 1611 } 1596 1612 { 1597 - name = "_types_react___react_16.9.51.tgz"; 1613 + name = "_types_react___react_16.9.56.tgz"; 1598 1614 path = fetchurl { 1599 - name = "_types_react___react_16.9.51.tgz"; 1600 - url = "https://registry.yarnpkg.com/@types/react/-/react-16.9.51.tgz"; 1601 - sha1 = "f8aa51ffa9996f1387f63686696d9b59713d2b60"; 1615 + name = "_types_react___react_16.9.56.tgz"; 1616 + url = "https://registry.yarnpkg.com/@types/react/-/react-16.9.56.tgz"; 1617 + sha1 = "ea25847b53c5bec064933095fc366b1462e2adf0"; 1602 1618 }; 1603 1619 } 1604 1620 { 1605 - name = "_types_reactstrap___reactstrap_8.5.1.tgz"; 1621 + name = "_types_reactstrap___reactstrap_8.7.2.tgz"; 1606 1622 path = fetchurl { 1607 - name = "_types_reactstrap___reactstrap_8.5.1.tgz"; 1608 - url = "https://registry.yarnpkg.com/@types/reactstrap/-/reactstrap-8.5.1.tgz"; 1609 - sha1 = "bd01ed7b14b9aeb476c0b8e195443dda98ac6156"; 1623 + name = "_types_reactstrap___reactstrap_8.7.2.tgz"; 1624 + url = "https://registry.yarnpkg.com/@types/reactstrap/-/reactstrap-8.7.2.tgz"; 1625 + sha1 = "0ab86f35e472e8f2002eaf8c7a42193c9cea6add"; 1610 1626 }; 1611 1627 } 1612 1628 { ··· 1674 1690 }; 1675 1691 } 1676 1692 { 1677 - name = "_types_yargs___yargs_15.0.7.tgz"; 1693 + name = "_types_yargs___yargs_15.0.10.tgz"; 1678 1694 path = fetchurl { 1679 - name = "_types_yargs___yargs_15.0.7.tgz"; 1680 - url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.7.tgz"; 1681 - sha1 = "dad50a7a234a35ef9460737a56024287a3de1d2b"; 1695 + name = "_types_yargs___yargs_15.0.10.tgz"; 1696 + url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.10.tgz"; 1697 + sha1 = "0fe3c8173a0d5c3e780b389050140c3f5ea6ea74"; 1682 1698 }; 1683 1699 } 1684 1700 { ··· 2002 2018 }; 2003 2019 } 2004 2020 { 2005 - name = "ajv___ajv_6.12.5.tgz"; 2021 + name = "ajv___ajv_6.12.6.tgz"; 2006 2022 path = fetchurl { 2007 - name = "ajv___ajv_6.12.5.tgz"; 2008 - url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.5.tgz"; 2009 - sha1 = "19b0e8bae8f476e5ba666300387775fb1a00a4da"; 2023 + name = "ajv___ajv_6.12.6.tgz"; 2024 + url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz"; 2025 + sha1 = "baf5a62e802b07d977034586f8c3baf5adf26df4"; 2010 2026 }; 2011 2027 } 2012 2028 { ··· 2258 2274 }; 2259 2275 } 2260 2276 { 2261 - name = "array.prototype.flat___array.prototype.flat_1.2.3.tgz"; 2277 + name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz"; 2262 2278 path = fetchurl { 2263 - name = "array.prototype.flat___array.prototype.flat_1.2.3.tgz"; 2264 - url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz"; 2265 - sha1 = "0de82b426b0318dbfdb940089e38b043d37f6c7b"; 2279 + name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz"; 2280 + url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz"; 2281 + sha1 = "6ef638b43312bd401b4c6199fdec7e2dc9e9a123"; 2266 2282 }; 2267 2283 } 2268 2284 { 2269 - name = "array.prototype.flatmap___array.prototype.flatmap_1.2.3.tgz"; 2285 + name = "array.prototype.flatmap___array.prototype.flatmap_1.2.4.tgz"; 2270 2286 path = fetchurl { 2271 - name = "array.prototype.flatmap___array.prototype.flatmap_1.2.3.tgz"; 2272 - url = "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz"; 2273 - sha1 = "1c13f84a178566042dd63de4414440db9222e443"; 2287 + name = "array.prototype.flatmap___array.prototype.flatmap_1.2.4.tgz"; 2288 + url = "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz"; 2289 + sha1 = "94cfd47cc1556ec0747d97f7c7738c58122004c9"; 2274 2290 }; 2275 2291 } 2276 2292 { ··· 2410 2426 }; 2411 2427 } 2412 2428 { 2413 - name = "aws4___aws4_1.10.1.tgz"; 2429 + name = "aws4___aws4_1.11.0.tgz"; 2414 2430 path = fetchurl { 2415 - name = "aws4___aws4_1.10.1.tgz"; 2416 - url = "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz"; 2417 - sha1 = "e1e82e4f3e999e2cfd61b161280d16a111f86428"; 2431 + name = "aws4___aws4_1.11.0.tgz"; 2432 + url = "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz"; 2433 + sha1 = "d61f46d83b2519250e2784daf5b09479a8b41c59"; 2418 2434 }; 2419 2435 } 2420 2436 { 2421 - name = "axe_core___axe_core_3.5.5.tgz"; 2437 + name = "axe_core___axe_core_4.1.0.tgz"; 2422 2438 path = fetchurl { 2423 - name = "axe_core___axe_core_3.5.5.tgz"; 2424 - url = "https://registry.yarnpkg.com/axe-core/-/axe-core-3.5.5.tgz"; 2425 - sha1 = "84315073b53fa3c0c51676c588d59da09a192227"; 2439 + name = "axe_core___axe_core_4.1.0.tgz"; 2440 + url = "https://registry.yarnpkg.com/axe-core/-/axe-core-4.1.0.tgz"; 2441 + sha1 = "93d395e6262ecdde5cb52a5d06533d0a0c7bb4cd"; 2426 2442 }; 2427 2443 } 2428 2444 { ··· 2506 2522 }; 2507 2523 } 2508 2524 { 2509 - name = "babel_plugin_named_asset_import___babel_plugin_named_asset_import_0.3.6.tgz"; 2525 + name = "babel_plugin_named_asset_import___babel_plugin_named_asset_import_0.3.7.tgz"; 2510 2526 path = fetchurl { 2511 - name = "babel_plugin_named_asset_import___babel_plugin_named_asset_import_0.3.6.tgz"; 2512 - url = "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.6.tgz"; 2513 - sha1 = "c9750a1b38d85112c9e166bf3ef7c5dbc605f4be"; 2527 + name = "babel_plugin_named_asset_import___babel_plugin_named_asset_import_0.3.7.tgz"; 2528 + url = "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz"; 2529 + sha1 = "156cd55d3f1228a5765774340937afc8398067dd"; 2514 2530 }; 2515 2531 } 2516 2532 { ··· 2578 2594 }; 2579 2595 } 2580 2596 { 2581 - name = "base64_js___base64_js_1.3.1.tgz"; 2597 + name = "base64_js___base64_js_1.5.1.tgz"; 2582 2598 path = fetchurl { 2583 - name = "base64_js___base64_js_1.3.1.tgz"; 2584 - url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz"; 2585 - sha1 = "58ece8cb75dd07e71ed08c736abc5fac4dbf8df1"; 2599 + name = "base64_js___base64_js_1.5.1.tgz"; 2600 + url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz"; 2601 + sha1 = "1b1b440160a5bf7ad40b650f095963481903930a"; 2586 2602 }; 2587 2603 } 2588 2604 { ··· 2690 2706 }; 2691 2707 } 2692 2708 { 2693 - name = "bootstrap___bootstrap_4.5.2.tgz"; 2709 + name = "bootstrap___bootstrap_4.5.3.tgz"; 2694 2710 path = fetchurl { 2695 - name = "bootstrap___bootstrap_4.5.2.tgz"; 2696 - url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.5.2.tgz"; 2697 - sha1 = "a85c4eda59155f0d71186b6e6ad9b875813779ab"; 2711 + name = "bootstrap___bootstrap_4.5.3.tgz"; 2712 + url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.5.3.tgz"; 2713 + sha1 = "c6a72b355aaf323920be800246a6e4ef30997fe6"; 2698 2714 }; 2699 2715 } 2700 2716 { ··· 2770 2786 }; 2771 2787 } 2772 2788 { 2773 - name = "browserify_rsa___browserify_rsa_4.0.1.tgz"; 2789 + name = "browserify_rsa___browserify_rsa_4.1.0.tgz"; 2774 2790 path = fetchurl { 2775 - name = "browserify_rsa___browserify_rsa_4.0.1.tgz"; 2776 - url = "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz"; 2777 - sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524"; 2791 + name = "browserify_rsa___browserify_rsa_4.1.0.tgz"; 2792 + url = "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz"; 2793 + sha1 = "b2fd06b5b75ae297f7ce2dc651f918f5be158c8d"; 2778 2794 }; 2779 2795 } 2780 2796 { ··· 2802 2818 }; 2803 2819 } 2804 2820 { 2805 - name = "browserslist___browserslist_4.14.5.tgz"; 2821 + name = "browserslist___browserslist_4.14.7.tgz"; 2806 2822 path = fetchurl { 2807 - name = "browserslist___browserslist_4.14.5.tgz"; 2808 - url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.5.tgz"; 2809 - sha1 = "1c751461a102ddc60e40993639b709be7f2c4015"; 2823 + name = "browserslist___browserslist_4.14.7.tgz"; 2824 + url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.7.tgz"; 2825 + sha1 = "c071c1b3622c1c2e790799a37bb09473a4351cb6"; 2810 2826 }; 2811 2827 } 2812 2828 { ··· 2895 2911 name = "cache_base___cache_base_1.0.1.tgz"; 2896 2912 url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz"; 2897 2913 sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2"; 2914 + }; 2915 + } 2916 + { 2917 + name = "call_bind___call_bind_1.0.0.tgz"; 2918 + path = fetchurl { 2919 + name = "call_bind___call_bind_1.0.0.tgz"; 2920 + url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz"; 2921 + sha1 = "24127054bb3f9bdcb4b1fb82418186072f77b8ce"; 2898 2922 }; 2899 2923 } 2900 2924 { ··· 2970 2994 }; 2971 2995 } 2972 2996 { 2973 - name = "caniuse_lite___caniuse_lite_1.0.30001146.tgz"; 2997 + name = "caniuse_lite___caniuse_lite_1.0.30001159.tgz"; 2974 2998 path = fetchurl { 2975 - name = "caniuse_lite___caniuse_lite_1.0.30001146.tgz"; 2976 - url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001146.tgz"; 2977 - sha1 = "c61fcb1474520c1462913689201fb292ba6f447c"; 2999 + name = "caniuse_lite___caniuse_lite_1.0.30001159.tgz"; 3000 + url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001159.tgz"; 3001 + sha1 = "bebde28f893fa9594dadcaa7d6b8e2aa0299df20"; 2978 3002 }; 2979 3003 } 2980 3004 { ··· 3018 3042 }; 3019 3043 } 3020 3044 { 3021 - name = "chalk___chalk_3.0.0.tgz"; 3022 - path = fetchurl { 3023 - name = "chalk___chalk_3.0.0.tgz"; 3024 - url = "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz"; 3025 - sha1 = "3f73c2bf526591f574cc492c51e2456349f844e4"; 3026 - }; 3027 - } 3028 - { 3029 3045 name = "chalk___chalk_4.1.0.tgz"; 3030 3046 path = fetchurl { 3031 3047 name = "chalk___chalk_4.1.0.tgz"; ··· 3058 3074 }; 3059 3075 } 3060 3076 { 3061 - name = "chokidar___chokidar_3.4.2.tgz"; 3077 + name = "chokidar___chokidar_3.4.3.tgz"; 3062 3078 path = fetchurl { 3063 - name = "chokidar___chokidar_3.4.2.tgz"; 3064 - url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.2.tgz"; 3065 - sha1 = "38dc8e658dec3809741eb3ef7bb0a47fe424232d"; 3079 + name = "chokidar___chokidar_3.4.3.tgz"; 3080 + url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz"; 3081 + sha1 = "c1df38231448e45ca4ac588e6c79573ba6a57d5b"; 3066 3082 }; 3067 3083 } 3068 3084 { ··· 3234 3250 }; 3235 3251 } 3236 3252 { 3237 - name = "color_string___color_string_1.5.3.tgz"; 3253 + name = "color_string___color_string_1.5.4.tgz"; 3238 3254 path = fetchurl { 3239 - name = "color_string___color_string_1.5.3.tgz"; 3240 - url = "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz"; 3241 - sha1 = "c9bbc5f01b58b5492f3d6857459cb6590ce204cc"; 3255 + name = "color_string___color_string_1.5.4.tgz"; 3256 + url = "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz"; 3257 + sha1 = "dd51cd25cfee953d138fe4002372cc3d0e504cb6"; 3242 3258 }; 3243 3259 } 3244 3260 { 3245 - name = "color___color_3.1.2.tgz"; 3261 + name = "color___color_3.1.3.tgz"; 3246 3262 path = fetchurl { 3247 - name = "color___color_3.1.2.tgz"; 3248 - url = "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz"; 3249 - sha1 = "68148e7f85d41ad7649c5fa8c8106f098d229e10"; 3263 + name = "color___color_3.1.3.tgz"; 3264 + url = "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz"; 3265 + sha1 = "ca67fb4e7b97d611dcde39eceed422067d91596e"; 3250 3266 }; 3251 3267 } 3252 3268 { ··· 3354 3370 }; 3355 3371 } 3356 3372 { 3357 - name = "confusing_browser_globals___confusing_browser_globals_1.0.9.tgz"; 3373 + name = "confusing_browser_globals___confusing_browser_globals_1.0.10.tgz"; 3358 3374 path = fetchurl { 3359 - name = "confusing_browser_globals___confusing_browser_globals_1.0.9.tgz"; 3360 - url = "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz"; 3361 - sha1 = "72bc13b483c0276801681871d4898516f8f54fdd"; 3375 + name = "confusing_browser_globals___confusing_browser_globals_1.0.10.tgz"; 3376 + url = "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz"; 3377 + sha1 = "30d1e7f3d1b882b25ec4933d1d1adac353d20a59"; 3362 3378 }; 3363 3379 } 3364 3380 { ··· 3466 3482 }; 3467 3483 } 3468 3484 { 3469 - name = "core_js_compat___core_js_compat_3.6.5.tgz"; 3485 + name = "core_js_compat___core_js_compat_3.7.0.tgz"; 3470 3486 path = fetchurl { 3471 - name = "core_js_compat___core_js_compat_3.6.5.tgz"; 3472 - url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz"; 3473 - sha1 = "2a51d9a4e25dfd6e690251aa81f99e3c05481f1c"; 3487 + name = "core_js_compat___core_js_compat_3.7.0.tgz"; 3488 + url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.7.0.tgz"; 3489 + sha1 = "8479c5d3d672d83f1f5ab94cf353e57113e065ed"; 3474 3490 }; 3475 3491 } 3476 3492 { 3477 - name = "core_js_pure___core_js_pure_3.6.5.tgz"; 3493 + name = "core_js_pure___core_js_pure_3.7.0.tgz"; 3478 3494 path = fetchurl { 3479 - name = "core_js_pure___core_js_pure_3.6.5.tgz"; 3480 - url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz"; 3481 - sha1 = "c79e75f5e38dbc85a662d91eea52b8256d53b813"; 3495 + name = "core_js_pure___core_js_pure_3.7.0.tgz"; 3496 + url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.7.0.tgz"; 3497 + sha1 = "28a57c861d5698e053f0ff36905f7a3301b4191e"; 3482 3498 }; 3483 3499 } 3484 3500 { ··· 3490 3506 }; 3491 3507 } 3492 3508 { 3493 - name = "core_js___core_js_3.6.5.tgz"; 3509 + name = "core_js___core_js_3.7.0.tgz"; 3494 3510 path = fetchurl { 3495 - name = "core_js___core_js_3.6.5.tgz"; 3496 - url = "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz"; 3497 - sha1 = "7395dc273af37fb2e50e9bd3d9fe841285231d1a"; 3511 + name = "core_js___core_js_3.7.0.tgz"; 3512 + url = "https://registry.yarnpkg.com/core-js/-/core-js-3.7.0.tgz"; 3513 + sha1 = "b0a761a02488577afbf97179e4681bf49568520f"; 3498 3514 }; 3499 3515 } 3500 3516 { ··· 3666 3682 }; 3667 3683 } 3668 3684 { 3669 - name = "css_tree___css_tree_1.0.0_alpha.39.tgz"; 3685 + name = "css_tree___css_tree_1.1.1.tgz"; 3670 3686 path = fetchurl { 3671 - name = "css_tree___css_tree_1.0.0_alpha.39.tgz"; 3672 - url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.39.tgz"; 3673 - sha1 = "2bff3ffe1bb3f776cf7eefd91ee5cba77a149eeb"; 3687 + name = "css_tree___css_tree_1.1.1.tgz"; 3688 + url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.1.tgz"; 3689 + sha1 = "30b8c0161d9fb4e9e2141d762589b6ec2faebd2e"; 3674 3690 }; 3675 3691 } 3676 3692 { ··· 3682 3698 }; 3683 3699 } 3684 3700 { 3685 - name = "css_what___css_what_3.4.1.tgz"; 3701 + name = "css_what___css_what_3.4.2.tgz"; 3686 3702 path = fetchurl { 3687 - name = "css_what___css_what_3.4.1.tgz"; 3688 - url = "https://registry.yarnpkg.com/css-what/-/css-what-3.4.1.tgz"; 3689 - sha1 = "81cb70b609e4b1351b1e54cbc90fd9c54af86e2e"; 3703 + name = "css_what___css_what_3.4.2.tgz"; 3704 + url = "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz"; 3705 + sha1 = "ea7026fcb01777edbde52124e21f327e7ae950e4"; 3690 3706 }; 3691 3707 } 3692 3708 { ··· 3778 3794 }; 3779 3795 } 3780 3796 { 3781 - name = "csso___csso_4.0.3.tgz"; 3797 + name = "csso___csso_4.1.1.tgz"; 3782 3798 path = fetchurl { 3783 - name = "csso___csso_4.0.3.tgz"; 3784 - url = "https://registry.yarnpkg.com/csso/-/csso-4.0.3.tgz"; 3785 - sha1 = "0d9985dc852c7cc2b2cacfbbe1079014d1a8e903"; 3799 + name = "csso___csso_4.1.1.tgz"; 3800 + url = "https://registry.yarnpkg.com/csso/-/csso-4.1.1.tgz"; 3801 + sha1 = "e0cb02d6eb3af1df719222048e4359efd662af13"; 3786 3802 }; 3787 3803 } 3788 3804 { ··· 3818 3834 }; 3819 3835 } 3820 3836 { 3821 - name = "csstype___csstype_3.0.3.tgz"; 3837 + name = "csstype___csstype_3.0.5.tgz"; 3822 3838 path = fetchurl { 3823 - name = "csstype___csstype_3.0.3.tgz"; 3824 - url = "https://registry.yarnpkg.com/csstype/-/csstype-3.0.3.tgz"; 3825 - sha1 = "2b410bbeba38ba9633353aff34b05d9755d065f8"; 3839 + name = "csstype___csstype_3.0.5.tgz"; 3840 + url = "https://registry.yarnpkg.com/csstype/-/csstype-3.0.5.tgz"; 3841 + sha1 = "7fdec6a28a67ae18647c51668a9ff95bb2fa7bb8"; 3826 3842 }; 3827 3843 } 3828 3844 { ··· 3882 3898 }; 3883 3899 } 3884 3900 { 3885 - name = "debug___debug_3.2.6.tgz"; 3901 + name = "debug___debug_3.2.7.tgz"; 3886 3902 path = fetchurl { 3887 - name = "debug___debug_3.2.6.tgz"; 3888 - url = "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz"; 3889 - sha1 = "e83d17de16d8a7efb7717edbe5fb10135eee629b"; 3903 + name = "debug___debug_3.2.7.tgz"; 3904 + url = "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz"; 3905 + sha1 = "72580b7e9145fb39b6676f9c5e5fb100b934179a"; 3890 3906 }; 3891 3907 } 3892 3908 { 3893 - name = "debug___debug_4.2.0.tgz"; 3909 + name = "debug___debug_4.3.1.tgz"; 3894 3910 path = fetchurl { 3895 - name = "debug___debug_4.2.0.tgz"; 3896 - url = "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz"; 3897 - sha1 = "7f150f93920e94c58f5574c2fd01a3110effe7f1"; 3911 + name = "debug___debug_4.3.1.tgz"; 3912 + url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz"; 3913 + sha1 = "f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"; 3898 3914 }; 3899 3915 } 3900 3916 { ··· 4050 4066 }; 4051 4067 } 4052 4068 { 4053 - name = "diff_sequences___diff_sequences_25.2.6.tgz"; 4069 + name = "diff_sequences___diff_sequences_26.6.2.tgz"; 4054 4070 path = fetchurl { 4055 - name = "diff_sequences___diff_sequences_25.2.6.tgz"; 4056 - url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz"; 4057 - sha1 = "5f467c00edd35352b7bca46d7927d60e687a76dd"; 4071 + name = "diff_sequences___diff_sequences_26.6.2.tgz"; 4072 + url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz"; 4073 + sha1 = "48ba99157de1923412eed41db6b6d4aa9ca7c0b1"; 4058 4074 }; 4059 4075 } 4060 4076 { ··· 4330 4346 }; 4331 4347 } 4332 4348 { 4333 - name = "electron_to_chromium___electron_to_chromium_1.3.578.tgz"; 4349 + name = "electron_to_chromium___electron_to_chromium_1.3.601.tgz"; 4334 4350 path = fetchurl { 4335 - name = "electron_to_chromium___electron_to_chromium_1.3.578.tgz"; 4336 - url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.578.tgz"; 4337 - sha1 = "e6671936f4571a874eb26e2e833aa0b2c0b776e0"; 4351 + name = "electron_to_chromium___electron_to_chromium_1.3.601.tgz"; 4352 + url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.601.tgz"; 4353 + sha1 = "881824eaef0b2f97c89e1abb5835fdd224997d34"; 4338 4354 }; 4339 4355 } 4340 4356 { ··· 4362 4378 }; 4363 4379 } 4364 4380 { 4365 - name = "emoji_regex___emoji_regex_9.0.0.tgz"; 4381 + name = "emoji_regex___emoji_regex_9.2.0.tgz"; 4366 4382 path = fetchurl { 4367 - name = "emoji_regex___emoji_regex_9.0.0.tgz"; 4368 - url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.0.0.tgz"; 4369 - sha1 = "48a2309cc8a1d2e9d23bc6a67c39b63032e76ea4"; 4383 + name = "emoji_regex___emoji_regex_9.2.0.tgz"; 4384 + url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.0.tgz"; 4385 + sha1 = "a26da8e832b16a9753309f25e35e3c0efb9a066a"; 4370 4386 }; 4371 4387 } 4372 4388 { ··· 4418 4434 }; 4419 4435 } 4420 4436 { 4421 - name = "entities___entities_2.0.3.tgz"; 4437 + name = "entities___entities_2.1.0.tgz"; 4422 4438 path = fetchurl { 4423 - name = "entities___entities_2.0.3.tgz"; 4424 - url = "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz"; 4425 - sha1 = "5c487e5742ab93c15abb5da22759b8590ec03b7f"; 4439 + name = "entities___entities_2.1.0.tgz"; 4440 + url = "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz"; 4441 + sha1 = "992d3129cf7df6870b96c57858c249a120f8b8b5"; 4426 4442 }; 4427 4443 } 4428 4444 { ··· 4530 4546 }; 4531 4547 } 4532 4548 { 4533 - name = "escalade___escalade_3.1.0.tgz"; 4549 + name = "escalade___escalade_3.1.1.tgz"; 4534 4550 path = fetchurl { 4535 - name = "escalade___escalade_3.1.0.tgz"; 4536 - url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.0.tgz"; 4537 - sha1 = "e8e2d7c7a8b76f6ee64c2181d6b8151441602d4e"; 4551 + name = "escalade___escalade_3.1.1.tgz"; 4552 + url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz"; 4553 + sha1 = "d8cfdc7000965c5a0174b4a82eaa5c0552742e40"; 4538 4554 }; 4539 4555 } 4540 4556 { ··· 4570 4586 }; 4571 4587 } 4572 4588 { 4573 - name = "eslint_config_prettier___eslint_config_prettier_6.12.0.tgz"; 4589 + name = "eslint_config_prettier___eslint_config_prettier_6.15.0.tgz"; 4574 4590 path = fetchurl { 4575 - name = "eslint_config_prettier___eslint_config_prettier_6.12.0.tgz"; 4576 - url = "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.12.0.tgz"; 4577 - sha1 = "9eb2bccff727db1c52104f0b49e87ea46605a0d2"; 4591 + name = "eslint_config_prettier___eslint_config_prettier_6.15.0.tgz"; 4592 + url = "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz"; 4593 + sha1 = "7f93f6cb7d45a92f1537a70ecc06366e1ac6fed9"; 4578 4594 }; 4579 4595 } 4580 4596 { ··· 4650 4666 }; 4651 4667 } 4652 4668 { 4653 - name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.3.1.tgz"; 4669 + name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.4.1.tgz"; 4654 4670 path = fetchurl { 4655 - name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.3.1.tgz"; 4656 - url = "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.3.1.tgz"; 4657 - sha1 = "99ef7e97f567cc6a5b8dd5ab95a94a67058a2660"; 4671 + name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.4.1.tgz"; 4672 + url = "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz"; 4673 + sha1 = "a2d84caa49756942f42f1ffab9002436391718fd"; 4658 4674 }; 4659 4675 } 4660 4676 { ··· 4690 4706 }; 4691 4707 } 4692 4708 { 4693 - name = "eslint_plugin_react___eslint_plugin_react_7.21.3.tgz"; 4709 + name = "eslint_plugin_react___eslint_plugin_react_7.21.5.tgz"; 4694 4710 path = fetchurl { 4695 - name = "eslint_plugin_react___eslint_plugin_react_7.21.3.tgz"; 4696 - url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.21.3.tgz"; 4697 - sha1 = "71655d2af5155b19285ec929dd2cdc67a4470b52"; 4711 + name = "eslint_plugin_react___eslint_plugin_react_7.21.5.tgz"; 4712 + url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz"; 4713 + sha1 = "50b21a412b9574bfe05b21db176e8b7b3b15bff3"; 4698 4714 }; 4699 4715 } 4700 4716 { ··· 5378 5394 }; 5379 5395 } 5380 5396 { 5381 - name = "gensync___gensync_1.0.0_beta.1.tgz"; 5397 + name = "gensync___gensync_1.0.0_beta.2.tgz"; 5382 5398 path = fetchurl { 5383 - name = "gensync___gensync_1.0.0_beta.1.tgz"; 5384 - url = "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz"; 5385 - sha1 = "58f4361ff987e5ff6e1e7a210827aa371eaac269"; 5399 + name = "gensync___gensync_1.0.0_beta.2.tgz"; 5400 + url = "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz"; 5401 + sha1 = "32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"; 5386 5402 }; 5387 5403 } 5388 5404 { ··· 5394 5410 }; 5395 5411 } 5396 5412 { 5413 + name = "get_intrinsic___get_intrinsic_1.0.1.tgz"; 5414 + path = fetchurl { 5415 + name = "get_intrinsic___get_intrinsic_1.0.1.tgz"; 5416 + url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz"; 5417 + sha1 = "94a9768fcbdd0595a1c9273aacf4c89d075631be"; 5418 + }; 5419 + } 5420 + { 5397 5421 name = "get_own_enumerable_property_symbols___get_own_enumerable_property_symbols_3.0.2.tgz"; 5398 5422 path = fetchurl { 5399 5423 name = "get_own_enumerable_property_symbols___get_own_enumerable_property_symbols_3.0.2.tgz"; ··· 5906 5930 }; 5907 5931 } 5908 5932 { 5909 - name = "ieee754___ieee754_1.1.13.tgz"; 5933 + name = "ieee754___ieee754_1.2.1.tgz"; 5910 5934 path = fetchurl { 5911 - name = "ieee754___ieee754_1.1.13.tgz"; 5912 - url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz"; 5913 - sha1 = "ec168558e95aa181fd87d37f55c32bbcb6708b84"; 5935 + name = "ieee754___ieee754_1.2.1.tgz"; 5936 + url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz"; 5937 + sha1 = "8eb7a10a63fff25d15a57b001586d177d1b0d352"; 5914 5938 }; 5915 5939 } 5916 5940 { ··· 5962 5986 }; 5963 5987 } 5964 5988 { 5965 - name = "import_fresh___import_fresh_3.2.1.tgz"; 5989 + name = "import_fresh___import_fresh_3.2.2.tgz"; 5966 5990 path = fetchurl { 5967 - name = "import_fresh___import_fresh_3.2.1.tgz"; 5968 - url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz"; 5969 - sha1 = "633ff618506e793af5ac91bf48b72677e15cbe66"; 5991 + name = "import_fresh___import_fresh_3.2.2.tgz"; 5992 + url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz"; 5993 + sha1 = "fc129c160c5d68235507f4331a6baad186bdbc3e"; 5970 5994 }; 5971 5995 } 5972 5996 { ··· 6234 6258 }; 6235 6259 } 6236 6260 { 6261 + name = "is_core_module___is_core_module_2.1.0.tgz"; 6262 + path = fetchurl { 6263 + name = "is_core_module___is_core_module_2.1.0.tgz"; 6264 + url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz"; 6265 + sha1 = "a4cc031d9b1aca63eecbd18a650e13cb4eeab946"; 6266 + }; 6267 + } 6268 + { 6237 6269 name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; 6238 6270 path = fetchurl { 6239 6271 name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; ··· 6674 6706 }; 6675 6707 } 6676 6708 { 6677 - name = "jest_diff___jest_diff_25.5.0.tgz"; 6709 + name = "jest_diff___jest_diff_26.6.2.tgz"; 6678 6710 path = fetchurl { 6679 - name = "jest_diff___jest_diff_25.5.0.tgz"; 6680 - url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz"; 6681 - sha1 = "1dd26ed64f96667c068cef026b677dfa01afcfa9"; 6711 + name = "jest_diff___jest_diff_26.6.2.tgz"; 6712 + url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz"; 6713 + sha1 = "1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394"; 6682 6714 }; 6683 6715 } 6684 6716 { ··· 6738 6770 }; 6739 6771 } 6740 6772 { 6741 - name = "jest_get_type___jest_get_type_25.2.6.tgz"; 6773 + name = "jest_get_type___jest_get_type_26.3.0.tgz"; 6742 6774 path = fetchurl { 6743 - name = "jest_get_type___jest_get_type_25.2.6.tgz"; 6744 - url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz"; 6745 - sha1 = "0b0a32fab8908b44d508be81681487dbabb8d877"; 6775 + name = "jest_get_type___jest_get_type_26.3.0.tgz"; 6776 + url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz"; 6777 + sha1 = "e97dc3c3f53c2b406ca7afaed4493b1d099199e0"; 6746 6778 }; 6747 6779 } 6748 6780 { ··· 7114 7146 }; 7115 7147 } 7116 7148 { 7149 + name = "jsx_ast_utils___jsx_ast_utils_3.1.0.tgz"; 7150 + path = fetchurl { 7151 + name = "jsx_ast_utils___jsx_ast_utils_3.1.0.tgz"; 7152 + url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.1.0.tgz"; 7153 + sha1 = "642f1d7b88aa6d7eb9d8f2210e166478444fa891"; 7154 + }; 7155 + } 7156 + { 7117 7157 name = "just_extend___just_extend_4.1.1.tgz"; 7118 7158 path = fetchurl { 7119 7159 name = "just_extend___just_extend_4.1.1.tgz"; ··· 7178 7218 }; 7179 7219 } 7180 7220 { 7181 - name = "language_subtag_registry___language_subtag_registry_0.3.20.tgz"; 7221 + name = "language_subtag_registry___language_subtag_registry_0.3.21.tgz"; 7182 7222 path = fetchurl { 7183 - name = "language_subtag_registry___language_subtag_registry_0.3.20.tgz"; 7184 - url = "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.20.tgz"; 7185 - sha1 = "a00a37121894f224f763268e431c55556b0c0755"; 7223 + name = "language_subtag_registry___language_subtag_registry_0.3.21.tgz"; 7224 + url = "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz"; 7225 + sha1 = "04ac218bea46f04cb039084602c6da9e788dd45a"; 7186 7226 }; 7187 7227 } 7188 7228 { ··· 7506 7546 }; 7507 7547 } 7508 7548 { 7509 - name = "mdn_data___mdn_data_2.0.4.tgz"; 7549 + name = "mdn_data___mdn_data_2.0.14.tgz"; 7510 7550 path = fetchurl { 7511 - name = "mdn_data___mdn_data_2.0.4.tgz"; 7512 - url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz"; 7513 - sha1 = "699b3c38ac6f1d728091a64650b65d388502fd5b"; 7551 + name = "mdn_data___mdn_data_2.0.14.tgz"; 7552 + url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz"; 7553 + sha1 = "7113fc4281917d63ce29b43446f701e68c25ba50"; 7514 7554 }; 7515 7555 } 7516 7556 { 7517 - name = "mdn_data___mdn_data_2.0.6.tgz"; 7557 + name = "mdn_data___mdn_data_2.0.4.tgz"; 7518 7558 path = fetchurl { 7519 - name = "mdn_data___mdn_data_2.0.6.tgz"; 7520 - url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.6.tgz"; 7521 - sha1 = "852dc60fcaa5daa2e8cf6c9189c440ed3e042978"; 7559 + name = "mdn_data___mdn_data_2.0.4.tgz"; 7560 + url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz"; 7561 + sha1 = "699b3c38ac6f1d728091a64650b65d388502fd5b"; 7522 7562 }; 7523 7563 } 7524 7564 { ··· 7762 7802 }; 7763 7803 } 7764 7804 { 7765 - name = "moment_timezone___moment_timezone_0.5.31.tgz"; 7805 + name = "moment_timezone___moment_timezone_0.5.32.tgz"; 7766 7806 path = fetchurl { 7767 - name = "moment_timezone___moment_timezone_0.5.31.tgz"; 7768 - url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.31.tgz"; 7769 - sha1 = "9c40d8c5026f0c7ab46eda3d63e49c155148de05"; 7807 + name = "moment_timezone___moment_timezone_0.5.32.tgz"; 7808 + url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.32.tgz"; 7809 + sha1 = "db7677cc3cc680fd30303ebd90b0da1ca0dfecc2"; 7770 7810 }; 7771 7811 } 7772 7812 { ··· 7850 7890 }; 7851 7891 } 7852 7892 { 7853 - name = "nan___nan_2.14.1.tgz"; 7893 + name = "nan___nan_2.14.2.tgz"; 7854 7894 path = fetchurl { 7855 - name = "nan___nan_2.14.1.tgz"; 7856 - url = "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz"; 7857 - sha1 = "d7be34dfa3105b91494c3147089315eff8874b01"; 7895 + name = "nan___nan_2.14.2.tgz"; 7896 + url = "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz"; 7897 + sha1 = "f5376400695168f4cc694ac9393d0c9585eeea19"; 7858 7898 }; 7859 7899 } 7860 7900 { ··· 7978 8018 }; 7979 8019 } 7980 8020 { 7981 - name = "node_releases___node_releases_1.1.61.tgz"; 8021 + name = "node_releases___node_releases_1.1.67.tgz"; 7982 8022 path = fetchurl { 7983 - name = "node_releases___node_releases_1.1.61.tgz"; 7984 - url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.61.tgz"; 7985 - sha1 = "707b0fca9ce4e11783612ba4a2fcba09047af16e"; 8023 + name = "node_releases___node_releases_1.1.67.tgz"; 8024 + url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz"; 8025 + sha1 = "28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12"; 7986 8026 }; 7987 8027 } 7988 8028 { ··· 8138 8178 }; 8139 8179 } 8140 8180 { 8141 - name = "object.assign___object.assign_4.1.1.tgz"; 8181 + name = "object.assign___object.assign_4.1.2.tgz"; 8142 8182 path = fetchurl { 8143 - name = "object.assign___object.assign_4.1.1.tgz"; 8144 - url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.1.tgz"; 8145 - sha1 = "303867a666cdd41936ecdedfb1f8f3e32a478cdd"; 8183 + name = "object.assign___object.assign_4.1.2.tgz"; 8184 + url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz"; 8185 + sha1 = "0ed54a342eceb37b38ff76eb831a0e788cb63940"; 8146 8186 }; 8147 8187 } 8148 8188 { ··· 8970 9010 }; 8971 9011 } 8972 9012 { 8973 - name = "postcss_font_variant___postcss_font_variant_4.0.0.tgz"; 9013 + name = "postcss_font_variant___postcss_font_variant_4.0.1.tgz"; 8974 9014 path = fetchurl { 8975 - name = "postcss_font_variant___postcss_font_variant_4.0.0.tgz"; 8976 - url = "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-4.0.0.tgz"; 8977 - sha1 = "71dd3c6c10a0d846c5eda07803439617bbbabacc"; 9015 + name = "postcss_font_variant___postcss_font_variant_4.0.1.tgz"; 9016 + url = "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz"; 9017 + sha1 = "42d4c0ab30894f60f98b17561eb5c0321f502641"; 8978 9018 }; 8979 9019 } 8980 9020 { ··· 9426 9466 }; 9427 9467 } 9428 9468 { 9429 - name = "pretty_error___pretty_error_2.1.1.tgz"; 9469 + name = "pretty_error___pretty_error_2.1.2.tgz"; 9430 9470 path = fetchurl { 9431 - name = "pretty_error___pretty_error_2.1.1.tgz"; 9432 - url = "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz"; 9433 - sha1 = "5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3"; 9471 + name = "pretty_error___pretty_error_2.1.2.tgz"; 9472 + url = "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz"; 9473 + sha1 = "be89f82d81b1c86ec8fdfbc385045882727f93b6"; 9434 9474 }; 9435 9475 } 9436 9476 { ··· 9442 9482 }; 9443 9483 } 9444 9484 { 9445 - name = "pretty_format___pretty_format_25.5.0.tgz"; 9485 + name = "pretty_format___pretty_format_26.6.2.tgz"; 9446 9486 path = fetchurl { 9447 - name = "pretty_format___pretty_format_25.5.0.tgz"; 9448 - url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz"; 9449 - sha1 = "7873c1d774f682c34b8d48b6743a2bf2ac55791a"; 9487 + name = "pretty_format___pretty_format_26.6.2.tgz"; 9488 + url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz"; 9489 + sha1 = "e35c2705f14cb7fe2fe94fa078345b444120fc93"; 9450 9490 }; 9451 9491 } 9452 9492 { ··· 9482 9522 }; 9483 9523 } 9484 9524 { 9485 - name = "promise_polyfill___promise_polyfill_8.1.3.tgz"; 9525 + name = "promise_polyfill___promise_polyfill_8.2.0.tgz"; 9486 9526 path = fetchurl { 9487 - name = "promise_polyfill___promise_polyfill_8.1.3.tgz"; 9488 - url = "https://registry.yarnpkg.com/promise-polyfill/-/promise-polyfill-8.1.3.tgz"; 9489 - sha1 = "8c99b3cf53f3a91c68226ffde7bde81d7f904116"; 9527 + name = "promise_polyfill___promise_polyfill_8.2.0.tgz"; 9528 + url = "https://registry.yarnpkg.com/promise-polyfill/-/promise-polyfill-8.2.0.tgz"; 9529 + sha1 = "367394726da7561457aba2133c9ceefbd6267da0"; 9490 9530 }; 9491 9531 } 9492 9532 { ··· 9498 9538 }; 9499 9539 } 9500 9540 { 9501 - name = "prompts___prompts_2.3.2.tgz"; 9541 + name = "prompts___prompts_2.4.0.tgz"; 9502 9542 path = fetchurl { 9503 - name = "prompts___prompts_2.3.2.tgz"; 9504 - url = "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz"; 9505 - sha1 = "480572d89ecf39566d2bd3fe2c9fccb7c4c0b068"; 9543 + name = "prompts___prompts_2.4.0.tgz"; 9544 + url = "https://registry.yarnpkg.com/prompts/-/prompts-2.4.0.tgz"; 9545 + sha1 = "4aa5de0723a231d1ee9121c40fdf663df73f61d7"; 9506 9546 }; 9507 9547 } 9508 9548 { ··· 9746 9786 }; 9747 9787 } 9748 9788 { 9749 - name = "react_dom___react_dom_16.13.1.tgz"; 9789 + name = "react_dom___react_dom_16.14.0.tgz"; 9750 9790 path = fetchurl { 9751 - name = "react_dom___react_dom_16.13.1.tgz"; 9752 - url = "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz"; 9753 - sha1 = "c1bd37331a0486c078ee54c4740720993b2e0e7f"; 9791 + name = "react_dom___react_dom_16.14.0.tgz"; 9792 + url = "https://registry.yarnpkg.com/react-dom/-/react-dom-16.14.0.tgz"; 9793 + sha1 = "7ad838ec29a777fb3c75c3a190f661cf92ab8b89"; 9754 9794 }; 9755 9795 } 9756 9796 { 9757 - name = "react_error_overlay___react_error_overlay_6.0.7.tgz"; 9797 + name = "react_error_overlay___react_error_overlay_6.0.8.tgz"; 9758 9798 path = fetchurl { 9759 - name = "react_error_overlay___react_error_overlay_6.0.7.tgz"; 9760 - url = "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.7.tgz"; 9761 - sha1 = "1dcfb459ab671d53f660a991513cb2f0a0553108"; 9799 + name = "react_error_overlay___react_error_overlay_6.0.8.tgz"; 9800 + url = "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.8.tgz"; 9801 + sha1 = "474ed11d04fc6bda3af643447d85e9127ed6b5de"; 9762 9802 }; 9763 9803 } 9764 9804 { ··· 9767 9807 name = "react_is___react_is_16.13.1.tgz"; 9768 9808 url = "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz"; 9769 9809 sha1 = "789729a4dc36de2999dc156dd6c1d9c18cea56a4"; 9810 + }; 9811 + } 9812 + { 9813 + name = "react_is___react_is_17.0.1.tgz"; 9814 + path = fetchurl { 9815 + name = "react_is___react_is_17.0.1.tgz"; 9816 + url = "https://registry.yarnpkg.com/react-is/-/react-is-17.0.1.tgz"; 9817 + sha1 = "5b3531bd76a645a4c9fb6e693ed36419e3301339"; 9770 9818 }; 9771 9819 } 9772 9820 { ··· 9802 9850 }; 9803 9851 } 9804 9852 { 9805 - name = "react_test_renderer___react_test_renderer_16.13.1.tgz"; 9853 + name = "react_test_renderer___react_test_renderer_16.14.0.tgz"; 9806 9854 path = fetchurl { 9807 - name = "react_test_renderer___react_test_renderer_16.13.1.tgz"; 9808 - url = "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.13.1.tgz"; 9809 - sha1 = "de25ea358d9012606de51e012d9742e7f0deabc1"; 9855 + name = "react_test_renderer___react_test_renderer_16.14.0.tgz"; 9856 + url = "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.14.0.tgz"; 9857 + sha1 = "e98360087348e260c56d4fe2315e970480c228ae"; 9810 9858 }; 9811 9859 } 9812 9860 { ··· 9818 9866 }; 9819 9867 } 9820 9868 { 9821 - name = "react___react_16.13.1.tgz"; 9869 + name = "react___react_16.14.0.tgz"; 9822 9870 path = fetchurl { 9823 - name = "react___react_16.13.1.tgz"; 9824 - url = "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz"; 9825 - sha1 = "2e818822f1a9743122c063d6410d85c1e3afe48e"; 9871 + name = "react___react_16.14.0.tgz"; 9872 + url = "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz"; 9873 + sha1 = "94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d"; 9826 9874 }; 9827 9875 } 9828 9876 { 9829 - name = "reactstrap___reactstrap_8.6.0.tgz"; 9877 + name = "reactstrap___reactstrap_8.7.1.tgz"; 9830 9878 path = fetchurl { 9831 - name = "reactstrap___reactstrap_8.6.0.tgz"; 9832 - url = "https://registry.yarnpkg.com/reactstrap/-/reactstrap-8.6.0.tgz"; 9833 - sha1 = "baee0d12990c9fef3c82199fb05e84d9f0af1a26"; 9879 + name = "reactstrap___reactstrap_8.7.1.tgz"; 9880 + url = "https://registry.yarnpkg.com/reactstrap/-/reactstrap-8.7.1.tgz"; 9881 + sha1 = "9631db8460a83a4d40fbee61abdd577b4f1a7069"; 9834 9882 }; 9835 9883 } 9836 9884 { ··· 9890 9938 }; 9891 9939 } 9892 9940 { 9893 - name = "readdirp___readdirp_3.4.0.tgz"; 9941 + name = "readdirp___readdirp_3.5.0.tgz"; 9894 9942 path = fetchurl { 9895 - name = "readdirp___readdirp_3.4.0.tgz"; 9896 - url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz"; 9897 - sha1 = "9fdccdf9e9155805449221ac645e8303ab5b9ada"; 9943 + name = "readdirp___readdirp_3.5.0.tgz"; 9944 + url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz"; 9945 + sha1 = "9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"; 9898 9946 }; 9899 9947 } 9900 9948 { ··· 9930 9978 }; 9931 9979 } 9932 9980 { 9933 - name = "regenerate___regenerate_1.4.1.tgz"; 9981 + name = "regenerate___regenerate_1.4.2.tgz"; 9934 9982 path = fetchurl { 9935 - name = "regenerate___regenerate_1.4.1.tgz"; 9936 - url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz"; 9937 - sha1 = "cad92ad8e6b591773485fbe05a485caf4f457e6f"; 9983 + name = "regenerate___regenerate_1.4.2.tgz"; 9984 + url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz"; 9985 + sha1 = "b9346d8827e8f5a32f7ba29637d398b69014848a"; 9938 9986 }; 9939 9987 } 9940 9988 { ··· 10042 10090 }; 10043 10091 } 10044 10092 { 10045 - name = "renderkid___renderkid_2.0.3.tgz"; 10093 + name = "renderkid___renderkid_2.0.4.tgz"; 10046 10094 path = fetchurl { 10047 - name = "renderkid___renderkid_2.0.3.tgz"; 10048 - url = "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.3.tgz"; 10049 - sha1 = "380179c2ff5ae1365c522bf2fcfcff01c5b74149"; 10095 + name = "renderkid___renderkid_2.0.4.tgz"; 10096 + url = "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.4.tgz"; 10097 + sha1 = "d325e532afb28d3f8796ffee306be8ffd6fc864c"; 10050 10098 }; 10051 10099 } 10052 10100 { ··· 10178 10226 }; 10179 10227 } 10180 10228 { 10181 - name = "resolve___resolve_1.17.0.tgz"; 10229 + name = "resolve___resolve_1.19.0.tgz"; 10182 10230 path = fetchurl { 10183 - name = "resolve___resolve_1.17.0.tgz"; 10184 - url = "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz"; 10185 - sha1 = "b25941b54968231cc2d1bb76a79cb7f2c0bf8444"; 10231 + name = "resolve___resolve_1.19.0.tgz"; 10232 + url = "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz"; 10233 + sha1 = "1af5bf630409734a067cae29318aac7fa29a267c"; 10186 10234 }; 10187 10235 } 10188 10236 { ··· 10634 10682 }; 10635 10683 } 10636 10684 { 10637 - name = "sinon___sinon_9.2.0.tgz"; 10685 + name = "sinon___sinon_9.2.1.tgz"; 10638 10686 path = fetchurl { 10639 - name = "sinon___sinon_9.2.0.tgz"; 10640 - url = "https://registry.yarnpkg.com/sinon/-/sinon-9.2.0.tgz"; 10641 - sha1 = "1d333967e30023609f7347351ebc0dc964c0f3c9"; 10687 + name = "sinon___sinon_9.2.1.tgz"; 10688 + url = "https://registry.yarnpkg.com/sinon/-/sinon-9.2.1.tgz"; 10689 + sha1 = "64cc88beac718557055bd8caa526b34a2231be6d"; 10642 10690 }; 10643 10691 } 10644 10692 { ··· 10874 10922 }; 10875 10923 } 10876 10924 { 10877 - name = "stack_utils___stack_utils_1.0.2.tgz"; 10925 + name = "stack_utils___stack_utils_1.0.3.tgz"; 10878 10926 path = fetchurl { 10879 - name = "stack_utils___stack_utils_1.0.2.tgz"; 10880 - url = "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz"; 10881 - sha1 = "33eba3897788558bebfc2db059dc158ec36cebb8"; 10927 + name = "stack_utils___stack_utils_1.0.3.tgz"; 10928 + url = "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.3.tgz"; 10929 + sha1 = "db7a475733b5b8bf6521907b18891d29006f7751"; 10882 10930 }; 10883 10931 } 10884 10932 { ··· 10994 11042 }; 10995 11043 } 10996 11044 { 10997 - name = "string.prototype.trimend___string.prototype.trimend_1.0.1.tgz"; 11045 + name = "string.prototype.trimend___string.prototype.trimend_1.0.2.tgz"; 10998 11046 path = fetchurl { 10999 - name = "string.prototype.trimend___string.prototype.trimend_1.0.1.tgz"; 11000 - url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz"; 11001 - sha1 = "85812a6b847ac002270f5808146064c995fb6913"; 11047 + name = "string.prototype.trimend___string.prototype.trimend_1.0.2.tgz"; 11048 + url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.2.tgz"; 11049 + sha1 = "6ddd9a8796bc714b489a3ae22246a208f37bfa46"; 11002 11050 }; 11003 11051 } 11004 11052 { 11005 - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.1.tgz"; 11053 + name = "string.prototype.trimstart___string.prototype.trimstart_1.0.2.tgz"; 11006 11054 path = fetchurl { 11007 - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.1.tgz"; 11008 - url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz"; 11009 - sha1 = "14af6d9f34b053f7cfc89b72f8f2ee14b9039a54"; 11055 + name = "string.prototype.trimstart___string.prototype.trimstart_1.0.2.tgz"; 11056 + url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.2.tgz"; 11057 + sha1 = "22d45da81015309cd0cdd79787e8919fc5c613e7"; 11010 11058 }; 11011 11059 } 11012 11060 { ··· 11274 11322 }; 11275 11323 } 11276 11324 { 11277 - name = "timers_browserify___timers_browserify_2.0.11.tgz"; 11325 + name = "timers_browserify___timers_browserify_2.0.12.tgz"; 11278 11326 path = fetchurl { 11279 - name = "timers_browserify___timers_browserify_2.0.11.tgz"; 11280 - url = "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz"; 11281 - sha1 = "800b1f3eee272e5bc53ee465a04d0e804c31211f"; 11327 + name = "timers_browserify___timers_browserify_2.0.12.tgz"; 11328 + url = "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz"; 11329 + sha1 = "44a45c11fbf407f34f97bccd1577c652361b00ee"; 11282 11330 }; 11283 11331 } 11284 11332 { ··· 11426 11474 }; 11427 11475 } 11428 11476 { 11429 - name = "tslib___tslib_1.14.0.tgz"; 11477 + name = "tslib___tslib_1.14.1.tgz"; 11430 11478 path = fetchurl { 11431 - name = "tslib___tslib_1.14.0.tgz"; 11432 - url = "https://registry.yarnpkg.com/tslib/-/tslib-1.14.0.tgz"; 11433 - sha1 = "d624983f3e2c5e0b55307c3dd6c86acd737622c6"; 11479 + name = "tslib___tslib_1.14.1.tgz"; 11480 + url = "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz"; 11481 + sha1 = "cf2d38bdc34a134bcaf1091c41f6619e2f672d00"; 11434 11482 }; 11435 11483 } 11436 11484 { ··· 11770 11818 }; 11771 11819 } 11772 11820 { 11773 - name = "v8_compile_cache___v8_compile_cache_2.1.1.tgz"; 11821 + name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 11774 11822 path = fetchurl { 11775 - name = "v8_compile_cache___v8_compile_cache_2.1.1.tgz"; 11776 - url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz"; 11777 - sha1 = "54bc3cdd43317bca91e35dcaf305b1a7237de745"; 11823 + name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 11824 + url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"; 11825 + sha1 = "9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"; 11778 11826 }; 11779 11827 } 11780 11828 { ··· 11858 11906 }; 11859 11907 } 11860 11908 { 11861 - name = "watchpack_chokidar2___watchpack_chokidar2_2.0.0.tgz"; 11909 + name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz"; 11862 11910 path = fetchurl { 11863 - name = "watchpack_chokidar2___watchpack_chokidar2_2.0.0.tgz"; 11864 - url = "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz"; 11865 - sha1 = "9948a1866cbbd6cb824dea13a7ed691f6c8ddff0"; 11911 + name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz"; 11912 + url = "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz"; 11913 + sha1 = "38500072ee6ece66f3769936950ea1771be1c957"; 11866 11914 }; 11867 11915 } 11868 11916 { 11869 - name = "watchpack___watchpack_1.7.4.tgz"; 11917 + name = "watchpack___watchpack_1.7.5.tgz"; 11870 11918 path = fetchurl { 11871 - name = "watchpack___watchpack_1.7.4.tgz"; 11872 - url = "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.4.tgz"; 11873 - sha1 = "6e9da53b3c80bb2d6508188f5b200410866cd30b"; 11919 + name = "watchpack___watchpack_1.7.5.tgz"; 11920 + url = "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz"; 11921 + sha1 = "1267e6c55e0b9b5be44c2023aed5437a2c26c453"; 11874 11922 }; 11875 11923 } 11876 11924 { ··· 11986 12034 }; 11987 12035 } 11988 12036 { 11989 - name = "whatwg_fetch___whatwg_fetch_3.4.1.tgz"; 12037 + name = "whatwg_fetch___whatwg_fetch_3.5.0.tgz"; 11990 12038 path = fetchurl { 11991 - name = "whatwg_fetch___whatwg_fetch_3.4.1.tgz"; 11992 - url = "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.4.1.tgz"; 11993 - sha1 = "e5f871572d6879663fa5674c8f833f15a8425ab3"; 12039 + name = "whatwg_fetch___whatwg_fetch_3.5.0.tgz"; 12040 + url = "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.5.0.tgz"; 12041 + sha1 = "605a2cd0a7146e5db141e29d1c62ab84c0c4c868"; 11994 12042 }; 11995 12043 } 11996 12044 { ··· 12018 12066 }; 12019 12067 } 12020 12068 { 12021 - name = "whatwg_url___whatwg_url_8.3.0.tgz"; 12069 + name = "whatwg_url___whatwg_url_8.4.0.tgz"; 12022 12070 path = fetchurl { 12023 - name = "whatwg_url___whatwg_url_8.3.0.tgz"; 12024 - url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.3.0.tgz"; 12025 - sha1 = "d1e11e565334486cdb280d3101b9c3fd1c867582"; 12071 + name = "whatwg_url___whatwg_url_8.4.0.tgz"; 12072 + url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.4.0.tgz"; 12073 + sha1 = "50fb9615b05469591d2b2bd6dfaed2942ed72837"; 12026 12074 }; 12027 12075 } 12028 12076 { ··· 12250 12298 }; 12251 12299 } 12252 12300 { 12253 - name = "ws___ws_7.3.1.tgz"; 12301 + name = "ws___ws_7.4.0.tgz"; 12254 12302 path = fetchurl { 12255 - name = "ws___ws_7.3.1.tgz"; 12256 - url = "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz"; 12257 - sha1 = "d0547bf67f7ce4f12a72dfe31262c68d7dc551c8"; 12303 + name = "ws___ws_7.4.0.tgz"; 12304 + url = "https://registry.yarnpkg.com/ws/-/ws-7.4.0.tgz"; 12305 + sha1 = "a5dd76a24197940d4a8bb9e0e152bb4503764da7"; 12258 12306 }; 12259 12307 } 12260 12308 { ··· 12274 12322 }; 12275 12323 } 12276 12324 { 12277 - name = "xregexp___xregexp_4.3.0.tgz"; 12325 + name = "xregexp___xregexp_4.4.0.tgz"; 12278 12326 path = fetchurl { 12279 - name = "xregexp___xregexp_4.3.0.tgz"; 12280 - url = "https://registry.yarnpkg.com/xregexp/-/xregexp-4.3.0.tgz"; 12281 - sha1 = "7e92e73d9174a99a59743f67a4ce879a04b5ae50"; 12327 + name = "xregexp___xregexp_4.4.0.tgz"; 12328 + url = "https://registry.yarnpkg.com/xregexp/-/xregexp-4.4.0.tgz"; 12329 + sha1 = "29660f5d6567cd2ef981dd4a50cb05d22c10719d"; 12282 12330 }; 12283 12331 } 12284 12332 {
+2 -2
pkgs/tools/admin/awscli/default.nix
··· 28 28 29 29 in with py.pkgs; buildPythonApplication rec { 30 30 pname = "awscli"; 31 - version = "1.18.202"; # N.B: if you change this, change botocore to a matching version too 31 + version = "1.18.203"; # N.B: if you change this, change botocore to a matching version too 32 32 33 33 src = fetchPypi { 34 34 inherit pname version; 35 - sha256 = "sha256-nlgqIzFELlg8Ck3HCXBx/LDzlM9p2CGKOgA2vS+r2y0="; 35 + sha256 = "sha256-afcXbYKRc9w0Zbuyg/bDA/J/lHm4N4FttUgGk4h4H4k="; 36 36 }; 37 37 38 38 postPatch = ''
+30 -18
pkgs/tools/misc/picocom/default.nix
··· 1 - { stdenv, fetchFromGitHub, makeWrapper, lrzsz, IOKit }: 2 - 3 - assert stdenv.isDarwin -> IOKit != null; 4 - 5 - with stdenv.lib; 1 + { stdenv 2 + , fetchFromGitHub 3 + , installShellFiles 4 + , lrzsz 5 + , IOKit 6 + }: 6 7 7 8 stdenv.mkDerivation rec { 8 9 pname = "picocom"; 9 - version = "3.1"; 10 + # last tagged release is 3.1 but 3.2 is still considered a release 11 + version = "3.2a"; 10 12 13 + # upstream is quiet as the original author is no longer active since March 2018 11 14 src = fetchFromGitHub { 12 15 owner = "npat-efault"; 13 16 repo = "picocom"; 14 - rev = version; 15 - sha256 = "1vvjydqf0ax47nvdyyl67jafw5b3sfsav00xid6qpgia1gs2r72n"; 17 + rev = "1acf1ddabaf3576b4023c4f6f09c5a3e4b086fb8"; 18 + sha256 = "sha256-cs2bxqZfTbnY5d+VJ257C5hssaFvYup3tBKz68ROnAo="; 16 19 }; 17 20 18 - buildInputs = [ makeWrapper ] 19 - ++ optionals stdenv.isDarwin [ IOKit ]; 21 + postPatch = '' 22 + substituteInPlace Makefile \ 23 + --replace '.picocom_history' '.cache/picocom_history' 20 24 21 - installPhase = '' 22 - mkdir -p $out/bin $out/share/man/man1 23 - cp picocom $out/bin 24 - cp picocom.1 $out/share/man/man1 25 + substituteInPlace picocom.c \ 26 + --replace '"rz -vv"' '"${lrzsz}/bin/rz -vv"' \ 27 + --replace '"sz -vv"' '"${lrzsz}/bin/sz -vv"' 28 + ''; 25 29 26 - wrapProgram $out/bin/picocom \ 27 - --prefix PATH ":" "${lrzsz}/bin" 30 + enableParallelBuilding = true; 31 + 32 + nativeBuildInputs = [ installShellFiles ]; 33 + 34 + buildInputs = stdenv.lib.optional stdenv.isDarwin IOKit; 35 + 36 + installPhase = '' 37 + install -Dm555 -t $out/bin picocom 38 + installManPage picocom.1 39 + installShellCompletion --bash bash_completion/picocom 28 40 ''; 29 41 30 - meta = { 42 + meta = with stdenv.lib; { 31 43 description = "Minimal dumb-terminal emulation program"; 32 44 homepage = "https://github.com/npat-efault/picocom/"; 33 - license = stdenv.lib.licenses.gpl2Plus; 45 + license = licenses.gpl2Plus; 34 46 platforms = platforms.unix; 35 47 }; 36 48 }
+3 -1
pkgs/tools/system/colorls/Gemfile.lock
··· 2 2 remote: https://rubygems.org/ 3 3 specs: 4 4 clocale (0.0.4) 5 - colorls (1.4.2) 5 + colorls (1.4.3) 6 6 clocale (~> 0) 7 7 filesize (~> 0) 8 8 manpages (~> 0) 9 9 rainbow (>= 2.2, < 4.0) 10 + unicode-display_width (~> 1.7) 10 11 filesize (0.2.0) 11 12 manpages (0.6.1) 12 13 rainbow (3.0.0) 14 + unicode-display_width (1.7.0) 13 15 14 16 PLATFORMS 15 17 ruby
+13 -3
pkgs/tools/system/colorls/gemset.nix
··· 10 10 version = "0.0.4"; 11 11 }; 12 12 colorls = { 13 - dependencies = ["clocale" "filesize" "manpages" "rainbow"]; 13 + dependencies = ["clocale" "filesize" "manpages" "rainbow" "unicode-display_width"]; 14 14 groups = ["default"]; 15 15 platforms = []; 16 16 source = { 17 17 remotes = ["https://rubygems.org"]; 18 - sha256 = "0sw377wklld5zn1la0smxc2bg4rph2xf9d0h3zmxhmds06lb92db"; 18 + sha256 = "1w9d99qzgxw8wwa4z1vkdnr70fppx2g9shma6dz3ihjhajj2xvmq"; 19 19 type = "gem"; 20 20 }; 21 - version = "1.4.2"; 21 + version = "1.4.3"; 22 22 }; 23 23 filesize = { 24 24 groups = ["default"]; ··· 49 49 type = "gem"; 50 50 }; 51 51 version = "3.0.0"; 52 + }; 53 + unicode-display_width = { 54 + groups = ["default"]; 55 + platforms = []; 56 + source = { 57 + remotes = ["https://rubygems.org"]; 58 + sha256 = "06i3id27s60141x6fdnjn5rar1cywdwy64ilc59cz937303q3mna"; 59 + type = "gem"; 60 + }; 61 + version = "1.7.0"; 52 62 }; 53 63 }
+1 -1
pkgs/top-level/all-packages.nix
··· 15537 15537 15538 15538 qjson = callPackage ../development/libraries/qjson { }; 15539 15539 15540 - qolibri = libsForQt514.callPackage ../applications/misc/qolibri { }; 15540 + qolibri = libsForQt5.callPackage ../applications/misc/qolibri { }; 15541 15541 15542 15542 qt3 = callPackage ../development/libraries/qt-3 { 15543 15543 libpng = libpng12;