From 2bb91e309ca99656addff5c74545acbf5813636d Mon Sep 17 00:00:00 2001 From: Kevin Amado Date: Sun, 3 Nov 2024 18:01:21 -0700 Subject: [PATCH] feat: release 3.1.0 --- .pre-commit-entry.sh | 2 +- CHANGELOG.md | 24 +- README.md | 18 +- flake.nix | 12 +- integrations/pre-commit/README.md | 2 +- integrations/vscode/package.json | 2 +- integrations/vscode/yarn.lock.nix | 1062 +++++++++++++++++++++++++---- src/alejandra/Cargo.toml | 2 +- src/alejandra/src/version.rs | 2 +- src/alejandra_cli/Cargo.toml | 16 +- src/alejandra_cli/src/ads/mod.rs | 2 +- src/alejandra_cli/src/cli.rs | 2 +- 12 files changed, 987 insertions(+), 159 deletions(-) diff --git a/.pre-commit-entry.sh b/.pre-commit-entry.sh index 62ac39f..1c26928 100755 --- a/.pre-commit-entry.sh +++ b/.pre-commit-entry.sh @@ -19,7 +19,7 @@ echo INFO: building Alejandra nix-build \ --out-link result-alejandra \ - https://github.com/kamadorueda/alejandra/tarball/3.0.0 + https://github.com/kamadorueda/alejandra/tarball/3.1.0 echo INFO: running Alejandra: result-alejandra/bin/alejandra -- -q "${@}" diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d196cc..01e0f41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,26 @@ Types of changes - Security in case of vulnerabilities. --> +## [3.1.0] - 2023-05-15 + +### Added + +- Thank you messages for the different people + who have helped improving Alejandra. +- Pre-commit hooks with no prerequisites and instructions on how to update the pre-commit hooks. +- A meta.mainProgram to our `flake.nix`. +- Refreshed docs (updated moved links, integrations instructions, maintainer instructions). + +### Changed + +- The pre-commit option `alejandra` was renamed to `alejandra-nix`. +- Upgraded dependencies to its latest version. +- Blank lines are no longer added after comments in `inherit`. + +### Fixed + +- A syntax error in one of the pre-commit hooks. + ## [3.0.0] - 2022-08-14 ### Added @@ -31,7 +51,6 @@ Types of changes - Thank you messages for the different people who have helped improving Alejandra. -- A pre-commit hook with no prerequisites. ### Changed @@ -677,7 +696,8 @@ Types of changes --- -[unreleased]: https://github.com/kamadorueda/alejandra/compare/3.0.0...HEAD +[unreleased]: https://github.com/kamadorueda/alejandra/compare/3.1.0...HEAD +[3.1.0]: https://github.com/kamadorueda/alejandra/compare/3.0.0...3.1.0 [3.0.0]: https://github.com/kamadorueda/alejandra/compare/2.0.0...3.0.0 [2.0.0]: https://github.com/kamadorueda/alejandra/compare/1.5.0...2.0.0 [1.5.0]: https://github.com/kamadorueda/alejandra/compare/1.4.0...1.5.0 diff --git a/README.md b/README.md index f249316..90547a0 100644 --- a/README.md +++ b/README.md @@ -110,11 +110,11 @@ Please visit: You can download a binary for your platform: -- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/3.0.0/alejandra-aarch64-unknown-linux-musl) -- [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/3.0.0/alejandra-armv6l-unknown-linux-musleabihf) -- [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/3.0.0/alejandra-armv7l-unknown-linux-musleabihf) -- [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/3.0.0/alejandra-i686-unknown-linux-musl) -- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/3.0.0/alejandra-x86_64-unknown-linux-musl) +- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/3.1.0/alejandra-aarch64-unknown-linux-musl) +- [armv6l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/3.1.0/alejandra-armv6l-unknown-linux-musleabihf) +- [armv7l-unknown-linux-musleabihf](https://github.com/kamadorueda/alejandra/releases/download/3.1.0/alejandra-armv7l-unknown-linux-musleabihf) +- [i686-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/3.1.0/alejandra-i686-unknown-linux-musl) +- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/3.1.0/alejandra-x86_64-unknown-linux-musl) Make it executable (`$ chmod +x`) and run Alejandra with: @@ -138,13 +138,13 @@ Please visit: [search.nixos.org/packages?query=alejandra](https://search.nixos.o - Nix stable: ```bash - $ nix-env -ivf https://github.com/kamadorueda/alejandra/tarball/3.0.0 + $ nix-env -ivf https://github.com/kamadorueda/alejandra/tarball/3.1.0 ``` - Nix with [Flakes](https://wiki.nixos.org/wiki/Flakes): ```bash - $ nix profile install github:kamadorueda/alejandra/3.0.0 + $ nix profile install github:kamadorueda/alejandra/3.1.0 ``` Then run Alejandra with: @@ -161,7 +161,7 @@ $ alejandra --help let alejandra = (import (builtins.fetchTarball { - url = "https://github.com/kamadorueda/alejandra/tarball/3.0.0"; + url = "https://github.com/kamadorueda/alejandra/tarball/3.1.0"; sha256 = "0000000000000000000000000000000000000000000000000000"; }) {}) .outPath; @@ -177,7 +177,7 @@ $ alejandra --help inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; - alejandra.url = "github:kamadorueda/alejandra/3.0.0"; + alejandra.url = "github:kamadorueda/alejandra/3.1.0"; alejandra.inputs.nixpkgs.follows = "nixpkgs"; }; diff --git a/flake.nix b/flake.nix index f695a2c..c4a0cf0 100644 --- a/flake.nix +++ b/flake.nix @@ -14,7 +14,7 @@ outputs = inputs: let commit = inputs.self.shortRev or "dirty"; date = inputs.self.lastModifiedDate or inputs.self.lastModified or "19700101"; - version = "3.0.0+${builtins.substring 0 8 date}.${commit}"; + version = "3.1.0+${builtins.substring 0 8 date}.${commit}"; nixpkgsForHost = host: import inputs.nixpkgs { @@ -133,12 +133,10 @@ pkgsStatic.alejandra pkgsCross.aarch64-multiplatform.pkgsStatic.alejandra - - pkgsCross.armv7l-hf-multiplatform.pkgsStatic.alejandra - - pkgsCross.gnu32.pkgsStatic.alejandra - - pkgsCross.raspberryPi.pkgsStatic.alejandra + # Temporarily disabled to speed up release + # pkgsCross.armv7l-hf-multiplatform.pkgsStatic.alejandra + # pkgsCross.gnu32.pkgsStatic.alejandra + # pkgsCross.raspberryPi.pkgsStatic.alejandra ]) // { "alejandra-vscode-vsix" = mkYarnPackage { diff --git a/integrations/pre-commit/README.md b/integrations/pre-commit/README.md index c3b1d8e..06101fc 100644 --- a/integrations/pre-commit/README.md +++ b/integrations/pre-commit/README.md @@ -8,7 +8,7 @@ with contents: ```yaml repos: - repo: https://github.com/kamadorueda/alejandra - rev: 3.0.0 + rev: 3.1.0 # Choose either the 'alejandra' or 'alejandra-system' hook # depending on what pre-requisites you have: hooks: diff --git a/integrations/vscode/package.json b/integrations/vscode/package.json index 8944fee..262e550 100644 --- a/integrations/vscode/package.json +++ b/integrations/vscode/package.json @@ -66,5 +66,5 @@ "type": "git", "url": "https://github.com/kamadorueda/alejandra" }, - "version": "3.0.0" + "version": "3.1.0" } diff --git a/integrations/vscode/yarn.lock.nix b/integrations/vscode/yarn.lock.nix index 154e19c..965927b 100644 --- a/integrations/vscode/yarn.lock.nix +++ b/integrations/vscode/yarn.lock.nix @@ -1,41 +1,275 @@ -{ - fetchurl, - fetchgit, - linkFarm, - runCommand, - gnutar, -}: rec { +{ fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec { offline_cache = linkFarm "offline" packages; packages = [ + { + name = "_azure_abort_controller___abort_controller_2.1.2.tgz"; + path = fetchurl { + name = "_azure_abort_controller___abort_controller_2.1.2.tgz"; + url = "https://registry.yarnpkg.com/@azure/abort-controller/-/abort-controller-2.1.2.tgz"; + sha512 = "nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA=="; + }; + } + { + name = "_azure_core_auth___core_auth_1.9.0.tgz"; + path = fetchurl { + name = "_azure_core_auth___core_auth_1.9.0.tgz"; + url = "https://registry.yarnpkg.com/@azure/core-auth/-/core-auth-1.9.0.tgz"; + sha512 = "FPwHpZywuyasDSLMqJ6fhbOK3TqUdviZNF8OqRGA4W5Ewib2lEEZ+pBsYcBa88B2NGO/SEnYPGhyBqNlE8ilSw=="; + }; + } + { + name = "_azure_core_client___core_client_1.9.2.tgz"; + path = fetchurl { + name = "_azure_core_client___core_client_1.9.2.tgz"; + url = "https://registry.yarnpkg.com/@azure/core-client/-/core-client-1.9.2.tgz"; + sha512 = "kRdry/rav3fUKHl/aDLd/pDLcB+4pOFwPPTVEExuMyaI5r+JBbMWqRbCY1pn5BniDaU3lRxO9eaQ1AmSMehl/w=="; + }; + } + { + name = "_azure_core_rest_pipeline___core_rest_pipeline_1.17.0.tgz"; + path = fetchurl { + name = "_azure_core_rest_pipeline___core_rest_pipeline_1.17.0.tgz"; + url = "https://registry.yarnpkg.com/@azure/core-rest-pipeline/-/core-rest-pipeline-1.17.0.tgz"; + sha512 = "62Vv8nC+uPId3j86XJ0WI+sBf0jlqTqPUFCBNrGtlaUeQUIXWV/D8GE5A1d+Qx8H7OQojn2WguC8kChD6v0shA=="; + }; + } + { + name = "_azure_core_tracing___core_tracing_1.2.0.tgz"; + path = fetchurl { + name = "_azure_core_tracing___core_tracing_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/@azure/core-tracing/-/core-tracing-1.2.0.tgz"; + sha512 = "UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg=="; + }; + } + { + name = "_azure_core_util___core_util_1.11.0.tgz"; + path = fetchurl { + name = "_azure_core_util___core_util_1.11.0.tgz"; + url = "https://registry.yarnpkg.com/@azure/core-util/-/core-util-1.11.0.tgz"; + sha512 = "DxOSLua+NdpWoSqULhjDyAZTXFdP/LKkqtYuxxz1SCN289zk3OG8UOpnCQAz/tygyACBtWp/BoO72ptK7msY8g=="; + }; + } + { + name = "_azure_identity___identity_4.5.0.tgz"; + path = fetchurl { + name = "_azure_identity___identity_4.5.0.tgz"; + url = "https://registry.yarnpkg.com/@azure/identity/-/identity-4.5.0.tgz"; + sha512 = "EknvVmtBuSIic47xkOqyNabAme0RYTw52BTMz8eBgU1ysTyMrD1uOoM+JdS0J/4Yfp98IBT3osqq3BfwSaNaGQ=="; + }; + } + { + name = "_azure_logger___logger_1.1.4.tgz"; + path = fetchurl { + name = "_azure_logger___logger_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/@azure/logger/-/logger-1.1.4.tgz"; + sha512 = "4IXXzcCdLdlXuCG+8UKEwLA1T1NHqUfanhXYHiQTn+6sfWCZXduqbtXDGceg3Ce5QxTGo7EqmbV6Bi+aqKuClQ=="; + }; + } + { + name = "_azure_msal_browser___msal_browser_3.26.1.tgz"; + path = fetchurl { + name = "_azure_msal_browser___msal_browser_3.26.1.tgz"; + url = "https://registry.yarnpkg.com/@azure/msal-browser/-/msal-browser-3.26.1.tgz"; + sha512 = "y78sr9g61aCAH9fcLO1um+oHFXc1/5Ap88RIsUSuzkm0BHzFnN+PXGaQeuM1h5Qf5dTnWNOd6JqkskkMPAhh7Q=="; + }; + } + { + name = "_azure_msal_common___msal_common_14.15.0.tgz"; + path = fetchurl { + name = "_azure_msal_common___msal_common_14.15.0.tgz"; + url = "https://registry.yarnpkg.com/@azure/msal-common/-/msal-common-14.15.0.tgz"; + sha512 = "ImAQHxmpMneJ/4S8BRFhjt1MZ3bppmpRPYYNyzeQPeFN288YKbb8TmmISQEbtfkQ1BPASvYZU5doIZOPBAqENQ=="; + }; + } + { + name = "_azure_msal_node___msal_node_2.15.0.tgz"; + path = fetchurl { + name = "_azure_msal_node___msal_node_2.15.0.tgz"; + url = "https://registry.yarnpkg.com/@azure/msal-node/-/msal-node-2.15.0.tgz"; + sha512 = "gVPW8YLz92ZeCibQH2QUw96odJoiM3k/ZPH3f2HxptozmH6+OnyyvKXo/Egg39HAM230akarQKHf0W74UHlh0Q=="; + }; + } + { + name = "_isaacs_cliui___cliui_8.0.2.tgz"; + path = fetchurl { + name = "_isaacs_cliui___cliui_8.0.2.tgz"; + url = "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz"; + sha512 = "O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="; + }; + } + { + name = "_vscode_vsce_sign_alpine_arm64___vsce_sign_alpine_arm64_2.0.2.tgz"; + path = fetchurl { + name = "_vscode_vsce_sign_alpine_arm64___vsce_sign_alpine_arm64_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce-sign-alpine-arm64/-/vsce-sign-alpine-arm64-2.0.2.tgz"; + sha512 = "E80YvqhtZCLUv3YAf9+tIbbqoinWLCO/B3j03yQPbjT3ZIHCliKZlsy1peNc4XNZ5uIb87Jn0HWx/ZbPXviuAQ=="; + }; + } + { + name = "_vscode_vsce_sign_alpine_x64___vsce_sign_alpine_x64_2.0.2.tgz"; + path = fetchurl { + name = "_vscode_vsce_sign_alpine_x64___vsce_sign_alpine_x64_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce-sign-alpine-x64/-/vsce-sign-alpine-x64-2.0.2.tgz"; + sha512 = "n1WC15MSMvTaeJ5KjWCzo0nzjydwxLyoHiMJHu1Ov0VWTZiddasmOQHekA47tFRycnt4FsQrlkSCTdgHppn6bw=="; + }; + } + { + name = "_vscode_vsce_sign_darwin_arm64___vsce_sign_darwin_arm64_2.0.2.tgz"; + path = fetchurl { + name = "_vscode_vsce_sign_darwin_arm64___vsce_sign_darwin_arm64_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce-sign-darwin-arm64/-/vsce-sign-darwin-arm64-2.0.2.tgz"; + sha512 = "rz8F4pMcxPj8fjKAJIfkUT8ycG9CjIp888VY/6pq6cuI2qEzQ0+b5p3xb74CJnBbSC0p2eRVoe+WgNCAxCLtzQ=="; + }; + } + { + name = "_vscode_vsce_sign_darwin_x64___vsce_sign_darwin_x64_2.0.2.tgz"; + path = fetchurl { + name = "_vscode_vsce_sign_darwin_x64___vsce_sign_darwin_x64_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce-sign-darwin-x64/-/vsce-sign-darwin-x64-2.0.2.tgz"; + sha512 = "MCjPrQ5MY/QVoZ6n0D92jcRb7eYvxAujG/AH2yM6lI0BspvJQxp0o9s5oiAM9r32r9tkLpiy5s2icsbwefAQIw=="; + }; + } + { + name = "_vscode_vsce_sign_linux_arm64___vsce_sign_linux_arm64_2.0.2.tgz"; + path = fetchurl { + name = "_vscode_vsce_sign_linux_arm64___vsce_sign_linux_arm64_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce-sign-linux-arm64/-/vsce-sign-linux-arm64-2.0.2.tgz"; + sha512 = "Ybeu7cA6+/koxszsORXX0OJk9N0GgfHq70Wqi4vv2iJCZvBrOWwcIrxKjvFtwyDgdeQzgPheH5nhLVl5eQy7WA=="; + }; + } + { + name = "_vscode_vsce_sign_linux_arm___vsce_sign_linux_arm_2.0.2.tgz"; + path = fetchurl { + name = "_vscode_vsce_sign_linux_arm___vsce_sign_linux_arm_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce-sign-linux-arm/-/vsce-sign-linux-arm-2.0.2.tgz"; + sha512 = "Fkb5jpbfhZKVw3xwR6t7WYfwKZktVGNXdg1m08uEx1anO0oUPUkoQRsNm4QniL3hmfw0ijg00YA6TrxCRkPVOQ=="; + }; + } + { + name = "_vscode_vsce_sign_linux_x64___vsce_sign_linux_x64_2.0.2.tgz"; + path = fetchurl { + name = "_vscode_vsce_sign_linux_x64___vsce_sign_linux_x64_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce-sign-linux-x64/-/vsce-sign-linux-x64-2.0.2.tgz"; + sha512 = "NsPPFVtLaTlVJKOiTnO8Cl78LZNWy0Q8iAg+LlBiCDEgC12Gt4WXOSs2pmcIjDYzj2kY4NwdeN1mBTaujYZaPg=="; + }; + } + { + name = "_vscode_vsce_sign_win32_arm64___vsce_sign_win32_arm64_2.0.2.tgz"; + path = fetchurl { + name = "_vscode_vsce_sign_win32_arm64___vsce_sign_win32_arm64_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce-sign-win32-arm64/-/vsce-sign-win32-arm64-2.0.2.tgz"; + sha512 = "wPs848ymZ3Ny+Y1Qlyi7mcT6VSigG89FWQnp2qRYCyMhdJxOpA4lDwxzlpL8fG6xC8GjQjGDkwbkWUcCobvksQ=="; + }; + } + { + name = "_vscode_vsce_sign_win32_x64___vsce_sign_win32_x64_2.0.2.tgz"; + path = fetchurl { + name = "_vscode_vsce_sign_win32_x64___vsce_sign_win32_x64_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce-sign-win32-x64/-/vsce-sign-win32-x64-2.0.2.tgz"; + sha512 = "pAiRN6qSAhDM5SVOIxgx+2xnoVUePHbRNC7OD2aOR3WltTKxxF25OfpK8h8UQ7A0BuRkSgREbB59DBlFk4iAeg=="; + }; + } + { + name = "_vscode_vsce_sign___vsce_sign_2.0.5.tgz"; + path = fetchurl { + name = "_vscode_vsce_sign___vsce_sign_2.0.5.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce-sign/-/vsce-sign-2.0.5.tgz"; + sha512 = "GfYWrsT/vypTMDMgWDm75iDmAOMe7F71sZECJ+Ws6/xyIfmB3ELVnVN+LwMFAvmXY+e6eWhR2EzNGF/zAhWY3Q=="; + }; + } + { + name = "_vscode_vsce___vsce_3.2.1.tgz"; + path = fetchurl { + name = "_vscode_vsce___vsce_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/@vscode/vsce/-/vsce-3.2.1.tgz"; + sha512 = "AY9vBjwExakK1c0cI/3NN2Ey0EgiKLBye/fxl/ue+o4q6RZ7N+xzd1jAD6eI6eBeMVANi617+V2rxIAkDPco2Q=="; + }; + } + { + name = "agent_base___agent_base_7.1.1.tgz"; + path = fetchurl { + name = "agent_base___agent_base_7.1.1.tgz"; + url = "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz"; + sha512 = "H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA=="; + }; + } + { + name = "ansi_regex___ansi_regex_5.0.1.tgz"; + path = fetchurl { + name = "ansi_regex___ansi_regex_5.0.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz"; + sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; + }; + } + { + name = "ansi_regex___ansi_regex_6.1.0.tgz"; + path = fetchurl { + name = "ansi_regex___ansi_regex_6.1.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz"; + sha512 = "7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA=="; + }; + } { name = "ansi_styles___ansi_styles_3.2.1.tgz"; path = fetchurl { name = "ansi_styles___ansi_styles_3.2.1.tgz"; - url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; }; } + { + name = "ansi_styles___ansi_styles_4.3.0.tgz"; + path = fetchurl { + name = "ansi_styles___ansi_styles_4.3.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz"; + sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; + }; + } + { + name = "ansi_styles___ansi_styles_6.2.1.tgz"; + path = fetchurl { + name = "ansi_styles___ansi_styles_6.2.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz"; + sha512 = "bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="; + }; + } { name = "argparse___argparse_2.0.1.tgz"; path = fetchurl { name = "argparse___argparse_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz"; + url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz"; sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; }; } + { + name = "asynckit___asynckit_0.4.0.tgz"; + path = fetchurl { + name = "asynckit___asynckit_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz"; + sha512 = "Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="; + }; + } { name = "azure_devops_node_api___azure_devops_node_api_11.2.0.tgz"; path = fetchurl { name = "azure_devops_node_api___azure_devops_node_api_11.2.0.tgz"; - url = "https://registry.yarnpkg.com/azure-devops-node-api/-/azure-devops-node-api-11.2.0.tgz"; + url = "https://registry.yarnpkg.com/azure-devops-node-api/-/azure-devops-node-api-11.2.0.tgz"; sha512 = "XdiGPhrpaT5J8wdERRKs5g8E0Zy1pvOYTli7z9E8nmOn3YGp4FhtjhrOyFmX/8veWCwdI69mCHKJw6l+4J/bHA=="; }; } + { + name = "azure_devops_node_api___azure_devops_node_api_12.5.0.tgz"; + path = fetchurl { + name = "azure_devops_node_api___azure_devops_node_api_12.5.0.tgz"; + url = "https://registry.yarnpkg.com/azure-devops-node-api/-/azure-devops-node-api-12.5.0.tgz"; + sha512 = "R5eFskGvOm3U/GzeAuxRkUsAl0hrAwGgWn6zAd2KrZmrEhWZVqLew4OOupbQlXUuojUzpGtq62SmdhJ06N88og=="; + }; + } { name = "balanced_match___balanced_match_1.0.2.tgz"; path = fetchurl { name = "balanced_match___balanced_match_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz"; sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; }; } @@ -43,7 +277,7 @@ name = "base64_js___base64_js_1.5.1.tgz"; path = fetchurl { name = "base64_js___base64_js_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz"; + url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz"; sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="; }; } @@ -51,7 +285,7 @@ name = "bl___bl_4.1.0.tgz"; path = fetchurl { name = "bl___bl_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz"; + url = "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz"; sha512 = "1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="; }; } @@ -59,7 +293,7 @@ name = "boolbase___boolbase_1.0.0.tgz"; path = fetchurl { name = "boolbase___boolbase_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz"; sha512 = "JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="; }; } @@ -67,23 +301,39 @@ name = "brace_expansion___brace_expansion_1.1.11.tgz"; path = fetchurl { name = "brace_expansion___brace_expansion_1.1.11.tgz"; - url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; + url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; }; } + { + name = "brace_expansion___brace_expansion_2.0.1.tgz"; + path = fetchurl { + name = "brace_expansion___brace_expansion_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz"; + sha512 = "XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="; + }; + } { name = "buffer_crc32___buffer_crc32_0.2.13.tgz"; path = fetchurl { name = "buffer_crc32___buffer_crc32_0.2.13.tgz"; - url = "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz"; + url = "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz"; sha512 = "VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ=="; }; } + { + name = "buffer_equal_constant_time___buffer_equal_constant_time_1.0.1.tgz"; + path = fetchurl { + name = "buffer_equal_constant_time___buffer_equal_constant_time_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz"; + sha512 = "zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="; + }; + } { name = "buffer___buffer_5.7.1.tgz"; path = fetchurl { name = "buffer___buffer_5.7.1.tgz"; - url = "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz"; + url = "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz"; sha512 = "EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="; }; } @@ -91,7 +341,7 @@ name = "call_bind___call_bind_1.0.7.tgz"; path = fetchurl { name = "call_bind___call_bind_1.0.7.tgz"; - url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz"; + url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz"; sha512 = "GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w=="; }; } @@ -99,7 +349,7 @@ name = "chalk___chalk_2.4.2.tgz"; path = fetchurl { name = "chalk___chalk_2.4.2.tgz"; - url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; }; } @@ -107,7 +357,7 @@ name = "cheerio_select___cheerio_select_2.1.0.tgz"; path = fetchurl { name = "cheerio_select___cheerio_select_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz"; + url = "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz"; sha512 = "9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g=="; }; } @@ -115,7 +365,7 @@ name = "cheerio___cheerio_1.0.0.tgz"; path = fetchurl { name = "cheerio___cheerio_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0.tgz"; sha512 = "quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww=="; }; } @@ -123,31 +373,71 @@ name = "chownr___chownr_1.1.4.tgz"; path = fetchurl { name = "chownr___chownr_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz"; + url = "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz"; sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="; }; } + { + name = "ci_info___ci_info_2.0.0.tgz"; + path = fetchurl { + name = "ci_info___ci_info_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz"; + sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; + }; + } + { + name = "cockatiel___cockatiel_3.2.1.tgz"; + path = fetchurl { + name = "cockatiel___cockatiel_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/cockatiel/-/cockatiel-3.2.1.tgz"; + sha512 = "gfrHV6ZPkquExvMh9IOkKsBzNDk6sDuZ6DdBGUBkvFnTCqCxzpuq48RySgP0AnaqQkw2zynOFj9yly6T1Q2G5Q=="; + }; + } { name = "color_convert___color_convert_1.9.3.tgz"; path = fetchurl { name = "color_convert___color_convert_1.9.3.tgz"; - url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; + url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; }; } + { + name = "color_convert___color_convert_2.0.1.tgz"; + path = fetchurl { + name = "color_convert___color_convert_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz"; + sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; + }; + } { name = "color_name___color_name_1.1.3.tgz"; path = fetchurl { name = "color_name___color_name_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; + url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; sha512 = "72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="; }; } + { + name = "color_name___color_name_1.1.4.tgz"; + path = fetchurl { + name = "color_name___color_name_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz"; + sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; + }; + } + { + name = "combined_stream___combined_stream_1.0.8.tgz"; + path = fetchurl { + name = "combined_stream___combined_stream_1.0.8.tgz"; + url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz"; + sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; + }; + } { name = "commander___commander_6.2.1.tgz"; path = fetchurl { name = "commander___commander_6.2.1.tgz"; - url = "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz"; + url = "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz"; sha512 = "U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="; }; } @@ -155,15 +445,23 @@ name = "concat_map___concat_map_0.0.1.tgz"; path = fetchurl { name = "concat_map___concat_map_0.0.1.tgz"; - url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; + url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="; }; } + { + name = "cross_spawn___cross_spawn_7.0.3.tgz"; + path = fetchurl { + name = "cross_spawn___cross_spawn_7.0.3.tgz"; + url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz"; + sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; + }; + } { name = "css_select___css_select_5.1.0.tgz"; path = fetchurl { name = "css_select___css_select_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz"; + url = "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz"; sha512 = "nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg=="; }; } @@ -171,15 +469,23 @@ name = "css_what___css_what_6.1.0.tgz"; path = fetchurl { name = "css_what___css_what_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz"; + url = "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz"; sha512 = "HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="; }; } + { + name = "debug___debug_4.3.7.tgz"; + path = fetchurl { + name = "debug___debug_4.3.7.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz"; + sha512 = "Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="; + }; + } { name = "decompress_response___decompress_response_6.0.0.tgz"; path = fetchurl { name = "decompress_response___decompress_response_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz"; + url = "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz"; sha512 = "aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="; }; } @@ -187,7 +493,7 @@ name = "deep_extend___deep_extend_0.6.0.tgz"; path = fetchurl { name = "deep_extend___deep_extend_0.6.0.tgz"; - url = "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz"; + url = "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz"; sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="; }; } @@ -195,15 +501,31 @@ name = "define_data_property___define_data_property_1.1.4.tgz"; path = fetchurl { name = "define_data_property___define_data_property_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz"; + url = "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz"; sha512 = "rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A=="; }; } + { + name = "define_lazy_prop___define_lazy_prop_2.0.0.tgz"; + path = fetchurl { + name = "define_lazy_prop___define_lazy_prop_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz"; + sha512 = "Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="; + }; + } + { + name = "delayed_stream___delayed_stream_1.0.0.tgz"; + path = fetchurl { + name = "delayed_stream___delayed_stream_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz"; + sha512 = "ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="; + }; + } { name = "detect_libc___detect_libc_2.0.3.tgz"; path = fetchurl { name = "detect_libc___detect_libc_2.0.3.tgz"; - url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz"; + url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz"; sha512 = "bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw=="; }; } @@ -211,7 +533,7 @@ name = "dom_serializer___dom_serializer_2.0.0.tgz"; path = fetchurl { name = "dom_serializer___dom_serializer_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz"; + url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz"; sha512 = "wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg=="; }; } @@ -219,7 +541,7 @@ name = "domelementtype___domelementtype_2.3.0.tgz"; path = fetchurl { name = "domelementtype___domelementtype_2.3.0.tgz"; - url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz"; + url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz"; sha512 = "OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="; }; } @@ -227,7 +549,7 @@ name = "domhandler___domhandler_5.0.3.tgz"; path = fetchurl { name = "domhandler___domhandler_5.0.3.tgz"; - url = "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz"; + url = "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz"; sha512 = "cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w=="; }; } @@ -235,15 +557,47 @@ name = "domutils___domutils_3.1.0.tgz"; path = fetchurl { name = "domutils___domutils_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz"; + url = "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz"; sha512 = "H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA=="; }; } + { + name = "eastasianwidth___eastasianwidth_0.2.0.tgz"; + path = fetchurl { + name = "eastasianwidth___eastasianwidth_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz"; + sha512 = "I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="; + }; + } + { + name = "ecdsa_sig_formatter___ecdsa_sig_formatter_1.0.11.tgz"; + path = fetchurl { + name = "ecdsa_sig_formatter___ecdsa_sig_formatter_1.0.11.tgz"; + url = "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz"; + sha512 = "nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="; + }; + } + { + name = "emoji_regex___emoji_regex_8.0.0.tgz"; + path = fetchurl { + name = "emoji_regex___emoji_regex_8.0.0.tgz"; + url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz"; + sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; + }; + } + { + name = "emoji_regex___emoji_regex_9.2.2.tgz"; + path = fetchurl { + name = "emoji_regex___emoji_regex_9.2.2.tgz"; + url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz"; + sha512 = "L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="; + }; + } { name = "encoding_sniffer___encoding_sniffer_0.2.0.tgz"; path = fetchurl { name = "encoding_sniffer___encoding_sniffer_0.2.0.tgz"; - url = "https://registry.yarnpkg.com/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz"; + url = "https://registry.yarnpkg.com/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz"; sha512 = "ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg=="; }; } @@ -251,7 +605,7 @@ name = "end_of_stream___end_of_stream_1.4.4.tgz"; path = fetchurl { name = "end_of_stream___end_of_stream_1.4.4.tgz"; - url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz"; + url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz"; sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; }; } @@ -259,7 +613,7 @@ name = "entities___entities_4.5.0.tgz"; path = fetchurl { name = "entities___entities_4.5.0.tgz"; - url = "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz"; + url = "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz"; sha512 = "V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="; }; } @@ -267,7 +621,7 @@ name = "entities___entities_2.1.0.tgz"; path = fetchurl { name = "entities___entities_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz"; + url = "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz"; sha512 = "hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w=="; }; } @@ -275,7 +629,7 @@ name = "es_define_property___es_define_property_1.0.0.tgz"; path = fetchurl { name = "es_define_property___es_define_property_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz"; sha512 = "jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ=="; }; } @@ -283,7 +637,7 @@ name = "es_errors___es_errors_1.3.0.tgz"; path = fetchurl { name = "es_errors___es_errors_1.3.0.tgz"; - url = "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz"; + url = "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz"; sha512 = "Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="; }; } @@ -291,15 +645,23 @@ name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; path = fetchurl { name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; + url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; sha512 = "vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="; }; } + { + name = "events___events_3.3.0.tgz"; + path = fetchurl { + name = "events___events_3.3.0.tgz"; + url = "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz"; + sha512 = "mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="; + }; + } { name = "expand_template___expand_template_2.0.3.tgz"; path = fetchurl { name = "expand_template___expand_template_2.0.3.tgz"; - url = "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz"; + url = "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz"; sha512 = "XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg=="; }; } @@ -307,15 +669,39 @@ name = "fd_slicer___fd_slicer_1.1.0.tgz"; path = fetchurl { name = "fd_slicer___fd_slicer_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz"; + url = "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz"; sha512 = "cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g=="; }; } + { + name = "follow_redirects___follow_redirects_1.15.9.tgz"; + path = fetchurl { + name = "follow_redirects___follow_redirects_1.15.9.tgz"; + url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz"; + sha512 = "gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ=="; + }; + } + { + name = "foreground_child___foreground_child_3.3.0.tgz"; + path = fetchurl { + name = "foreground_child___foreground_child_3.3.0.tgz"; + url = "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.0.tgz"; + sha512 = "Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg=="; + }; + } + { + name = "form_data___form_data_4.0.1.tgz"; + path = fetchurl { + name = "form_data___form_data_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/form-data/-/form-data-4.0.1.tgz"; + sha512 = "tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw=="; + }; + } { name = "fs_constants___fs_constants_1.0.0.tgz"; path = fetchurl { name = "fs_constants___fs_constants_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz"; sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="; }; } @@ -323,7 +709,7 @@ name = "fs.realpath___fs.realpath_1.0.0.tgz"; path = fetchurl { name = "fs.realpath___fs.realpath_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; + url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; sha512 = "OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="; }; } @@ -331,7 +717,7 @@ name = "function_bind___function_bind_1.1.2.tgz"; path = fetchurl { name = "function_bind___function_bind_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz"; + url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz"; sha512 = "7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="; }; } @@ -339,7 +725,7 @@ name = "get_intrinsic___get_intrinsic_1.2.4.tgz"; path = fetchurl { name = "get_intrinsic___get_intrinsic_1.2.4.tgz"; - url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz"; + url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz"; sha512 = "5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ=="; }; } @@ -347,15 +733,23 @@ name = "github_from_package___github_from_package_0.0.0.tgz"; path = fetchurl { name = "github_from_package___github_from_package_0.0.0.tgz"; - url = "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz"; + url = "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz"; sha512 = "SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw=="; }; } + { + name = "glob___glob_11.0.0.tgz"; + path = fetchurl { + name = "glob___glob_11.0.0.tgz"; + url = "https://registry.yarnpkg.com/glob/-/glob-11.0.0.tgz"; + sha512 = "9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g=="; + }; + } { name = "glob___glob_7.2.3.tgz"; path = fetchurl { name = "glob___glob_7.2.3.tgz"; - url = "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz"; + url = "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz"; sha512 = "nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="; }; } @@ -363,7 +757,7 @@ name = "gopd___gopd_1.0.1.tgz"; path = fetchurl { name = "gopd___gopd_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz"; sha512 = "d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA=="; }; } @@ -371,7 +765,7 @@ name = "has_flag___has_flag_3.0.0.tgz"; path = fetchurl { name = "has_flag___has_flag_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; sha512 = "sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="; }; } @@ -379,7 +773,7 @@ name = "has_property_descriptors___has_property_descriptors_1.0.2.tgz"; path = fetchurl { name = "has_property_descriptors___has_property_descriptors_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz"; sha512 = "55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg=="; }; } @@ -387,7 +781,7 @@ name = "has_proto___has_proto_1.0.3.tgz"; path = fetchurl { name = "has_proto___has_proto_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz"; + url = "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz"; sha512 = "SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q=="; }; } @@ -395,7 +789,7 @@ name = "has_symbols___has_symbols_1.0.3.tgz"; path = fetchurl { name = "has_symbols___has_symbols_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz"; + url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz"; sha512 = "l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="; }; } @@ -403,7 +797,7 @@ name = "hasown___hasown_2.0.2.tgz"; path = fetchurl { name = "hasown___hasown_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz"; + url = "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz"; sha512 = "0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="; }; } @@ -411,7 +805,7 @@ name = "hosted_git_info___hosted_git_info_4.1.0.tgz"; path = fetchurl { name = "hosted_git_info___hosted_git_info_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz"; + url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz"; sha512 = "kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA=="; }; } @@ -419,15 +813,31 @@ name = "htmlparser2___htmlparser2_9.1.0.tgz"; path = fetchurl { name = "htmlparser2___htmlparser2_9.1.0.tgz"; - url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-9.1.0.tgz"; + url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-9.1.0.tgz"; sha512 = "5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ=="; }; } + { + name = "http_proxy_agent___http_proxy_agent_7.0.2.tgz"; + path = fetchurl { + name = "http_proxy_agent___http_proxy_agent_7.0.2.tgz"; + url = "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz"; + sha512 = "T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig=="; + }; + } + { + name = "https_proxy_agent___https_proxy_agent_7.0.5.tgz"; + path = fetchurl { + name = "https_proxy_agent___https_proxy_agent_7.0.5.tgz"; + url = "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz"; + sha512 = "1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw=="; + }; + } { name = "iconv_lite___iconv_lite_0.6.3.tgz"; path = fetchurl { name = "iconv_lite___iconv_lite_0.6.3.tgz"; - url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz"; + url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz"; sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; }; } @@ -435,7 +845,7 @@ name = "ieee754___ieee754_1.2.1.tgz"; path = fetchurl { name = "ieee754___ieee754_1.2.1.tgz"; - url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz"; + url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz"; sha512 = "dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="; }; } @@ -443,7 +853,7 @@ name = "inflight___inflight_1.0.6.tgz"; path = fetchurl { name = "inflight___inflight_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; + url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; }; } @@ -451,7 +861,7 @@ name = "inherits___inherits_2.0.4.tgz"; path = fetchurl { name = "inherits___inherits_2.0.4.tgz"; - url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; }; } @@ -459,15 +869,111 @@ name = "ini___ini_1.3.8.tgz"; path = fetchurl { name = "ini___ini_1.3.8.tgz"; - url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz"; + url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz"; sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; }; } + { + name = "is_ci___is_ci_2.0.0.tgz"; + path = fetchurl { + name = "is_ci___is_ci_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz"; + sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="; + }; + } + { + name = "is_docker___is_docker_2.2.1.tgz"; + path = fetchurl { + name = "is_docker___is_docker_2.2.1.tgz"; + url = "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz"; + sha512 = "F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ=="; + }; + } + { + name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz"; + path = fetchurl { + name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; + sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; + }; + } + { + name = "is_wsl___is_wsl_2.2.0.tgz"; + path = fetchurl { + name = "is_wsl___is_wsl_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz"; + sha512 = "fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="; + }; + } + { + name = "isexe___isexe_2.0.0.tgz"; + path = fetchurl { + name = "isexe___isexe_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz"; + sha512 = "RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="; + }; + } + { + name = "jackspeak___jackspeak_4.0.2.tgz"; + path = fetchurl { + name = "jackspeak___jackspeak_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.0.2.tgz"; + sha512 = "bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw=="; + }; + } + { + name = "jsonc_parser___jsonc_parser_3.3.1.tgz"; + path = fetchurl { + name = "jsonc_parser___jsonc_parser_3.3.1.tgz"; + url = "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.3.1.tgz"; + sha512 = "HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ=="; + }; + } + { + name = "jsonwebtoken___jsonwebtoken_9.0.2.tgz"; + path = fetchurl { + name = "jsonwebtoken___jsonwebtoken_9.0.2.tgz"; + url = "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz"; + sha512 = "PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ=="; + }; + } + { + name = "jwa___jwa_1.4.1.tgz"; + path = fetchurl { + name = "jwa___jwa_1.4.1.tgz"; + url = "https://registry.yarnpkg.com/jwa/-/jwa-1.4.1.tgz"; + sha512 = "qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA=="; + }; + } + { + name = "jwa___jwa_2.0.0.tgz"; + path = fetchurl { + name = "jwa___jwa_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/jwa/-/jwa-2.0.0.tgz"; + sha512 = "jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA=="; + }; + } + { + name = "jws___jws_3.2.2.tgz"; + path = fetchurl { + name = "jws___jws_3.2.2.tgz"; + url = "https://registry.yarnpkg.com/jws/-/jws-3.2.2.tgz"; + sha512 = "YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA=="; + }; + } + { + name = "jws___jws_4.0.0.tgz"; + path = fetchurl { + name = "jws___jws_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/jws/-/jws-4.0.0.tgz"; + sha512 = "KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg=="; + }; + } { name = "keytar___keytar_7.9.0.tgz"; path = fetchurl { name = "keytar___keytar_7.9.0.tgz"; - url = "https://registry.yarnpkg.com/keytar/-/keytar-7.9.0.tgz"; + url = "https://registry.yarnpkg.com/keytar/-/keytar-7.9.0.tgz"; sha512 = "VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ=="; }; } @@ -475,7 +981,7 @@ name = "leven___leven_3.1.0.tgz"; path = fetchurl { name = "leven___leven_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz"; + url = "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz"; sha512 = "qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="; }; } @@ -483,15 +989,87 @@ name = "linkify_it___linkify_it_3.0.3.tgz"; path = fetchurl { name = "linkify_it___linkify_it_3.0.3.tgz"; - url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-3.0.3.tgz"; + url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-3.0.3.tgz"; sha512 = "ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ=="; }; } + { + name = "linkify_it___linkify_it_5.0.0.tgz"; + path = fetchurl { + name = "linkify_it___linkify_it_5.0.0.tgz"; + url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-5.0.0.tgz"; + sha512 = "5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ=="; + }; + } + { + name = "lodash.includes___lodash.includes_4.3.0.tgz"; + path = fetchurl { + name = "lodash.includes___lodash.includes_4.3.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz"; + sha512 = "W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w=="; + }; + } + { + name = "lodash.isboolean___lodash.isboolean_3.0.3.tgz"; + path = fetchurl { + name = "lodash.isboolean___lodash.isboolean_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz"; + sha512 = "Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="; + }; + } + { + name = "lodash.isinteger___lodash.isinteger_4.0.4.tgz"; + path = fetchurl { + name = "lodash.isinteger___lodash.isinteger_4.0.4.tgz"; + url = "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz"; + sha512 = "DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA=="; + }; + } + { + name = "lodash.isnumber___lodash.isnumber_3.0.3.tgz"; + path = fetchurl { + name = "lodash.isnumber___lodash.isnumber_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz"; + sha512 = "QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw=="; + }; + } + { + name = "lodash.isplainobject___lodash.isplainobject_4.0.6.tgz"; + path = fetchurl { + name = "lodash.isplainobject___lodash.isplainobject_4.0.6.tgz"; + url = "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz"; + sha512 = "oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="; + }; + } + { + name = "lodash.isstring___lodash.isstring_4.0.1.tgz"; + path = fetchurl { + name = "lodash.isstring___lodash.isstring_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz"; + sha512 = "0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw=="; + }; + } + { + name = "lodash.once___lodash.once_4.1.1.tgz"; + path = fetchurl { + name = "lodash.once___lodash.once_4.1.1.tgz"; + url = "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz"; + sha512 = "Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg=="; + }; + } + { + name = "lru_cache___lru_cache_11.0.2.tgz"; + path = fetchurl { + name = "lru_cache___lru_cache_11.0.2.tgz"; + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.0.2.tgz"; + sha512 = "123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA=="; + }; + } { name = "lru_cache___lru_cache_6.0.0.tgz"; path = fetchurl { name = "lru_cache___lru_cache_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; }; } @@ -499,23 +1077,55 @@ name = "markdown_it___markdown_it_12.3.2.tgz"; path = fetchurl { name = "markdown_it___markdown_it_12.3.2.tgz"; - url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-12.3.2.tgz"; + url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-12.3.2.tgz"; sha512 = "TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg=="; }; } + { + name = "markdown_it___markdown_it_14.1.0.tgz"; + path = fetchurl { + name = "markdown_it___markdown_it_14.1.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-14.1.0.tgz"; + sha512 = "a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg=="; + }; + } { name = "mdurl___mdurl_1.0.1.tgz"; path = fetchurl { name = "mdurl___mdurl_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz"; sha512 = "/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g=="; }; } + { + name = "mdurl___mdurl_2.0.0.tgz"; + path = fetchurl { + name = "mdurl___mdurl_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/mdurl/-/mdurl-2.0.0.tgz"; + sha512 = "Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w=="; + }; + } + { + name = "mime_db___mime_db_1.52.0.tgz"; + path = fetchurl { + name = "mime_db___mime_db_1.52.0.tgz"; + url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz"; + sha512 = "sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="; + }; + } + { + name = "mime_types___mime_types_2.1.35.tgz"; + path = fetchurl { + name = "mime_types___mime_types_2.1.35.tgz"; + url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz"; + sha512 = "ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="; + }; + } { name = "mime___mime_1.6.0.tgz"; path = fetchurl { name = "mime___mime_1.6.0.tgz"; - url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz"; + url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz"; sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; }; } @@ -523,15 +1133,23 @@ name = "mimic_response___mimic_response_3.1.0.tgz"; path = fetchurl { name = "mimic_response___mimic_response_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz"; + url = "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz"; sha512 = "z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="; }; } + { + name = "minimatch___minimatch_10.0.1.tgz"; + path = fetchurl { + name = "minimatch___minimatch_10.0.1.tgz"; + url = "https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz"; + sha512 = "ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ=="; + }; + } { name = "minimatch___minimatch_3.1.2.tgz"; path = fetchurl { name = "minimatch___minimatch_3.1.2.tgz"; - url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz"; + url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz"; sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; }; } @@ -539,23 +1157,39 @@ name = "minimist___minimist_1.2.8.tgz"; path = fetchurl { name = "minimist___minimist_1.2.8.tgz"; - url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz"; + url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz"; sha512 = "2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="; }; } + { + name = "minipass___minipass_7.1.2.tgz"; + path = fetchurl { + name = "minipass___minipass_7.1.2.tgz"; + url = "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz"; + sha512 = "qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="; + }; + } { name = "mkdirp_classic___mkdirp_classic_0.5.3.tgz"; path = fetchurl { name = "mkdirp_classic___mkdirp_classic_0.5.3.tgz"; - url = "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz"; + url = "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz"; sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="; }; } + { + name = "ms___ms_2.1.3.tgz"; + path = fetchurl { + name = "ms___ms_2.1.3.tgz"; + url = "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz"; + sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; + }; + } { name = "mute_stream___mute_stream_0.0.8.tgz"; path = fetchurl { name = "mute_stream___mute_stream_0.0.8.tgz"; - url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz"; + url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz"; sha512 = "nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="; }; } @@ -563,7 +1197,7 @@ name = "napi_build_utils___napi_build_utils_1.0.2.tgz"; path = fetchurl { name = "napi_build_utils___napi_build_utils_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz"; sha512 = "ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg=="; }; } @@ -571,7 +1205,7 @@ name = "node_abi___node_abi_3.71.0.tgz"; path = fetchurl { name = "node_abi___node_abi_3.71.0.tgz"; - url = "https://registry.yarnpkg.com/node-abi/-/node-abi-3.71.0.tgz"; + url = "https://registry.yarnpkg.com/node-abi/-/node-abi-3.71.0.tgz"; sha512 = "SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw=="; }; } @@ -579,7 +1213,7 @@ name = "node_addon_api___node_addon_api_4.3.0.tgz"; path = fetchurl { name = "node_addon_api___node_addon_api_4.3.0.tgz"; - url = "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz"; + url = "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz"; sha512 = "73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ=="; }; } @@ -587,7 +1221,7 @@ name = "nth_check___nth_check_2.1.1.tgz"; path = fetchurl { name = "nth_check___nth_check_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz"; + url = "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz"; sha512 = "lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w=="; }; } @@ -595,7 +1229,7 @@ name = "object_inspect___object_inspect_1.13.2.tgz"; path = fetchurl { name = "object_inspect___object_inspect_1.13.2.tgz"; - url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz"; + url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz"; sha512 = "IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g=="; }; } @@ -603,15 +1237,39 @@ name = "once___once_1.4.0.tgz"; path = fetchurl { name = "once___once_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; + url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; sha512 = "lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="; }; } + { + name = "open___open_8.4.2.tgz"; + path = fetchurl { + name = "open___open_8.4.2.tgz"; + url = "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz"; + sha512 = "7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ=="; + }; + } + { + name = "ovsx___ovsx_0.10.0.tgz"; + path = fetchurl { + name = "ovsx___ovsx_0.10.0.tgz"; + url = "https://registry.yarnpkg.com/ovsx/-/ovsx-0.10.0.tgz"; + sha512 = "DSgNXGQ444nGKag+LZh92R/hM2PfRSu+6VKfVawoZ+JzFDiGX8yhMkAuyVlHrlxLCpfQOsqs80GcHje/h2SpmA=="; + }; + } + { + name = "package_json_from_dist___package_json_from_dist_1.0.1.tgz"; + path = fetchurl { + name = "package_json_from_dist___package_json_from_dist_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz"; + sha512 = "UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="; + }; + } { name = "parse_semver___parse_semver_1.1.1.tgz"; path = fetchurl { name = "parse_semver___parse_semver_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/parse-semver/-/parse-semver-1.1.1.tgz"; + url = "https://registry.yarnpkg.com/parse-semver/-/parse-semver-1.1.1.tgz"; sha512 = "Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ=="; }; } @@ -619,7 +1277,7 @@ name = "parse5_htmlparser2_tree_adapter___parse5_htmlparser2_tree_adapter_7.1.0.tgz"; path = fetchurl { name = "parse5_htmlparser2_tree_adapter___parse5_htmlparser2_tree_adapter_7.1.0.tgz"; - url = "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz"; + url = "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz"; sha512 = "ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g=="; }; } @@ -627,7 +1285,7 @@ name = "parse5_parser_stream___parse5_parser_stream_7.1.2.tgz"; path = fetchurl { name = "parse5_parser_stream___parse5_parser_stream_7.1.2.tgz"; - url = "https://registry.yarnpkg.com/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz"; + url = "https://registry.yarnpkg.com/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz"; sha512 = "JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow=="; }; } @@ -635,7 +1293,7 @@ name = "parse5___parse5_7.2.1.tgz"; path = fetchurl { name = "parse5___parse5_7.2.1.tgz"; - url = "https://registry.yarnpkg.com/parse5/-/parse5-7.2.1.tgz"; + url = "https://registry.yarnpkg.com/parse5/-/parse5-7.2.1.tgz"; sha512 = "BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ=="; }; } @@ -643,15 +1301,31 @@ name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; path = fetchurl { name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="; }; } + { + name = "path_key___path_key_3.1.1.tgz"; + path = fetchurl { + name = "path_key___path_key_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz"; + sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; + }; + } + { + name = "path_scurry___path_scurry_2.0.0.tgz"; + path = fetchurl { + name = "path_scurry___path_scurry_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.0.tgz"; + sha512 = "ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg=="; + }; + } { name = "pend___pend_1.2.0.tgz"; path = fetchurl { name = "pend___pend_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz"; + url = "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz"; sha512 = "F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="; }; } @@ -659,7 +1333,7 @@ name = "prebuild_install___prebuild_install_7.1.2.tgz"; path = fetchurl { name = "prebuild_install___prebuild_install_7.1.2.tgz"; - url = "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.2.tgz"; + url = "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.2.tgz"; sha512 = "UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ=="; }; } @@ -667,15 +1341,23 @@ name = "pump___pump_3.0.2.tgz"; path = fetchurl { name = "pump___pump_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz"; + url = "https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz"; sha512 = "tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw=="; }; } + { + name = "punycode.js___punycode.js_2.3.1.tgz"; + path = fetchurl { + name = "punycode.js___punycode.js_2.3.1.tgz"; + url = "https://registry.yarnpkg.com/punycode.js/-/punycode.js-2.3.1.tgz"; + sha512 = "uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA=="; + }; + } { name = "qs___qs_6.13.0.tgz"; path = fetchurl { name = "qs___qs_6.13.0.tgz"; - url = "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz"; + url = "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz"; sha512 = "+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg=="; }; } @@ -683,7 +1365,7 @@ name = "rc___rc_1.2.8.tgz"; path = fetchurl { name = "rc___rc_1.2.8.tgz"; - url = "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz"; + url = "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz"; sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="; }; } @@ -691,7 +1373,7 @@ name = "read___read_1.0.7.tgz"; path = fetchurl { name = "read___read_1.0.7.tgz"; - url = "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz"; + url = "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz"; sha512 = "rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ=="; }; } @@ -699,7 +1381,7 @@ name = "readable_stream___readable_stream_3.6.2.tgz"; path = fetchurl { name = "readable_stream___readable_stream_3.6.2.tgz"; - url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz"; + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz"; sha512 = "9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="; }; } @@ -707,7 +1389,7 @@ name = "safe_buffer___safe_buffer_5.2.1.tgz"; path = fetchurl { name = "safe_buffer___safe_buffer_5.2.1.tgz"; - url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz"; + url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz"; sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; }; } @@ -715,7 +1397,7 @@ name = "safer_buffer___safer_buffer_2.1.2.tgz"; path = fetchurl { name = "safer_buffer___safer_buffer_2.1.2.tgz"; - url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; + url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; }; } @@ -723,7 +1405,7 @@ name = "sax___sax_1.4.1.tgz"; path = fetchurl { name = "sax___sax_1.4.1.tgz"; - url = "https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz"; + url = "https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz"; sha512 = "+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg=="; }; } @@ -731,7 +1413,7 @@ name = "semver___semver_5.7.2.tgz"; path = fetchurl { name = "semver___semver_5.7.2.tgz"; - url = "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz"; sha512 = "cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="; }; } @@ -739,7 +1421,7 @@ name = "semver___semver_7.6.3.tgz"; path = fetchurl { name = "semver___semver_7.6.3.tgz"; - url = "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz"; sha512 = "oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A=="; }; } @@ -747,23 +1429,47 @@ name = "set_function_length___set_function_length_1.2.2.tgz"; path = fetchurl { name = "set_function_length___set_function_length_1.2.2.tgz"; - url = "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz"; + url = "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz"; sha512 = "pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg=="; }; } + { + name = "shebang_command___shebang_command_2.0.0.tgz"; + path = fetchurl { + name = "shebang_command___shebang_command_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz"; + sha512 = "kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="; + }; + } + { + name = "shebang_regex___shebang_regex_3.0.0.tgz"; + path = fetchurl { + name = "shebang_regex___shebang_regex_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz"; + sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; + }; + } { name = "side_channel___side_channel_1.0.6.tgz"; path = fetchurl { name = "side_channel___side_channel_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz"; + url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz"; sha512 = "fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA=="; }; } + { + name = "signal_exit___signal_exit_4.1.0.tgz"; + path = fetchurl { + name = "signal_exit___signal_exit_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz"; + sha512 = "bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="; + }; + } { name = "simple_concat___simple_concat_1.0.1.tgz"; path = fetchurl { name = "simple_concat___simple_concat_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz"; + url = "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz"; sha512 = "cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="; }; } @@ -771,23 +1477,63 @@ name = "simple_get___simple_get_4.0.1.tgz"; path = fetchurl { name = "simple_get___simple_get_4.0.1.tgz"; - url = "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz"; + url = "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz"; sha512 = "brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA=="; }; } + { + name = "stoppable___stoppable_1.1.0.tgz"; + path = fetchurl { + name = "stoppable___stoppable_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/stoppable/-/stoppable-1.1.0.tgz"; + sha512 = "KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw=="; + }; + } + { + name = "string_width___string_width_4.2.3.tgz"; + path = fetchurl { + name = "string_width___string_width_4.2.3.tgz"; + url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz"; + sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; + }; + } + { + name = "string_width___string_width_5.1.2.tgz"; + path = fetchurl { + name = "string_width___string_width_5.1.2.tgz"; + url = "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz"; + sha512 = "HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="; + }; + } { name = "string_decoder___string_decoder_1.3.0.tgz"; path = fetchurl { name = "string_decoder___string_decoder_1.3.0.tgz"; - url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz"; + url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz"; sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; }; } + { + name = "strip_ansi___strip_ansi_6.0.1.tgz"; + path = fetchurl { + name = "strip_ansi___strip_ansi_6.0.1.tgz"; + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz"; + sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; + }; + } + { + name = "strip_ansi___strip_ansi_7.1.0.tgz"; + path = fetchurl { + name = "strip_ansi___strip_ansi_7.1.0.tgz"; + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz"; + sha512 = "iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="; + }; + } { name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; path = fetchurl { name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; + url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; sha512 = "4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="; }; } @@ -795,7 +1541,7 @@ name = "supports_color___supports_color_5.5.0.tgz"; path = fetchurl { name = "supports_color___supports_color_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; }; } @@ -803,7 +1549,7 @@ name = "tar_fs___tar_fs_2.1.1.tgz"; path = fetchurl { name = "tar_fs___tar_fs_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz"; + url = "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz"; sha512 = "V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng=="; }; } @@ -811,7 +1557,7 @@ name = "tar_stream___tar_stream_2.2.0.tgz"; path = fetchurl { name = "tar_stream___tar_stream_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz"; + url = "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz"; sha512 = "ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ=="; }; } @@ -819,15 +1565,23 @@ name = "tmp___tmp_0.2.3.tgz"; path = fetchurl { name = "tmp___tmp_0.2.3.tgz"; - url = "https://registry.yarnpkg.com/tmp/-/tmp-0.2.3.tgz"; + url = "https://registry.yarnpkg.com/tmp/-/tmp-0.2.3.tgz"; sha512 = "nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w=="; }; } + { + name = "tslib___tslib_2.8.1.tgz"; + path = fetchurl { + name = "tslib___tslib_2.8.1.tgz"; + url = "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz"; + sha512 = "oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="; + }; + } { name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; path = fetchurl { name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; - url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; + url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; sha512 = "McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w=="; }; } @@ -835,7 +1589,7 @@ name = "tunnel___tunnel_0.0.6.tgz"; path = fetchurl { name = "tunnel___tunnel_0.0.6.tgz"; - url = "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz"; + url = "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz"; sha512 = "1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg=="; }; } @@ -843,7 +1597,7 @@ name = "typed_rest_client___typed_rest_client_1.8.11.tgz"; path = fetchurl { name = "typed_rest_client___typed_rest_client_1.8.11.tgz"; - url = "https://registry.yarnpkg.com/typed-rest-client/-/typed-rest-client-1.8.11.tgz"; + url = "https://registry.yarnpkg.com/typed-rest-client/-/typed-rest-client-1.8.11.tgz"; sha512 = "5UvfMpd1oelmUPRbbaVnq+rHP7ng2cE4qoQkQeAqxRL6PklkxsM0g32/HL0yfvruK6ojQ5x8EE+HF4YV6DtuCA=="; }; } @@ -851,15 +1605,23 @@ name = "uc.micro___uc.micro_1.0.6.tgz"; path = fetchurl { name = "uc.micro___uc.micro_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz"; + url = "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz"; sha512 = "8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA=="; }; } + { + name = "uc.micro___uc.micro_2.1.0.tgz"; + path = fetchurl { + name = "uc.micro___uc.micro_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/uc.micro/-/uc.micro-2.1.0.tgz"; + sha512 = "ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A=="; + }; + } { name = "underscore___underscore_1.13.7.tgz"; path = fetchurl { name = "underscore___underscore_1.13.7.tgz"; - url = "https://registry.yarnpkg.com/underscore/-/underscore-1.13.7.tgz"; + url = "https://registry.yarnpkg.com/underscore/-/underscore-1.13.7.tgz"; sha512 = "GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g=="; }; } @@ -867,7 +1629,7 @@ name = "undici___undici_6.20.1.tgz"; path = fetchurl { name = "undici___undici_6.20.1.tgz"; - url = "https://registry.yarnpkg.com/undici/-/undici-6.20.1.tgz"; + url = "https://registry.yarnpkg.com/undici/-/undici-6.20.1.tgz"; sha512 = "AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA=="; }; } @@ -875,7 +1637,7 @@ name = "url_join___url_join_4.0.1.tgz"; path = fetchurl { name = "url_join___url_join_4.0.1.tgz"; - url = "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz"; + url = "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz"; sha512 = "jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA=="; }; } @@ -883,15 +1645,23 @@ name = "util_deprecate___util_deprecate_1.0.2.tgz"; path = fetchurl { name = "util_deprecate___util_deprecate_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; sha512 = "EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="; }; } + { + name = "uuid___uuid_8.3.2.tgz"; + path = fetchurl { + name = "uuid___uuid_8.3.2.tgz"; + url = "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz"; + sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; + }; + } { name = "vsce___vsce_2.15.0.tgz"; path = fetchurl { name = "vsce___vsce_2.15.0.tgz"; - url = "https://registry.yarnpkg.com/vsce/-/vsce-2.15.0.tgz"; + url = "https://registry.yarnpkg.com/vsce/-/vsce-2.15.0.tgz"; sha512 = "P8E9LAZvBCQnoGoizw65JfGvyMqNGlHdlUXD1VAuxtvYAaHBKLBdKPnpy60XKVDAkQCfmMu53g+gq9FM+ydepw=="; }; } @@ -899,7 +1669,7 @@ name = "whatwg_encoding___whatwg_encoding_3.1.1.tgz"; path = fetchurl { name = "whatwg_encoding___whatwg_encoding_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz"; + url = "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz"; sha512 = "6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ=="; }; } @@ -907,15 +1677,39 @@ name = "whatwg_mimetype___whatwg_mimetype_4.0.0.tgz"; path = fetchurl { name = "whatwg_mimetype___whatwg_mimetype_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz"; sha512 = "QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg=="; }; } + { + name = "which___which_2.0.2.tgz"; + path = fetchurl { + name = "which___which_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz"; + sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; + }; + } + { + name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; + path = fetchurl { + name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; + sha512 = "YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="; + }; + } + { + name = "wrap_ansi___wrap_ansi_8.1.0.tgz"; + path = fetchurl { + name = "wrap_ansi___wrap_ansi_8.1.0.tgz"; + url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz"; + sha512 = "si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="; + }; + } { name = "wrappy___wrappy_1.0.2.tgz"; path = fetchurl { name = "wrappy___wrappy_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; + url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; sha512 = "l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="; }; } @@ -923,15 +1717,23 @@ name = "xml2js___xml2js_0.4.23.tgz"; path = fetchurl { name = "xml2js___xml2js_0.4.23.tgz"; - url = "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz"; + url = "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz"; sha512 = "ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug=="; }; } + { + name = "xml2js___xml2js_0.5.0.tgz"; + path = fetchurl { + name = "xml2js___xml2js_0.5.0.tgz"; + url = "https://registry.yarnpkg.com/xml2js/-/xml2js-0.5.0.tgz"; + sha512 = "drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA=="; + }; + } { name = "xmlbuilder___xmlbuilder_11.0.1.tgz"; path = fetchurl { name = "xmlbuilder___xmlbuilder_11.0.1.tgz"; - url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz"; + url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz"; sha512 = "fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA=="; }; } @@ -939,7 +1741,7 @@ name = "yallist___yallist_4.0.0.tgz"; path = fetchurl { name = "yallist___yallist_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz"; + url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz"; sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; }; } @@ -947,15 +1749,23 @@ name = "yauzl___yauzl_2.10.0.tgz"; path = fetchurl { name = "yauzl___yauzl_2.10.0.tgz"; - url = "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz"; + url = "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz"; sha512 = "p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g=="; }; } + { + name = "yauzl___yauzl_3.2.0.tgz"; + path = fetchurl { + name = "yauzl___yauzl_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/yauzl/-/yauzl-3.2.0.tgz"; + sha512 = "Ow9nuGZE+qp1u4JIPvg+uCiUr7xGQWdff7JQSk5VGYTAZMDe2q8lxJ10ygv10qmSj031Ty/6FNJpLO4o1Sgc+w=="; + }; + } { name = "yazl___yazl_2.5.1.tgz"; path = fetchurl { name = "yazl___yazl_2.5.1.tgz"; - url = "https://registry.yarnpkg.com/yazl/-/yazl-2.5.1.tgz"; + url = "https://registry.yarnpkg.com/yazl/-/yazl-2.5.1.tgz"; sha512 = "phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw=="; }; } diff --git a/src/alejandra/Cargo.toml b/src/alejandra/Cargo.toml index cb6091b..3876b9c 100644 --- a/src/alejandra/Cargo.toml +++ b/src/alejandra/Cargo.toml @@ -29,7 +29,7 @@ edition = "2021" license = "Unlicense" name = "alejandra" repository = "https://github.com/kamadorueda/alejandra" -version = "3.0.0" +version = "3.1.0" [dev-dependencies] pretty_assertions = "1.3.0" diff --git a/src/alejandra/src/version.rs b/src/alejandra/src/version.rs index 6edb889..ef52733 100644 --- a/src/alejandra/src/version.rs +++ b/src/alejandra/src/version.rs @@ -1,2 +1,2 @@ /// The version of Alejandra. -pub const VERSION: &str = "3.0.0"; +pub const VERSION: &str = "3.1.0"; diff --git a/src/alejandra_cli/Cargo.toml b/src/alejandra_cli/Cargo.toml index 34b2b16..0e39fa0 100644 --- a/src/alejandra_cli/Cargo.toml +++ b/src/alejandra_cli/Cargo.toml @@ -4,22 +4,22 @@ path = "src/main.rs" [dependencies] alejandra = { path = "../alejandra" } -clap = { version = "*", default_features = false, features = [ +clap = { version = "*", default-features = false, features = [ "color", "derive", "std", - "strsim" + "strsim", ] } -futures = { version = "*", default_features = false, features = [ +futures = { version = "*", default-features = false, features = [ "executor", - "thread-pool" + "thread-pool", ] } -num_cpus = { version = "*", default_features = false, features = [] } +num_cpus = { version = "*", default-features = false, features = [] } rand = { version = "*", default-features = false, features = [ "alloc", - "getrandom" + "getrandom", ] } -walkdir = { version = "*", default_features = false, features = [] } +walkdir = { version = "*", default-features = false, features = [] } [package] authors = ["Kevin Amado "] @@ -28,4 +28,4 @@ edition = "2021" license = "Unlicense" name = "alejandra_cli" repository = "https://github.com/kamadorueda/alejandra" -version = "3.0.0" +version = "3.1.0" diff --git a/src/alejandra_cli/src/ads/mod.rs b/src/alejandra_cli/src/ads/mod.rs index 5fe0f63..f248fe1 100644 --- a/src/alejandra_cli/src/ads/mod.rs +++ b/src/alejandra_cli/src/ads/mod.rs @@ -1,5 +1,5 @@ -use rand::distributions::weighted::WeightedIndex; use rand::distributions::Distribution; +use rand::distributions::weighted::WeightedIndex; use rand::rngs::OsRng; pub(crate) fn random_ad() -> String { diff --git a/src/alejandra_cli/src/cli.rs b/src/alejandra_cli/src/cli.rs index bab102c..6448198 100644 --- a/src/alejandra_cli/src/cli.rs +++ b/src/alejandra_cli/src/cli.rs @@ -1,8 +1,8 @@ use std::io::Read; -use clap::value_parser; use clap::ArgAction; use clap::Parser; +use clap::value_parser; use futures::future::RemoteHandle; use futures::stream::FuturesUnordered; use futures::task::SpawnExt;