├── .changeset ├── README.md └── config.json ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.yml ├── diff_comment_template.md ├── pull_request_template.md └── workflows │ ├── diff.yml │ └── release.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── icon.png ├── package.json ├── src ├── classic │ ├── README.md │ ├── colors.json │ ├── primer.js │ ├── process.js │ └── theme.js ├── colors.js ├── index.js └── theme.js └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- 1 | # Changesets 2 | 3 | Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works 4 | with multi-package repos, or single-package repos to help you version and publish your code. You can 5 | find the full documentation for it [in our repository](https://github.com/changesets/changesets) 6 | 7 | We have a quick list of common questions to get you started engaging with this project in 8 | [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) 9 | -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://unpkg.com/@changesets/config@1.6.1/schema.json", 3 | "changelog": ["@changesets/changelog-github", {"repo": "primer/github-vscode-theme"}], 4 | "commit": false, 5 | "linked": [], 6 | "access": "public", 7 | "baseBranch": "main", 8 | "updateInternalDependencies": "patch", 9 | "ignore": [] 10 | } 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug report 🐛 2 | description: Something not working as expected? This is the place to report your issue. 3 | labels: 4 | - 'bug' 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | # Hi there! :wave: 10 | 11 | Thanks for taking the time to fill out this bug report. 12 | - type: textarea 13 | id: description 14 | attributes: 15 | label: Description 16 | description: "Tell us more about the problem that you're running into. If possible attach a screenshot or video." 17 | placeholder: What did you see? What did you expect to see? 18 | validations: 19 | required: true 20 | - type: textarea 21 | id: reproduce 22 | attributes: 23 | label: Steps to reproduce 24 | description: 'How do we reproduce the error you described above? Does an additional extension need to be installed? For issues with syntax highlighting, consider adding some example code and the language being used.' 25 | placeholder: | 26 | 1. Go to '...' 27 | 2. Click on '....' 28 | 3. Scroll down to '....' 29 | 4. Type '....' 30 | validations: 31 | required: true 32 | - type: input 33 | id: version 34 | attributes: 35 | label: Version 36 | description: 'What version of `github-vscode-theme` are you using?' 37 | placeholder: v6.3.2 38 | validations: 39 | required: true 40 | - type: dropdown 41 | id: theme 42 | attributes: 43 | label: Theme 44 | description: In which themes(s) are you experiencing the issue? 45 | multiple: true 46 | options: 47 | - GitHub Light Default 48 | - GitHub Light High Contrast 49 | - GitHub Light Colorblind 50 | - GitHub Light 51 | - GitHub Dark Default 52 | - GitHub Dark High Contrast 53 | - GitHub Dark Colorblind 54 | - GitHub Dark Dimmed 55 | - GitHub Dark -------------------------------------------------------------------------------- /.github/diff_comment_template.md: -------------------------------------------------------------------------------- 1 |
2 | Colors changed 3 | 4 | 5 |
6 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | Describe your changes here. 2 | 3 | Closes # (type the issue number after # if applicable; otherwise remove this line) 4 | 5 | ### Screenshots 6 | 7 | Please provide before/after screenshots for any visual changes 8 | 9 | ### Merge checklist 10 | 11 | - [ ] Added/updated colors 12 | - [ ] Added/updated documentation/README 13 | - [ ] Tested in `GitHub Light Default` theme 14 | 15 | Take a look at the [Contribute](https://github.com/primer/github-vscode-theme#contribute) section for more information on how test your changes locally. 16 | -------------------------------------------------------------------------------- /.github/workflows/diff.yml: -------------------------------------------------------------------------------- 1 | # Posts a comment listing all the colors that changed in a PR 2 | name: Diff 3 | on: 4 | pull_request: 5 | branches-ignore: 6 | - 'test/**' 7 | jobs: 8 | comment: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - name: Checkout repository 12 | uses: actions/checkout@v2 13 | 14 | - name: Set up node 15 | uses: actions/setup-node@v2 16 | with: 17 | node-version: 14 18 | 19 | - name: Create comment (if necessary) 20 | uses: actions/github-script@v5 21 | with: 22 | script: | 23 | const fs = require('fs') 24 | const body = fs.readFileSync('.github/diff_comment_template.md', 'utf8') 25 | const result = await github.rest.issues.listComments({ 26 | issue_number: context.issue.number, 27 | owner: context.repo.owner, 28 | repo: context.repo.repo 29 | }); 30 | console.log(result.data) 31 | const botComments = result.data.filter(c => c.user.login === 'github-actions[bot]') 32 | if (!botComments.length) { 33 | await github.rest.issues.createComment({ 34 | issue_number: context.issue.number, 35 | owner: context.repo.owner, 36 | repo: context.repo.repo, 37 | body 38 | }) 39 | } 40 | 41 | diff: 42 | needs: comment 43 | runs-on: ubuntu-latest 44 | steps: 45 | - name: Checkout repository 46 | uses: actions/checkout@v2 47 | 48 | - name: Checkout base branch 49 | uses: actions/checkout@v2 50 | with: 51 | ref: ${{ github.base_ref }} 52 | path: base 53 | 54 | - name: Set up Node 55 | uses: actions/setup-node@v2 56 | with: 57 | node-version: 14 58 | 59 | - name: Install dependencies 60 | run: yarn 61 | 62 | - name: Build 63 | run: yarn build 64 | 65 | - name: Install dependencies (base) 66 | run: pushd base; yarn; popd 67 | 68 | - name: Build (base) 69 | run: pushd base; yarn build; popd 70 | 71 | - name: Diff 72 | uses: primer/comment-token-update@main 73 | env: 74 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 75 | GITHUB_USER: github-actions[bot] 76 | with: 77 | # This action will find the first comment by `github-actions[bot]` and 78 | # insert the diff data if `` is present in that comment. 79 | # If there are multiple comments by `github-actions[bot]` 80 | # or if `` is missing, 81 | # this action may not work as expected. 82 | comment-token: 'diff' 83 | script: | 84 | diff=$(for file in themes/*.json 85 | do 86 | diff -U 1 base/$file $file 87 | done) 88 | 89 | echo "\`\`\`diff" 90 | 91 | if [[ $diff ]] 92 | then 93 | echo "$diff" 94 | else 95 | echo "No colors changed" 96 | fi 97 | 98 | echo "\`\`\`" 99 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | on: 3 | push: 4 | branches: 5 | - 'main' 6 | jobs: 7 | release: 8 | name: Final 9 | if: ${{ github.repository == 'primer/github-vscode-theme' }} 10 | 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: Checkout repository 14 | uses: actions/checkout@v3 15 | with: 16 | # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits 17 | fetch-depth: 0 18 | persist-credentials: false 19 | 20 | - name: Set up Node.js 21 | uses: actions/setup-node@v3 22 | with: 23 | node-version: 14.x 24 | 25 | - name: Install dependencies 26 | run: yarn 27 | 28 | - name: Create release pull request or publish to npm 29 | id: changesets 30 | uses: changesets/action@master 31 | with: 32 | title: Release Tracking 33 | # This expects you to have a script called release which does a build for your packages and calls changeset publish 34 | publish: yarn release 35 | env: 36 | GITHUB_TOKEN: ${{ secrets.GPR_AUTH_TOKEN_SHARED }} 37 | VSCE_PAT: ${{ secrets.VSCE_PUBLISHER_TOKEN }} 38 | NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN_SHARED }} 39 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | /themes/ 4 | package-lock.json 5 | build 6 | *.vsix 7 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that launches the extension inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Run Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "runtimeExecutable": "${execPath}", 13 | "args": ["--extensionDevelopmentPath=${workspaceFolder}"], 14 | "preLaunchTask": "npm: build" 15 | }, 16 | { 17 | "name": "Run Extension Without Build", 18 | "type": "extensionHost", 19 | "request": "launch", 20 | "runtimeExecutable": "${execPath}", 21 | "args": ["--extensionDevelopmentPath=${workspaceFolder}"] 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0.0", 3 | "tasks": [ 4 | { 5 | "type": "npm", 6 | "script": "start", 7 | "group": { 8 | "kind": "build", 9 | "isDefault": true 10 | }, 11 | "problemMatcher": [], 12 | "label": "npm: start", 13 | "detail": "nodemon --watch src src/index.js" 14 | }, 15 | { 16 | "type": "npm", 17 | "script": "build", 18 | "group": "build", 19 | "problemMatcher": [], 20 | "label": "npm: build", 21 | "detail": "node src/index.js" 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .changeset/ 4 | .github/ 5 | .gitignore 6 | /node_modules/ 7 | /package-lock.json 8 | /src/ 9 | /build/ 10 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # github-vscode-theme 2 | 3 | ## 6.3.5 4 | 5 | ### Patch Changes 6 | 7 | - [#395](https://github.com/primer/github-vscode-theme/pull/395) [`b7991c4`](https://github.com/primer/github-vscode-theme/commit/b7991c42030126bdaf68f6cdeaefcee5a8d8d876) Thanks [@Damovisa](https://github.com/Damovisa)! - Fix inline code block contrast for High Contrast theme. 8 | 9 | ## 6.3.4 10 | 11 | ### Patch Changes 12 | 13 | - [#357](https://github.com/primer/github-vscode-theme/pull/357) [`c783d6c`](https://github.com/primer/github-vscode-theme/commit/c783d6c42a13de7e1dc533b4fa475001e02d32b8) Thanks [@simurai](https://github.com/simurai)! - Improve color contrast for default Light and Dark themes 14 | 15 | ## 6.3.3 16 | 17 | ### Patch Changes 18 | 19 | - [#342](https://github.com/primer/github-vscode-theme/pull/342) [`41b22cc`](https://github.com/primer/github-vscode-theme/commit/41b22cc830bfd59db96a5c663a697b9a4b46d2c8) Thanks [@simurai](https://github.com/simurai)! - Fix tab color for `GitHub Light High Contrast` 20 | 21 | * [#343](https://github.com/primer/github-vscode-theme/pull/343) [`89e26fc`](https://github.com/primer/github-vscode-theme/commit/89e26fcf5f1ca695dd1324321abad0b28d1f9c03) Thanks [@broccolinisoup](https://github.com/broccolinisoup)! - Add issue + PR templates 22 | 23 | - [#328](https://github.com/primer/github-vscode-theme/pull/328) [`ed605f6`](https://github.com/primer/github-vscode-theme/commit/ed605f65cf463145ea904c06dfe91206b3dacd65) Thanks [@Mekomancer](https://github.com/Mekomancer)! - Increase diff contrast 24 | 25 | * [#337](https://github.com/primer/github-vscode-theme/pull/337) [`60db748`](https://github.com/primer/github-vscode-theme/commit/60db74858150191403d3255e605115b9e38dca40) Thanks [@ShadiestGoat](https://github.com/ShadiestGoat)! - Add better placeholder colors for semantic highlighting 26 | 27 | - [#346](https://github.com/primer/github-vscode-theme/pull/346) [`2c27f5d`](https://github.com/primer/github-vscode-theme/commit/2c27f5d099dc623c5529af12ffb3809edaaa33c9) Thanks [@simurai](https://github.com/simurai)! - Improve minimap slider contrast 28 | 29 | * [#348](https://github.com/primer/github-vscode-theme/pull/348) [`67a22b1`](https://github.com/primer/github-vscode-theme/commit/67a22b109c96e65186918673cc7a091d8ea7622e) Thanks [@broccolinisoup](https://github.com/broccolinisoup)! - Update the color for the active header foreground 30 | 31 | - [#344](https://github.com/primer/github-vscode-theme/pull/344) [`19bf4a5`](https://github.com/primer/github-vscode-theme/commit/19bf4a599e6727ec8438d806af775096bda37108) Thanks [@simurai](https://github.com/simurai)! - Bump `primer/primitives` to `7.10.0` 32 | 33 | * [#347](https://github.com/primer/github-vscode-theme/pull/347) [`ed61642`](https://github.com/primer/github-vscode-theme/commit/ed61642babfb3beb27459f52f71ff0e171ce6890) Thanks [@simurai](https://github.com/simurai)! - Remove underline from link text 34 | 35 | ## 6.3.2 36 | 37 | ### Patch Changes 38 | 39 | - [#316](https://github.com/primer/github-vscode-theme/pull/316) [`50149a8`](https://github.com/primer/github-vscode-theme/commit/50149a863e7b402df07bd3ae8a6577adf91193a3) Thanks [@simurai](https://github.com/simurai)! - Differentiate remote status-bar item 40 | 41 | ## 6.3.1 42 | 43 | ### Patch Changes 44 | 45 | - [#311](https://github.com/primer/github-vscode-theme/pull/311) [`09968c2`](https://github.com/primer/github-vscode-theme/commit/09968c28ae3f773d70d619a03dee8eec776b403a) Thanks [@simurai](https://github.com/simurai)! - Remove `punctuation.definition.string` 46 | 47 | * [#312](https://github.com/primer/github-vscode-theme/pull/312) [`71c180a`](https://github.com/primer/github-vscode-theme/commit/71c180abfcd2ee037d61e90934131e8288435af9) Thanks [@simurai](https://github.com/simurai)! - Make `editorIndentGuide` semi-transparent 48 | 49 | - [#303](https://github.com/primer/github-vscode-theme/pull/303) [`735ec3c`](https://github.com/primer/github-vscode-theme/commit/735ec3c917e8d34da4bff3eaddb4f71e5aab74ae) Thanks [@simurai](https://github.com/simurai)! - Colorize JSON property-name 50 | 51 | ## 6.3.0 52 | 53 | ### Minor Changes 54 | 55 | - [#296](https://github.com/primer/github-vscode-theme/pull/296) [`4fe2d37`](https://github.com/primer/github-vscode-theme/commit/4fe2d37844eb2b600ca4295e5a7c9255ffe2ac0d) Thanks [@simurai](https://github.com/simurai)! - Add support for strikethrough 56 | 57 | ### Patch Changes 58 | 59 | - [#299](https://github.com/primer/github-vscode-theme/pull/299) [`b0f4bd9`](https://github.com/primer/github-vscode-theme/commit/b0f4bd9df4807e908fd46fa2ea1cb964e42358fe) Thanks [@simurai](https://github.com/simurai)! - Improve breakpoint icon for colorblind themes 60 | 61 | * [#297](https://github.com/primer/github-vscode-theme/pull/297) [`328c05b`](https://github.com/primer/github-vscode-theme/commit/328c05ba05bc941c176681b49e2981fca36c0365) Thanks [@simurai](https://github.com/simurai)! - Remove `string source` scope 62 | 63 | - [#292](https://github.com/primer/github-vscode-theme/pull/292) [`6283960`](https://github.com/primer/github-vscode-theme/commit/628396061a306faa61d9c22cbb287bb79f02f5a3) Thanks [@simurai](https://github.com/simurai)! - Colorize inline code blocks for the classic themes 64 | 65 | * [#294](https://github.com/primer/github-vscode-theme/pull/294) [`5593a09`](https://github.com/primer/github-vscode-theme/commit/5593a096d817ae7d9e7a9234ec31034d3a042cce) Thanks [@simurai](https://github.com/simurai)! - Improve selection in High Contrast themes 66 | 67 | - [#302](https://github.com/primer/github-vscode-theme/pull/302) [`c08c420`](https://github.com/primer/github-vscode-theme/commit/c08c4202024ab8d0914bab6f62e873d734a3a5aa) Thanks [@simurai](https://github.com/simurai)! - Reduce contrast for whitespace characters 68 | 69 | * [#298](https://github.com/primer/github-vscode-theme/pull/298) [`130db93`](https://github.com/primer/github-vscode-theme/commit/130db93c39d565656ee886e352e9f7c4c2d05a9c) Thanks [@simurai](https://github.com/simurai)! - Reduce contrast for line numbers 70 | 71 | ## 6.2.0 72 | 73 | ### Minor Changes 74 | 75 | - [#287](https://github.com/primer/github-vscode-theme/pull/287) [`dd81ff1`](https://github.com/primer/github-vscode-theme/commit/dd81ff10180ecd76fd108defa7d2d61db9534462) Thanks [@simurai](https://github.com/simurai)! - Improve diff colors 76 | 77 | * [#274](https://github.com/primer/github-vscode-theme/pull/274) [`9b88e1c`](https://github.com/primer/github-vscode-theme/commit/9b88e1c652f649bf28bc149d681010c5fd8f22f1) Thanks [@BrunoCoimbra](https://github.com/BrunoCoimbra)! - Add bracket pair colorization 78 | 79 | - [#278](https://github.com/primer/github-vscode-theme/pull/278) [`a877e3f`](https://github.com/primer/github-vscode-theme/commit/a877e3f80496af89d000f5502764e0d579105325) Thanks [@clavin](https://github.com/clavin)! - Add inlay hint styles 80 | 81 | * [#184](https://github.com/primer/github-vscode-theme/pull/184) [`16d4682`](https://github.com/primer/github-vscode-theme/commit/16d468237346e27eafe265d8fad22ba918367b83) Thanks [@abeprincec](https://github.com/abeprincec)! - Add syntax highlight for puncation.section.embedded 82 | 83 | - [#239](https://github.com/primer/github-vscode-theme/pull/239) [`d1d663b`](https://github.com/primer/github-vscode-theme/commit/d1d663b5e5ee9c388c5ddad34bcf8798c59da6cf) Thanks [@jeffgennari](https://github.com/jeffgennari)! - Add debug and symbol icon colors 84 | 85 | ### Patch Changes 86 | 87 | - [#285](https://github.com/primer/github-vscode-theme/pull/285) [`9eece4d`](https://github.com/primer/github-vscode-theme/commit/9eece4db938df76cad3e19f5a42ee8f0c2e5b762) Thanks [@simurai](https://github.com/simurai)! - Fix icons in high contrast themes 88 | 89 | * [#288](https://github.com/primer/github-vscode-theme/pull/288) [`74a48e5`](https://github.com/primer/github-vscode-theme/commit/74a48e5dde97f057e01f2956fb861a4b56692098) Thanks [@simurai](https://github.com/simurai)! - Increase contrast of the terminal 90 | 91 | ## 6.1.0 92 | 93 | ### Minor Changes 94 | 95 | - [#212](https://github.com/primer/github-vscode-theme/pull/212) [`f03ca46`](https://github.com/primer/github-vscode-theme/commit/f03ca46b7ace7d98f8e6761dca56083e1ba54c3c) Thanks [@akiirui](https://github.com/akiirui)! - fix: add missing scope variable.other.enummember 96 | 97 | * [#193](https://github.com/primer/github-vscode-theme/pull/193) [`8bb0bc8`](https://github.com/primer/github-vscode-theme/commit/8bb0bc8a2150515ec5c6d9467335b6b827870ec5) Thanks [@serpilacar](https://github.com/serpilacar)! - Update markdown inline code scope 98 | 99 | - [#252](https://github.com/primer/github-vscode-theme/pull/252) [`706236c`](https://github.com/primer/github-vscode-theme/commit/706236cfaa6bdeb7ba3942d63eb03a82097fcc04) Thanks [@magic-akari](https://github.com/magic-akari)! - feat: add underline support 100 | 101 | ### Patch Changes 102 | 103 | - [#268](https://github.com/primer/github-vscode-theme/pull/268) [`6bc9e1a`](https://github.com/primer/github-vscode-theme/commit/6bc9e1a21f3251b1064683e8d8fce4172a56e2a5) Thanks [@simurai](https://github.com/simurai)! - Update remote statusbar item 104 | 105 | ## 6.0.0 106 | 107 | ### Major Changes 108 | 109 | - [#240](https://github.com/primer/github-vscode-theme/pull/240) [`075feb5`](https://github.com/primer/github-vscode-theme/commit/075feb5c753b3ac3fc2029e98203be5134bcd8f7) Thanks [@maximedegreve](https://github.com/maximedegreve)! - # Light High Contrast Theme 110 | 111 | GitHub Light High Contrast is now out of beta and available to everyone. 🎉 112 | 113 | ![Light High Contrast Theme](https://user-images.githubusercontent.com/980622/151374445-39670cae-ab83-400c-8b7d-fe4dd36c7cc3.png) 114 | 115 | ## 5.2.2 116 | 117 | ### Patch Changes 118 | 119 | - [#244](https://github.com/primer/github-vscode-theme/pull/244) [`d318d0e`](https://github.com/primer/github-vscode-theme/commit/d318d0eb3aa3a48c0983c3cc7b245847643b046a) Thanks [@maximedegreve](https://github.com/maximedegreve)! - Easier code to manage + port values to new primitives 120 | 121 | ## 5.2.1 122 | 123 | ### Patch Changes 124 | 125 | - [#256](https://github.com/primer/github-vscode-theme/pull/256) [`6549f32`](https://github.com/primer/github-vscode-theme/commit/6549f32ee5e97bb01655d4de47672c15e58e06c9) Thanks [@simurai](https://github.com/simurai)! - Fix Dark Dimmed from loosing syntax highlighting 126 | 127 | ## 5.2.0 128 | 129 | ### Minor Changes 130 | 131 | - [#240](https://github.com/primer/github-vscode-theme/pull/240) [`075feb5`](https://github.com/primer/github-vscode-theme/commit/075feb5c753b3ac3fc2029e98203be5134bcd8f7) Thanks [@maximedegreve](https://github.com/maximedegreve)! - Light High Contrast Theme 132 | 133 | ## 5.1.0 134 | 135 | ### Minor Changes 136 | 137 | - [#225](https://github.com/primer/github-vscode-theme/pull/225) [`241d482`](https://github.com/primer/github-vscode-theme/commit/241d48297ea3a7c91d6bf3c61b5beffb13044f32) Thanks [@maximedegreve](https://github.com/maximedegreve)! - # Colorblind Light & Dark Theme 138 | Adds a new GitHub Colorblind Light and Dark theme similar to the themes on github.com. 139 | 140 | ![Colorblind](https://user-images.githubusercontent.com/980622/136975341-4d5eca55-40d6-4d9f-8b33-ba8acbc805e4.png) 141 | 142 | ## 5.0.3 143 | 144 | ### Patch Changes 145 | 146 | - [#234](https://github.com/primer/github-vscode-theme/pull/234) [`bbb3a83`](https://github.com/primer/github-vscode-theme/commit/bbb3a83f20be57106f6bf68bb06b7d64b2a58025) Thanks [@simurai](https://github.com/simurai)! - Update README 147 | 148 | ## 5.0.2 149 | 150 | ### Patch Changes 151 | 152 | - [#232](https://github.com/primer/github-vscode-theme/pull/232) [`027ef70`](https://github.com/primer/github-vscode-theme/commit/027ef7050ba360a76d7bdd252ff60568edc4343b) Thanks [@jonrohan](https://github.com/jonrohan)! - Testing another patch release 153 | 154 | ## 5.0.1 155 | 156 | ### Patch Changes 157 | 158 | - [#229](https://github.com/primer/github-vscode-theme/pull/229) [`4279f43`](https://github.com/primer/github-vscode-theme/commit/4279f431387df11544508f618ecc75c3739a95ed) Thanks [@simurai](https://github.com/simurai)! - Add note about publishing 159 | 160 | ## 5.0.0 161 | 162 | ### Major Changes 163 | 164 | - Add new "GitHub Dark High Contrast" theme [#203](https://github.com/primer/github-vscode-theme/pull/203). 165 | - Update colors from Primer Primitives [#203](https://github.com/primer/github-vscode-theme/pull/203). 166 | 167 | ![GitHub VS Code theme](https://user-images.githubusercontent.com/378023/132220037-3cd3e777-55a6-445f-9a2e-da6020ebd78d.png) 168 | 169 | ## 4.2.1 170 | 171 | - Fix importing v2 colors from primer/primitives 172 | 173 | ## 4.2.0 174 | 175 | - Add `editorBracketHighlight` and ANSI to classic. [#205](https://github.com/primer/github-vscode-theme/pull/205). 176 | - Set `terminal.tab.activeBorder` based on editor tab [#189](https://github.com/primer/github-vscode-theme/pull/189). 177 | - More clearer for the difference between new theme and legacy theme [#191](https://github.com/primer/github-vscode-theme/pull/191). 178 | 179 | ## 4.1.1 180 | 181 | - Generate themes based on `4.1.0`. 182 | 183 | ## 4.1.0 184 | 185 | - Add support for secondary button style [#167](https://github.com/primer/github-vscode-theme/pull/167). 186 | - Replace border.overlay with border.primary [#168](https://github.com/primer/github-vscode-theme/pull/168). 187 | 188 | ## 4.0.5 189 | 190 | - Increase contrast for selected list item [#165](https://github.com/primer/github-vscode-theme/pull/165). 191 | 192 | ## 4.0.4 193 | 194 | - Fix sidebar contrast [#158](https://github.com/primer/github-vscode-theme/pull/158). 195 | - Use opacity for stackFrameHighlight [#162](https://github.com/primer/github-vscode-theme/pull/162). 196 | - Improve ANSI colors [#164](https://github.com/primer/github-vscode-theme/pull/164). 197 | 198 | ## 4.0.3 199 | 200 | - Fix terminal colors (Light Default) [#160](https://github.com/primer/github-vscode-theme/pull/160). 201 | 202 | ## 4.0.2 203 | 204 | - Fix diffs (Light Default) [#153](https://github.com/primer/github-vscode-theme/pull/153). 205 | - Style linkedEditing [#154](https://github.com/primer/github-vscode-theme/pull/154). 206 | - Use opacity for foldBackground [#156](https://github.com/primer/github-vscode-theme/pull/156). 207 | 208 | ## 4.0.1 209 | 210 | - fix: Use color.ansi.blueBright for ansiBrightBlue [#142](https://github.com/primer/github-vscode-theme/pull/142). 211 | - Use primer's official colors for activity bar, tab & panel borders [#143](https://github.com/primer/github-vscode-theme/pull/143). 212 | - Use primer's primary text color for editor foreground [#144](https://github.com/primer/github-vscode-theme/pull/144). 213 | 214 | ## 4.0.0 215 | 216 | - Add GitHub.com dimmed theme [#138](https://github.com/primer/github-vscode-theme/pull/138). 217 | - Add GitHub.com themes [#132](https://github.com/primer/github-vscode-theme/pull/132). 218 | 219 | ## 3.0.0 220 | 221 | - Revert dark changes [#123](https://github.com/primer/github-vscode-theme/pull/123). This should be the same as the `1.1.5` version. 222 | 223 | ## 2.0.1 224 | 225 | - Fix various issues for the new dark theme [#117](https://github.com/primer/github-vscode-theme/pull/117) 226 | 227 | ## 2.0.0 228 | 229 | - Update dark colors to match github.com [#102](https://github.com/primer/github-vscode-theme/pull/102) 230 | - Improve JavaScript/React highlighting [#104](https://github.com/primer/github-vscode-theme/pull/104) 231 | 232 | ## 1.1.5 233 | 234 | - Rename color variables [#68](https://github.com/primer/github-vscode-theme/pull/68) 235 | - Add statusbar prominent background [#86](https://github.com/primer/github-vscode-theme/pull/86) 236 | 237 | ## 1.1.3 238 | 239 | - Soften foreground color [#65](https://github.com/primer/github-vscode-theme/pull/65) 240 | - Fix Markdown list punctuation [#65](https://github.com/primer/github-vscode-theme/pull/65) 241 | 242 | ## 1.1.2 243 | 244 | - Small optimisations [#42](https://github.com/primer/github-vscode-theme/pull/42) 245 | - Stronger wordHighlightBorder [#40](https://github.com/primer/github-vscode-theme/pull/40) 246 | - Fixed debug line color for dark theme [#44](https://github.com/primer/github-vscode-theme/pull/44) 247 | - Add peekViewEditor colors for dark theme [#39](https://github.com/primer/github-vscode-theme/pull/39) 248 | 249 | ## 1.1.1 250 | 251 | - Increase contrast for list.hoverBackground [#37](https://github.com/primer/github-vscode-theme/pull/37) 252 | - Tweak selection and highlights [#36](https://github.com/primer/github-vscode-theme/pull/36) 253 | - Update debug foreground color for dark theme [#33](https://github.com/primer/github-vscode-theme/pull/33) 254 | - Add editorWidget.background colors [#32](https://github.com/primer/github-vscode-theme/pull/32) 255 | 256 | ## 1.1.0 257 | 258 | - Add notifications [#31](https://github.com/primer/github-vscode-theme/pull/31) 259 | - Enable semantic highlighting [#30](https://github.com/primer/github-vscode-theme/pull/30) 260 | - Make diff editor colors more opaque [#28](https://github.com/primer/github-vscode-theme/pull/28) 261 | - Darker strings [#27](https://github.com/primer/github-vscode-theme/pull/27) 262 | - Fix small typo [#22](https://github.com/primer/github-vscode-theme/pull/22) 263 | - Decrease whitespace characters color contrast [#17](https://github.com/primer/github-vscode-theme/pull/17) 264 | 265 | ## 1.0.0 266 | 267 | - Introduce dark theme [#4](https://github.com/primer/github-vscode-theme/pull/4) 268 | - Dark color tweaks [#8](https://github.com/primer/github-vscode-theme/pull/8) 269 | - Increase contrast for `editor.findMatch` [#12](https://github.com/primer/github-vscode-theme/pull/12) 270 | - Increase contrast for `editor.findMatch` [#12](https://github.com/primer/github-vscode-theme/pull/12) 271 | - Custom `list.activeSelection` [#13](https://github.com/primer/github-vscode-theme/pull/13) 272 | 273 | ## 0.2.3 274 | 275 | - Add status bar colors [#6](https://github.com/primer/github-vscode-theme/pull/6) 276 | 277 | ## 0.2.2 278 | 279 | - Fix invalid scope [#2](https://github.com/primer/github-vscode-theme/pull/2) 280 | 281 | ## 0.2.1 282 | 283 | - Update README 284 | 285 | ## 0.2.0 286 | 287 | - Change tabs 288 | - Add icon 289 | 290 | ## 0.1.0 291 | 292 | - Initial release 293 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Primer 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GitHub's VS Code themes 2 | 3 | ![GitHub VS Code theme](https://user-images.githubusercontent.com/378023/132220037-3cd3e777-55a6-445f-9a2e-da6020ebd78d.png) 4 | 5 | ## Install 6 | 7 | 1. Go to [VS Marketplace](https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme). 8 | 2. Click on the "Install" button. 9 | 3. Then [select a theme](https://code.visualstudio.com/docs/getstarted/themes#_selecting-the-color-theme). The GitHub themes try to match the themes available in [github.com's settings](https://github.com/settings/appearance): 10 | - `GitHub Light Default` 11 | - `GitHub Light High Contrast` ✨ new ✨ 12 | - `GitHub Light Colorblind` ✨ new ✨ 13 | - `GitHub Dark Default` 14 | - `GitHub Dark High Contrast` 15 | - `GitHub Dark Colorblind` ✨ new ✨ 16 | - `GitHub Dark Dimmed` 17 | 18 | Additionally, there are also two older themes. **Note**: They might not get updated frequently and are kept for legacy reasons: 19 | 20 | - `GitHub Light` (legacy) 21 | - `GitHub Dark` (legacy) 22 | 23 | ## Override this theme 24 | 25 | To override this (or any other) theme in your personal config file, please follow the guide in the [color theme](https://code.visualstudio.com/api/extension-guides/color-theme) documentation. This is handy for small tweaks to the theme without having to fork and maintain your own theme. 26 | 27 | ## Contribute 28 | 29 | 1. Clone and open this [repo](https://github.com/primer/github-vscode-theme) in VS Code 30 | 2. Run `yarn` to install the dependencies. 31 | 3. Press `F5` to open a new window with your extension loaded 32 | 4. Open `Code > Preferences > Color Theme` [`⌘k ⌘t`] and pick the "GitHub ..." theme you want to test. Note: It seems this has to be done 2x because the first time it switches back to the default light theme. This might be a bug? 33 | 5. Make changes to the [`/src/theme.js`](https://github.com/primer/github-vscode-theme/blob/master/src/theme.js) file. 34 | - **UI**: For all changes to the "outer UI", like (status bar, file navigation etc.), take a look at the [Theme Color](https://code.visualstudio.com/api/references/theme-color) reference. 35 | - **Syntax**: For changes to the "code highlighting", examine the syntax scopes by invoking the [`Developer: Inspect Editor Tokens and Scopes`](https://code.visualstudio.com/api/language-extensions/syntax-highlight-guide#scope-inspector) command from the Command Palette (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) in the Extension Development Host window. 36 | 6. Run `yarn build` to update the theme. You can also run `yarn start` instead to automatically rebuild the theme while making changes and no reloading should be necessary. 37 | 7. Once you're happy, commit your changes and open a PR. 38 | 39 | Note: 40 | 41 | - If possible use colors from [Primer's color system](https://primer.style/primitives/colors). 42 | 43 | ## Publish (internal) 44 | 45 | > Note: Publishing a new version of this theme is only meant for maintainers. 46 | 47 | This repo uses [changesets](https://github.com/atlassian/changesets) to automatically make updates to [CHANGELOG.md](https://github.com/primer/github-vscode-theme/blob/main/CHANGELOG.md) and publish a new version to the [VS Marketplace](https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme). 48 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/github-vscode-theme/ad3f17519f2f7d7060afffac2b557c69c4534610/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "github-vscode-theme", 3 | "displayName": "GitHub Theme", 4 | "description": "GitHub theme for VS Code", 5 | "version": "6.3.5", 6 | "publisher": "GitHub", 7 | "license": "MIT", 8 | "icon": "icon.png", 9 | "galleryBanner": { 10 | "color": "#1b1f23", 11 | "theme": "dark" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/primer/github-vscode-theme" 16 | }, 17 | "bugs": { 18 | "url": "https://github.com/primer/github-vscode-theme/issues" 19 | }, 20 | "engines": { 21 | "vscode": "^1.43.0" 22 | }, 23 | "categories": [ 24 | "Themes" 25 | ], 26 | "keywords": [ 27 | "theme", 28 | "github", 29 | "light", 30 | "dark", 31 | "protanopia", 32 | "colorblind" 33 | ], 34 | "contributes": { 35 | "themes": [ 36 | { 37 | "label": "GitHub Light Default", 38 | "uiTheme": "vs", 39 | "path": "./themes/light-default.json" 40 | }, 41 | { 42 | "label": "GitHub Light High Contrast", 43 | "uiTheme": "hc-light", 44 | "path": "./themes/light-high-contrast.json" 45 | }, 46 | { 47 | "label": "GitHub Light Colorblind (Beta)", 48 | "uiTheme": "vs", 49 | "path": "./themes/light-colorblind.json" 50 | }, 51 | { 52 | "label": "GitHub Dark Default", 53 | "uiTheme": "vs-dark", 54 | "path": "./themes/dark-default.json" 55 | }, 56 | { 57 | "label": "GitHub Dark High Contrast", 58 | "uiTheme": "hc-black", 59 | "path": "./themes/dark-high-contrast.json" 60 | }, 61 | { 62 | "label": "GitHub Dark Colorblind (Beta)", 63 | "uiTheme": "vs-dark", 64 | "path": "./themes/dark-colorblind.json" 65 | }, 66 | { 67 | "label": "GitHub Dark Dimmed", 68 | "uiTheme": "vs-dark", 69 | "path": "./themes/dark-dimmed.json" 70 | }, 71 | { 72 | "label": "GitHub Light", 73 | "uiTheme": "vs", 74 | "path": "./themes/light.json" 75 | }, 76 | { 77 | "label": "GitHub Dark", 78 | "uiTheme": "vs-dark", 79 | "path": "./themes/dark.json" 80 | } 81 | ] 82 | }, 83 | "devDependencies": { 84 | "@changesets/changelog-github": "^0.4.1", 85 | "@changesets/cli": "^2.17.0", 86 | "@primer/primitives": "7.10.0", 87 | "chroma-js": "^2.1.2", 88 | "color": "^3.1.2", 89 | "nodemon": "^2.0.3", 90 | "vsce": "^1.100.1" 91 | }, 92 | "scripts": { 93 | "start": "nodemon --watch src src/index.js", 94 | "build": "node src/index.js && mkdir -p build", 95 | "package": "vsce package -o ./build/github-vscode-theme.vsix", 96 | "prepublishOnly": "npm run build && vsce publish", 97 | "release": "changeset publish" 98 | }, 99 | "__metadata": { 100 | "id": "7328a705-91fc-49e6-8293-da6f112e482d", 101 | "publisherDisplayName": "GitHub", 102 | "publisherId": "7c1c19cd-78eb-4dfb-8999-99caf7679002" 103 | }, 104 | "publishConfig": { 105 | "access": "public" 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /src/classic/README.md: -------------------------------------------------------------------------------- 1 | # GitHub classic themes 2 | 3 | The classic `GitHub Light` and `GitHub Dark` themes were built before github.com added themes. They are still available but use a different color system and are not compatible with the rest of the themes. -------------------------------------------------------------------------------- /src/classic/colors.json: -------------------------------------------------------------------------------- 1 | { 2 | "black": "#1b1f23", 3 | "white": "#fff", 4 | "gray": ["#fafbfc", "#f6f8fa", "#e1e4e8", "#d1d5da", "#959da5", "#6a737d", "#586069", "#444d56", "#2f363d", "#24292e"], 5 | "blue": ["#f1f8ff", "#dbedff", "#c8e1ff", "#79b8ff", "#2188ff", "#0366d6", "#005cc5", "#044289", "#032f62", "#05264c"], 6 | "green": ["#f0fff4", "#dcffe4", "#bef5cb", "#85e89d", "#34d058", "#28a745", "#22863a", "#176f2c", "#165c26", "#144620"], 7 | "yellow": ["#fffdef", "#fffbdd", "#fff5b1", "#ffea7f", "#ffdf5d", "#ffd33d", "#f9c513", "#dbab09", "#b08800", "#735c0f"], 8 | "orange": ["#fff8f2", "#ffebda", "#ffd1ac", "#ffab70", "#fb8532", "#f66a0a", "#e36209", "#d15704", "#c24e00", "#a04100"], 9 | "red": ["#ffeef0", "#ffdce0", "#fdaeb7", "#f97583", "#ea4a5a", "#d73a49", "#cb2431", "#b31d28", "#9e1c23", "#86181d"], 10 | "purple": ["#f5f0ff", "#e6dcfd", "#d1bcf9", "#b392f0", "#8a63d2", "#6f42c1", "#5a32a3", "#4c2889", "#3a1d6e", "#29134e"], 11 | "pink": ["#ffeef8", "#fedbf0", "#f9b3dd", "#f692ce", "#ec6cb9", "#ea4aaa", "#d03592", "#b93a86", "#99306f", "#6d224f"] 12 | } 13 | -------------------------------------------------------------------------------- /src/classic/primer.js: -------------------------------------------------------------------------------- 1 | const colors = require("./colors.json"); // Based on "@primer/primitives": "2.0.1", 2 | 3 | function getColors(style) { 4 | if (style === "dark") { 5 | /* The array of light to dark colors are reversed to auto-generate dark theme */ 6 | const darkColors = {}; 7 | Object.entries(colors).forEach(([name, val]) => { 8 | if (name === "black") { 9 | darkColors.white = val; 10 | } else if (name === "white") { 11 | darkColors.black = val; 12 | } else { 13 | darkColors[name] = [...val].reverse(); 14 | } 15 | }); 16 | return darkColors; 17 | } else { 18 | return colors; 19 | } 20 | } 21 | 22 | module.exports = { 23 | getColors, 24 | }; 25 | -------------------------------------------------------------------------------- /src/classic/process.js: -------------------------------------------------------------------------------- 1 | const Color = require("color"); 2 | 3 | /* 4 | * Generate color variant by inverting 5 | * luminance in the HSL representation 6 | */ 7 | function getVariant(hex, style) { 8 | if (style === "dark") { 9 | const c = Color(hex); 10 | return c 11 | .hsl() 12 | .lightness(100 - c.lightness()) 13 | .hex() 14 | .toLowerCase(); 15 | } else { 16 | return hex; 17 | } 18 | } 19 | 20 | module.exports = { 21 | getVariant, 22 | }; 23 | -------------------------------------------------------------------------------- /src/classic/theme.js: -------------------------------------------------------------------------------- 1 | const { getVariant } = require("./process"); 2 | const { getColors } = require("./primer"); 3 | 4 | function getTheme({ style, name }) { 5 | // Usage: `auto('pink')` 6 | const auto = (hex) => getVariant(hex, style); 7 | 8 | // Usage: `pick({ light: "lightblue", dark: "darkblue" })` 9 | const pick = (options) => options[style]; 10 | 11 | const primer = getColors(style); 12 | 13 | const workbenchForeground = pick({ light: primer.gray[8], dark: primer.gray[7] }); 14 | const editorForeground = pick({ light: primer.gray[9], dark: primer.gray[7] }); 15 | 16 | return { 17 | name: name, 18 | colors: { 19 | focusBorder: pick({ light: primer.blue[4], dark: primer.blue[3] }), 20 | foreground: pick({ light: primer.gray[7], dark: primer.gray[6] }), 21 | descriptionForeground: primer.gray[5], 22 | errorForeground: primer.red[6], 23 | 24 | "textLink.foreground": pick({ light: primer.blue[5], dark: primer.blue[6] }), 25 | "textLink.activeForeground": pick({ light: primer.blue[6], dark: primer.blue[7] }), 26 | "textBlockQuote.background": primer.gray[0], 27 | "textBlockQuote.border": primer.gray[2], 28 | "textCodeBlock.background": primer.gray[1], 29 | "textPreformat.foreground": primer.gray[6], 30 | "textSeparator.foreground": primer.gray[3], 31 | 32 | "button.background": pick({ light: "#159739", dark: primer.green[2] }), 33 | "button.foreground": pick({ light: primer.white, dark: primer.green[8] }), 34 | "button.hoverBackground": pick({ light: "#138934", dark: primer.green[3] }), 35 | 36 | "button.secondaryBackground": pick({ light: primer.gray[2], dark: primer.gray[2]}), 37 | "button.secondaryForeground": primer.black, 38 | "button.secondaryHoverBackground": pick({ light: primer.gray[3], dark: primer.gray[3]}), 39 | 40 | "checkbox.background": pick({ light: primer.gray[0], dark: primer.gray[2] }), 41 | "checkbox.border": pick({ light: primer.gray[3], dark: primer.white }), 42 | 43 | "dropdown.background": pick({ light: primer.gray[0], dark: primer.gray[1] }), 44 | "dropdown.border": pick({ light: primer.gray[2], dark: primer.white }), 45 | "dropdown.foreground": workbenchForeground, 46 | "dropdown.listBackground": pick({ light: primer.white, dark: primer.gray[0] }), 47 | 48 | "input.background": pick({ light: primer.gray[0], dark: primer.gray[1] }), 49 | "input.border": pick({ light: primer.gray[2], dark: primer.white }), 50 | "input.foreground": workbenchForeground, 51 | "input.placeholderForeground": pick({ light: primer.gray[4], dark: primer.gray[5] }), 52 | 53 | "badge.foreground": pick({ light: primer.blue[6], dark: primer.blue[7] }), 54 | "badge.background": pick({ light: primer.blue[1], dark: primer.blue[2] }), 55 | 56 | "progressBar.background": primer.blue[4], 57 | 58 | "titleBar.activeForeground": workbenchForeground, 59 | "titleBar.activeBackground": pick({ light: primer.white, dark: primer.gray[0] }), 60 | "titleBar.inactiveForeground": primer.gray[5], 61 | "titleBar.inactiveBackground": pick({ light: primer.gray[1], dark: "#1f2428" }), 62 | "titleBar.border": pick({ light: primer.gray[2], dark: primer.white }), 63 | 64 | "activityBar.foreground": workbenchForeground, 65 | "activityBar.inactiveForeground": primer.gray[4], 66 | "activityBar.background": pick({ light: primer.white, dark: primer.gray[0] }), 67 | "activityBarBadge.foreground": pick({ light: primer.white, dark: primer.black }), 68 | "activityBarBadge.background": pick({ light: primer.blue[4], dark: primer.blue[4] }), 69 | "activityBar.activeBorder": "#f9826c", 70 | "activityBar.border": pick({ light: primer.gray[2], dark: primer.white }), 71 | 72 | "sideBar.foreground": primer.gray[6], 73 | "sideBar.background": pick({ light: primer.gray[1], dark: "#1f2428" }), 74 | "sideBar.border": pick({ light: primer.gray[2], dark: primer.white }), 75 | "sideBarTitle.foreground": workbenchForeground, 76 | "sideBarSectionHeader.foreground": workbenchForeground, 77 | "sideBarSectionHeader.background": pick({ light: primer.gray[1], dark: "#1f2428" }), 78 | "sideBarSectionHeader.border": pick({ light: primer.gray[2], dark: primer.white }), 79 | 80 | "list.hoverForeground": workbenchForeground, 81 | "list.inactiveSelectionForeground": workbenchForeground, 82 | "list.activeSelectionForeground": workbenchForeground, 83 | "list.hoverBackground": pick({ light: "#ebf0f4", dark: "#282e34" }), 84 | "list.inactiveSelectionBackground": pick({ light: "#e8eaed", dark: "#282e34" }), 85 | "list.activeSelectionBackground": pick({ light: "#e2e5e9", dark: "#39414a" }), 86 | "list.inactiveFocusBackground": pick({ light: primer.blue[1], dark: "#1d2d3e" }), 87 | "list.focusBackground": pick({ light: "#cce5ff", dark: primer.blue[2] }), 88 | 89 | "tree.indentGuidesStroke": pick({ light: primer.gray[2], dark: primer.gray[1] }), 90 | 91 | "notificationCenterHeader.foreground": primer.gray[5], 92 | "notificationCenterHeader.background": pick({ light: primer.gray[2], dark: primer.gray[0] }), 93 | "notifications.foreground": workbenchForeground, 94 | "notifications.background": pick({ light: primer.gray[0], dark: primer.gray[1] }), 95 | "notifications.border": pick({ light: primer.gray[2], dark: primer.white }), 96 | "notificationsErrorIcon.foreground": primer.red[5], 97 | "notificationsWarningIcon.foreground": primer.orange[6], 98 | "notificationsInfoIcon.foreground": primer.blue[6], 99 | 100 | "pickerGroup.border": primer.gray[2], 101 | "pickerGroup.foreground": workbenchForeground, 102 | "quickInput.background": primer.gray[0], 103 | "quickInput.foreground": workbenchForeground, 104 | 105 | "statusBar.foreground": primer.gray[6], 106 | "statusBar.background": pick({ light: primer.white, dark: primer.gray[0] }), 107 | "statusBar.border": pick({ light: primer.gray[2], dark: primer.white }), 108 | "statusBar.noFolderBackground": pick({ light: primer.white, dark: primer.gray[0] }), 109 | "statusBar.debuggingBackground": auto("#f9826c"), 110 | "statusBar.debuggingForeground": pick({ light: primer.white, dark: primer.black }), 111 | "statusBarItem.prominentBackground": pick({ light: "#e8eaed", dark: "#282e34" }), 112 | "statusBarItem.remoteForeground": primer.gray[6], 113 | "statusBarItem.remoteBackground": pick({ light: primer.white, dark: primer.gray[0] }), 114 | 115 | "editorGroupHeader.tabsBackground": pick({ light: primer.gray[1], dark: "#1f2428" }), 116 | "editorGroupHeader.tabsBorder": pick({ light: primer.gray[2], dark: primer.white }), 117 | "editorGroup.border": pick({ light: primer.gray[2], dark: primer.white }), 118 | 119 | "tab.activeForeground": workbenchForeground, 120 | "tab.inactiveForeground": primer.gray[5], 121 | "tab.inactiveBackground": pick({ light: primer.gray[1], dark: "#1f2428" }), 122 | "tab.activeBackground": pick({ light: primer.white, dark: primer.gray[0] }), 123 | "tab.hoverBackground": pick({ light: primer.white, dark: primer.gray[0] }), 124 | "tab.unfocusedHoverBackground": pick({ light: primer.white, dark: primer.gray[0] }), 125 | "tab.border": pick({ light: primer.gray[2], dark: primer.white }), 126 | "tab.unfocusedActiveBorderTop": pick({ light: primer.gray[2], dark: primer.white }), 127 | "tab.activeBorder": pick({ light: primer.white, dark: primer.gray[0] }), 128 | "tab.unfocusedActiveBorder": pick({ light: primer.white, dark: primer.gray[0] }), 129 | "tab.activeBorderTop": "#f9826c", 130 | 131 | "breadcrumb.foreground": primer.gray[5], 132 | "breadcrumb.focusForeground": workbenchForeground, 133 | "breadcrumb.activeSelectionForeground": primer.gray[6], 134 | "breadcrumbPicker.background": pick({ light: primer.gray[0], dark: "#2b3036" }), 135 | 136 | "editor.foreground": editorForeground, 137 | "editor.background": pick({ light: primer.white, dark: primer.gray[0] }), 138 | "editorWidget.background": pick({ light: primer.gray[1], dark: "#1f2428" }), 139 | "editor.foldBackground": pick({ light: "#d1d5da11", dark: "#58606915" }), // needs opacity 140 | "editor.lineHighlightBackground": pick({ light: primer.gray[1], dark: "#2b3036" }), 141 | "editorLineNumber.foreground": pick({ light: "#1b1f234d", dark: primer.gray[2] }), 142 | "editorLineNumber.activeForeground": editorForeground, 143 | "editorIndentGuide.background": pick({ light: "#eff2f6", dark: primer.gray[1] }), 144 | "editorIndentGuide.activeBackground": pick({ light: "#d7dbe0", dark: primer.gray[2] }), 145 | "editorWhitespace.foreground": pick({ light: primer.gray[3], dark: primer.gray[2] }), 146 | "editorCursor.foreground": primer.blue[7], 147 | "editorError.foreground": primer.red[6], 148 | "editorWarning.foreground": primer.yellow[6], 149 | 150 | "editor.findMatchBackground": pick({ light: primer.yellow[4], dark: "#ffd33d44" }), 151 | "editor.findMatchHighlightBackground": pick({ light: "#ffdf5d66", dark: "#ffd33d22" }), 152 | "editor.linkedEditingBackground": pick({ light: "#0366d611", dark: "#3392FF22" }), 153 | "editor.inactiveSelectionBackground": pick({ light: "#0366d611", dark: "#3392FF22" }), 154 | "editor.selectionBackground": pick({ light: "#0366d625", dark: "#3392FF44" }), 155 | "editor.selectionHighlightBackground": pick({ light: "#34d05840", dark: "#17E5E633" }), 156 | "editor.selectionHighlightBorder": pick({ light: "#34d05800", dark: "#17E5E600" }), 157 | "editor.wordHighlightBackground": pick({ light: "#34d05800", dark: "#17E5E600" }), 158 | "editor.wordHighlightStrongBackground": pick({ light: "#34d05800", dark: "#17E5E600" }), 159 | "editor.wordHighlightBorder": pick({ light: "#24943e99", dark: "#17E5E699" }), 160 | "editor.wordHighlightStrongBorder": pick({ light: "#24943e50", dark: "#17E5E666" }), 161 | "editorBracketMatch.background": pick({ light: "#34d05840", dark: "#17E5E650" }), 162 | "editorBracketMatch.border": pick({ light: "#34d05800", dark: "#17E5E600" }), 163 | 164 | "editorGutter.modifiedBackground": pick({ light: primer.blue[4], dark: primer.blue[5] }), 165 | "editorGutter.addedBackground": pick({ light: primer.green[5], dark: primer.green[4] }), 166 | "editorGutter.deletedBackground": primer.red[5], 167 | 168 | "diffEditor.insertedTextBackground": pick({ light: "#34d05822", dark: "#28a74530" }), 169 | "diffEditor.removedTextBackground": pick({ light: "#d73a4922", dark: "#d73a4930" }), 170 | 171 | "scrollbar.shadow": pick({ light: "#6a737d33", dark: "#0008" }), 172 | "scrollbarSlider.background": pick({ light: "#959da533", dark: "#6a737d33" }), 173 | "scrollbarSlider.hoverBackground": pick({ light: "#959da544", dark: "#6a737d44" }), 174 | "scrollbarSlider.activeBackground": pick({ light: "#959da588", dark: "#6a737d88" }), 175 | "editorOverviewRuler.border": primer.white, 176 | 177 | "panel.background": pick({ light: primer.gray[1], dark: "#1f2428" }), 178 | "panel.border": pick({ light: primer.gray[2], dark: primer.white }), 179 | "panelTitle.activeBorder": "#f9826c", 180 | "panelTitle.activeForeground": workbenchForeground, 181 | "panelTitle.inactiveForeground": primer.gray[5], 182 | "panelInput.border": pick({ light: primer.gray[2], dark: primer.gray[1] }), 183 | 184 | "terminal.foreground": primer.gray[6], 185 | "terminal.tab.activeBorder": "#f9826c", 186 | "terminalCursor.background": primer.gray[3], 187 | "terminalCursor.foreground": primer.blue[6], 188 | 189 | // Test ANSI colors with: 190 | // echo -e "\033[0mNC (No color)" 191 | // echo -e "\033[1;37mWHITE\t\033[0;30mBLACK" 192 | // echo -e "\033[0;34mBLUE\t\033[1;34mLIGHT_BLUE" 193 | // echo -e "\033[0;32mGREEN\t\033[1;32mLIGHT_GREEN" 194 | // echo -e "\033[0;36mCYAN\t\033[1;36mLIGHT_CYAN" 195 | // echo -e "\033[0;31mRED\t\033[1;31mLIGHT_RED" 196 | // echo -e "\033[0;35mPURPLE\t\033[1;35mLIGHT_PURPLE" 197 | // echo -e "\033[0;33mYELLOW\t\033[1;33mLIGHT_YELLOW" 198 | // echo -e "\033[1;30mGRAY\t\033[0;37mLIGHT_GRAY" 199 | "terminal.ansiBrightWhite": pick({ light: primer.gray[3], dark: primer.gray[9] }), // WHITE 200 | "terminal.ansiWhite": pick({ light: primer.gray[5], dark: primer.gray[6] }), // LIGHT_GRAY 201 | "terminal.ansiBrightBlack": pick({ light: primer.gray[4], dark: primer.gray[5] }), // GRAY 202 | "terminal.ansiBlack": pick({ light: primer.gray[9], dark: primer.gray[3] }), // BLACK 203 | "terminal.ansiBlue": primer.blue[5], 204 | "terminal.ansiBrightBlue": primer.blue[6], 205 | "terminal.ansiGreen": primer.green[5], 206 | "terminal.ansiBrightGreen": primer.green[6], 207 | "terminal.ansiCyan": pick({ light: "#1b7c83", dark: "#39c5cf" }), 208 | "terminal.ansiBrightCyan": pick({ light: "#3192aa", dark: "#56d4dd" }), 209 | "terminal.ansiRed": primer.red[5], 210 | "terminal.ansiBrightRed": primer.red[6], 211 | "terminal.ansiMagenta": primer.purple[6], 212 | "terminal.ansiBrightMagenta": primer.purple[6], 213 | "terminal.ansiYellow": pick({ light: primer.yellow[7], dark: primer.yellow[6] }), 214 | "terminal.ansiBrightYellow": pick({ light: primer.yellow[8], dark: primer.yellow[6] }), 215 | 216 | "editorBracketHighlight.foreground1": primer.blue[6], 217 | "editorBracketHighlight.foreground2": primer.orange[6], 218 | "editorBracketHighlight.foreground3": primer.purple[6], 219 | "editorBracketHighlight.foreground4": primer.blue[6], 220 | "editorBracketHighlight.foreground5": primer.orange[6], 221 | "editorBracketHighlight.foreground6": primer.purple[6], 222 | 223 | "gitDecoration.addedResourceForeground": primer.green[5], 224 | "gitDecoration.modifiedResourceForeground": primer.blue[6], 225 | "gitDecoration.deletedResourceForeground": primer.red[5], 226 | "gitDecoration.untrackedResourceForeground": primer.green[5], 227 | "gitDecoration.ignoredResourceForeground": primer.gray[4], 228 | "gitDecoration.conflictingResourceForeground": primer.orange[6], 229 | "gitDecoration.submoduleResourceForeground": primer.gray[4], 230 | 231 | "debugToolBar.background": pick({ light: primer.white, dark: "#2b3036" }), 232 | "editor.stackFrameHighlightBackground": pick({ light: "#ffd33d33", dark: "#C6902625" }), // needs opacity (yellow) 233 | "editor.focusedStackFrameHighlightBackground": pick({ light: "#28a74525", dark: "#2b6a3033" }), // needs opacity (green) 234 | 235 | "peekViewEditor.matchHighlightBackground": pick({ dark: "#ffd33d33" }), 236 | "peekViewResult.matchHighlightBackground": pick({ dark: "#ffd33d33" }), 237 | "peekViewEditor.background": pick({ dark: "#1f242888" }), 238 | "peekViewResult.background": pick({ dark: "#1f2428" }), 239 | 240 | "settings.headerForeground": workbenchForeground, 241 | "settings.modifiedItemIndicator": primer.blue[4], 242 | "welcomePage.buttonBackground": primer.gray[1], 243 | "welcomePage.buttonHoverBackground": primer.gray[2], 244 | }, 245 | semanticHighlighting: true, 246 | tokenColors: [ 247 | { 248 | scope: ["comment", "punctuation.definition.comment", "string.comment"], 249 | settings: { 250 | foreground: pick({ light: primer.gray[5], dark: primer.gray[4] }), 251 | }, 252 | }, 253 | { 254 | scope: [ 255 | "constant", 256 | "entity.name.constant", 257 | "variable.other.constant", 258 | "variable.other.enummember", 259 | "variable.language", 260 | ], 261 | settings: { 262 | foreground: primer.blue[6], 263 | }, 264 | }, 265 | { 266 | scope: ["entity", "entity.name"], 267 | settings: { 268 | foreground: pick({ light: primer.purple[5], dark: primer.purple[6] }), 269 | }, 270 | }, 271 | { 272 | scope: "variable.parameter.function", 273 | settings: { 274 | foreground: editorForeground, 275 | }, 276 | }, 277 | { 278 | scope: "entity.name.tag", 279 | settings: { 280 | foreground: primer.green[6], 281 | }, 282 | }, 283 | { 284 | scope: "keyword", 285 | settings: { 286 | foreground: pick({ light: primer.red[5], dark: primer.red[6] }), 287 | }, 288 | }, 289 | { 290 | scope: ["storage", "storage.type"], 291 | settings: { 292 | foreground: pick({ light: primer.red[5], dark: primer.red[6] }), 293 | }, 294 | }, 295 | { 296 | scope: [ 297 | "storage.modifier.package", 298 | "storage.modifier.import", 299 | "storage.type.java", 300 | ], 301 | settings: { 302 | foreground: editorForeground, 303 | }, 304 | }, 305 | { 306 | scope: [ 307 | "string", 308 | "punctuation.definition.string", 309 | "string punctuation.section.embedded source", 310 | ], 311 | settings: { 312 | foreground: pick({ light: primer.blue[8], dark: "#9ecbff" }), 313 | }, 314 | }, 315 | { 316 | scope: "support", 317 | settings: { 318 | foreground: primer.blue[6], 319 | }, 320 | }, 321 | { 322 | scope: "meta.property-name", 323 | settings: { 324 | foreground: primer.blue[6], 325 | }, 326 | }, 327 | { 328 | scope: "variable", 329 | settings: { 330 | foreground: primer.orange[6], 331 | }, 332 | }, 333 | { 334 | scope: "variable.other", 335 | settings: { 336 | foreground: editorForeground, 337 | }, 338 | }, 339 | { 340 | scope: "invalid.broken", 341 | settings: { 342 | fontStyle: "italic", 343 | foreground: primer.red[7], 344 | }, 345 | }, 346 | { 347 | scope: "invalid.deprecated", 348 | settings: { 349 | fontStyle: "italic", 350 | foreground: primer.red[7], 351 | }, 352 | }, 353 | { 354 | scope: "invalid.illegal", 355 | settings: { 356 | fontStyle: "italic", 357 | foreground: primer.red[7], 358 | }, 359 | }, 360 | { 361 | scope: "invalid.unimplemented", 362 | settings: { 363 | fontStyle: "italic", 364 | foreground: primer.red[7], 365 | }, 366 | }, 367 | { 368 | scope: "carriage-return", 369 | settings: { 370 | fontStyle: "italic underline", 371 | background: pick({ light: primer.red[5], dark: primer.red[6] }), 372 | foreground: primer.gray[0], 373 | content: "^M", 374 | }, 375 | }, 376 | { 377 | scope: "message.error", 378 | settings: { 379 | foreground: primer.red[7], 380 | }, 381 | }, 382 | { 383 | scope: "string variable", 384 | settings: { 385 | foreground: primer.blue[6], 386 | }, 387 | }, 388 | { 389 | scope: ["source.regexp", "string.regexp"], 390 | settings: { 391 | foreground: primer.blue[8], 392 | }, 393 | }, 394 | { 395 | scope: [ 396 | "string.regexp.character-class", 397 | "string.regexp constant.character.escape", 398 | "string.regexp source.ruby.embedded", 399 | "string.regexp string.regexp.arbitrary-repitition", 400 | ], 401 | settings: { 402 | foreground: primer.blue[8], 403 | }, 404 | }, 405 | { 406 | scope: "string.regexp constant.character.escape", 407 | settings: { 408 | fontStyle: "bold", 409 | foreground: primer.green[6], 410 | }, 411 | }, 412 | { 413 | scope: "support.constant", 414 | settings: { 415 | foreground: primer.blue[6], 416 | }, 417 | }, 418 | { 419 | scope: "support.variable", 420 | settings: { 421 | foreground: primer.blue[6], 422 | }, 423 | }, 424 | { 425 | scope: "meta.module-reference", 426 | settings: { 427 | foreground: primer.blue[6], 428 | }, 429 | }, 430 | { 431 | scope: "punctuation.definition.list.begin.markdown", 432 | settings: { 433 | foreground: primer.orange[6], 434 | }, 435 | }, 436 | { 437 | scope: ["markup.heading", "markup.heading entity.name"], 438 | settings: { 439 | fontStyle: "bold", 440 | foreground: primer.blue[6], 441 | }, 442 | }, 443 | { 444 | scope: "markup.quote", 445 | settings: { 446 | foreground: primer.green[6], 447 | }, 448 | }, 449 | { 450 | scope: "markup.italic", 451 | settings: { 452 | fontStyle: "italic", 453 | foreground: editorForeground, 454 | }, 455 | }, 456 | { 457 | scope: "markup.bold", 458 | settings: { 459 | fontStyle: "bold", 460 | foreground: editorForeground, 461 | }, 462 | }, 463 | { 464 | scope: ["markup.underline"], 465 | settings: { 466 | fontStyle: "underline", 467 | }, 468 | }, 469 | { 470 | scope: ["markup.strikethrough"], 471 | settings: { 472 | fontStyle: "strikethrough", 473 | }, 474 | }, 475 | { 476 | scope: "markup.inline.raw", 477 | settings: { 478 | foreground: primer.blue[6], 479 | }, 480 | }, 481 | { 482 | scope: [ 483 | "markup.deleted", 484 | "meta.diff.header.from-file", 485 | "punctuation.definition.deleted", 486 | ], 487 | settings: { 488 | background: primer.red[0], 489 | foreground: primer.red[7], 490 | }, 491 | }, 492 | { 493 | scope: [ 494 | "markup.inserted", 495 | "meta.diff.header.to-file", 496 | "punctuation.definition.inserted", 497 | ], 498 | settings: { 499 | background: primer.green[0], 500 | foreground: primer.green[6], 501 | }, 502 | }, 503 | { 504 | scope: ["markup.changed", "punctuation.definition.changed"], 505 | settings: { 506 | background: primer.orange[1], 507 | foreground: primer.orange[6], 508 | }, 509 | }, 510 | { 511 | scope: ["markup.ignored", "markup.untracked"], 512 | settings: { 513 | foreground: primer.gray[1], 514 | background: primer.blue[6], 515 | }, 516 | }, 517 | { 518 | scope: "meta.diff.range", 519 | settings: { 520 | foreground: pick({ light: primer.purple[5], dark: primer.purple[6] }), 521 | fontStyle: "bold", 522 | }, 523 | }, 524 | { 525 | scope: "meta.diff.header", 526 | settings: { 527 | foreground: primer.blue[6], 528 | }, 529 | }, 530 | { 531 | scope: "meta.separator", 532 | settings: { 533 | fontStyle: "bold", 534 | foreground: primer.blue[6], 535 | }, 536 | }, 537 | { 538 | scope: "meta.output", 539 | settings: { 540 | foreground: primer.blue[6], 541 | }, 542 | }, 543 | { 544 | scope: [ 545 | "brackethighlighter.tag", 546 | "brackethighlighter.curly", 547 | "brackethighlighter.round", 548 | "brackethighlighter.square", 549 | "brackethighlighter.angle", 550 | "brackethighlighter.quote", 551 | ], 552 | settings: { 553 | foreground: primer.gray[6], 554 | }, 555 | }, 556 | { 557 | scope: "brackethighlighter.unmatched", 558 | settings: { 559 | foreground: primer.red[7], 560 | }, 561 | }, 562 | { 563 | scope: ["constant.other.reference.link", "string.other.link"], 564 | settings: { 565 | foreground: primer.blue[8], 566 | fontStyle: "underline", 567 | }, 568 | }, 569 | ], 570 | }; 571 | } 572 | 573 | module.exports = getTheme; 574 | -------------------------------------------------------------------------------- /src/colors.js: -------------------------------------------------------------------------------- 1 | const lightColors = require("@primer/primitives/dist/json/colors/light.json"); 2 | const lightHighContrastColors = require("@primer/primitives/dist/json/colors/light_high_contrast.json"); 3 | const lightColorblindColors = require("@primer/primitives/dist/json/colors/light_colorblind.json"); 4 | const darkColors = require("@primer/primitives/dist/json/colors/dark.json"); 5 | const darkHighContrastColors = require("@primer/primitives/dist/json/colors/dark_high_contrast.json"); 6 | const darkColorblindColors = require("@primer/primitives/dist/json/colors/dark_colorblind.json"); 7 | const dimmedColors = require("@primer/primitives/dist/json/colors/dark_dimmed.json"); 8 | 9 | function getColors(theme) { 10 | 11 | switch(theme) { 12 | case "light": 13 | 14 | // Temp override until Primitives are updated 15 | lightColors.success.emphasis = "#1f883d"; 16 | lightColors.btn.primary.bg = lightColors.success.emphasis; 17 | lightColors.btn.primary.hoverBg = lightColors.scale.green[5]; 18 | lightColors.fg.default = "#1f2328"; 19 | lightColors.fg.muted = "#656d76"; 20 | 21 | return lightColors; 22 | case "light_high_contrast": 23 | return lightHighContrastColors; 24 | case "light_colorblind": 25 | return lightColorblindColors; 26 | case "dark": 27 | 28 | // Temp override until Primitives are updated 29 | darkColors.fg.default = "#e6edf3"; 30 | darkColors.fg.muted = "#7d8590"; 31 | darkColors.accent.fg = "#2f81f7"; 32 | darkColors.severe.subtle = "rgba(219, 109, 40, 0.1)"; 33 | darkColors.danger.subtle = "rgba(248, 81, 73, 0.1)"; 34 | darkColors.done.subtle = "rgba(163, 113, 247, 0.1)"; 35 | darkColors.sponsors.subtle = "rgba(219, 97, 162, 0.1)"; 36 | 37 | return darkColors; 38 | case "dark_high_contrast": 39 | return darkHighContrastColors; 40 | case "dark_colorblind": 41 | return darkColorblindColors; 42 | case "dark_dimmed": 43 | return dimmedColors; 44 | default: 45 | throw new Error(`Colors are missing for value: ${theme}`); 46 | } 47 | } 48 | 49 | module.exports = { 50 | getColors, 51 | }; 52 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs").promises; 2 | const getTheme = require("./theme"); 3 | const getClassicTheme = require("./classic/theme"); 4 | 5 | const lightDefaultTheme = getTheme({ 6 | theme: "light", 7 | name: "GitHub Light Default", 8 | }); 9 | 10 | const lightHighContrastTheme = getTheme({ 11 | theme: "light_high_contrast", 12 | name: "GitHub Light High Contrast" 13 | }) 14 | 15 | const lightColorblindTheme = getTheme({ 16 | theme: "light_colorblind", 17 | name: "GitHub Light Colorblind", 18 | }); 19 | 20 | const darkDefaultTheme = getTheme({ 21 | theme: "dark", 22 | name: "GitHub Dark Default", 23 | }); 24 | 25 | const darkHighContrastTheme = getTheme({ 26 | theme: "dark_high_contrast", 27 | name: "GitHub Dark High Contrast" 28 | }) 29 | 30 | const darkColorblindTheme = getTheme({ 31 | theme: "dark_colorblind", 32 | name: "GitHub Dark Colorblind" 33 | }) 34 | 35 | const darkDimmedTheme = getTheme({ 36 | theme: "dark_dimmed", 37 | name: "GitHub Dark Dimmed" 38 | }) 39 | 40 | // Classic 41 | 42 | const lightTheme = getClassicTheme({ 43 | style: "light", 44 | name: "GitHub Light", 45 | }); 46 | 47 | const darkTheme = getClassicTheme({ 48 | style: "dark", 49 | name: "GitHub Dark", 50 | }); 51 | 52 | // Write themes 53 | 54 | fs.mkdir("./themes", { recursive: true }) 55 | .then(() => Promise.all([ 56 | fs.writeFile("./themes/light-default.json", JSON.stringify(lightDefaultTheme, null, 2)), 57 | fs.writeFile("./themes/light-high-contrast.json", JSON.stringify(lightHighContrastTheme, null, 2)), 58 | fs.writeFile("./themes/light-colorblind.json", JSON.stringify(lightColorblindTheme, null, 2)), 59 | fs.writeFile("./themes/dark-default.json", JSON.stringify(darkDefaultTheme, null, 2)), 60 | fs.writeFile("./themes/dark-high-contrast.json", JSON.stringify(darkHighContrastTheme, null, 2)), 61 | fs.writeFile("./themes/dark-colorblind.json", JSON.stringify(darkColorblindTheme, null, 2)), 62 | fs.writeFile("./themes/dark-dimmed.json", JSON.stringify(darkDimmedTheme, null, 2)), 63 | fs.writeFile("./themes/light.json", JSON.stringify(lightTheme, null, 2)), 64 | fs.writeFile("./themes/dark.json", JSON.stringify(darkTheme, null, 2)), 65 | ])) 66 | .catch(() => process.exit(1)) 67 | -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- 1 | const chroma = require("chroma-js"); 2 | const { getColors } = require("./colors"); 3 | 4 | // Choosing colors from primer/primitives 5 | // There are multiple ways to define what color is used: 6 | 7 | // 1. Global variable 8 | // e.g. "textLink.foreground": color.fg.default, 9 | // 2. Color scale 10 | // e.g. "textLink.foreground": scale.blue[5], 11 | // 3. Per theme. Useful when a certain theme needs an exception 12 | // e.g. "textLink.foreground": themes({ light: scale.blue[5], light_high_contrast: scale.blue[5], light_colorblind: scale.blue[5], dark: scale.blue[2], dark_high_contrast: scale.blue[3], dark_colorblind: scale.blue[2], dark_dimmed: scale.blue[3] }), 13 | 14 | function getTheme({ theme, name }) { 15 | 16 | const themes = (options) => options[theme]; // Usage: themes({ light: "lightblue", light_high_contrast: "lightblue", light_colorblind: "lightblue", dark: "darkblue", dark_high_contrast: "darkblue", dark_colorblind: "darkblue", dark_dimmed: "royalblue" }) 17 | const rawColors = getColors(theme) 18 | const color = changeColorToHexAlphas(rawColors) 19 | const scale = color.scale; // Usage: scale.blue[6] 20 | 21 | const onlyDark = (color) => { 22 | return themes({ dark: color, dark_high_contrast: color, dark_colorblind: color, dark_dimmed: color }) 23 | } 24 | 25 | const onlyHighContrast = (color) => { 26 | return themes({ light_high_contrast: color, dark_high_contrast: color }) 27 | } 28 | 29 | const onlyDarkHighContrast = (color) => { 30 | return themes({ dark_high_contrast: color }) 31 | } 32 | 33 | const lightDark = (light, dark) => { 34 | return themes({ light: light, light_high_contrast: light, light_colorblind: light, dark: dark, dark_high_contrast: dark, dark_colorblind: dark, dark_dimmed: dark }) 35 | } 36 | 37 | const alpha = (color, alpha) => { 38 | return chroma(color).alpha(alpha).hex() 39 | } 40 | 41 | return { 42 | name: name, 43 | colors: { 44 | focusBorder : color.accent.emphasis, 45 | foreground : color.fg.default, 46 | descriptionForeground: color.fg.muted, 47 | errorForeground : color.danger.fg, 48 | 49 | "textLink.foreground" : color.accent.fg, 50 | "textLink.activeForeground": color.accent.fg, 51 | "textBlockQuote.background": color.canvas.inset, 52 | "textBlockQuote.border" : color.border.default, 53 | "textCodeBlock.background" : color.neutral.muted, 54 | "textPreformat.foreground" : color.fg.muted, 55 | "textPreformat.background" : color.neutral.muted, 56 | "textSeparator.foreground" : color.border.muted, 57 | 58 | "icon.foreground" : color.fg.muted, 59 | "keybindingLabel.foreground": color.fg.default, 60 | 61 | "button.background" : color.btn.primary.bg, 62 | "button.foreground" : color.btn.primary.text, 63 | "button.hoverBackground": color.btn.primary.hoverBg, 64 | 65 | "button.secondaryBackground" : color.btn.activeBg, 66 | "button.secondaryForeground" : color.btn.text, 67 | "button.secondaryHoverBackground": color.btn.hoverBg, 68 | 69 | "checkbox.background": color.canvas.subtle, 70 | "checkbox.border" : color.border.default, 71 | 72 | "dropdown.background" : color.canvas.overlay, 73 | "dropdown.border" : color.border.default, 74 | "dropdown.foreground" : color.fg.default, 75 | "dropdown.listBackground": color.canvas.overlay, 76 | 77 | "input.background" : color.canvas.default, 78 | "input.border" : color.border.default, 79 | "input.foreground" : color.fg.default, 80 | "input.placeholderForeground": color.fg.subtle, 81 | 82 | "badge.foreground": color.fg.onEmphasis, 83 | "badge.background": color.accent.emphasis, 84 | 85 | "progressBar.background": color.accent.emphasis, 86 | 87 | "titleBar.activeForeground" : color.fg.muted, 88 | "titleBar.activeBackground" : color.canvas.default, 89 | "titleBar.inactiveForeground": color.fg.muted, 90 | "titleBar.inactiveBackground": color.canvas.inset, 91 | "titleBar.border" : color.border.default, 92 | 93 | "activityBar.foreground" : color.fg.default, 94 | "activityBar.inactiveForeground": color.fg.muted, 95 | "activityBar.background" : color.canvas.default, 96 | "activityBarBadge.foreground" : color.fg.onEmphasis, 97 | "activityBarBadge.background" : color.accent.emphasis, 98 | "activityBar.activeBorder" : color.primer.border.active, 99 | "activityBar.border" : color.border.default, 100 | 101 | "sideBar.foreground" : color.fg.default, 102 | "sideBar.background" : color.canvas.inset, 103 | "sideBar.border" : color.border.default, 104 | "sideBarTitle.foreground" : color.fg.default, 105 | "sideBarSectionHeader.foreground": color.fg.default, 106 | "sideBarSectionHeader.background": color.canvas.inset, 107 | "sideBarSectionHeader.border" : color.border.default, 108 | 109 | "list.hoverForeground" : color.fg.default, 110 | "list.inactiveSelectionForeground": color.fg.default, 111 | "list.activeSelectionForeground" : color.fg.default, 112 | "list.hoverBackground" : color.neutral.subtle, 113 | "list.inactiveSelectionBackground": color.neutral.muted, 114 | "list.activeSelectionBackground" : color.neutral.muted, 115 | "list.focusForeground" : color.fg.default, 116 | "list.focusBackground" : color.accent.subtle, 117 | "list.inactiveFocusBackground" : color.accent.subtle, 118 | "list.highlightForeground" : color.accent.fg, 119 | 120 | "tree.indentGuidesStroke": color.border.muted, 121 | 122 | "notificationCenterHeader.foreground": color.fg.muted, 123 | "notificationCenterHeader.background": color.canvas.subtle, 124 | "notifications.foreground" : color.fg.default, 125 | "notifications.background" : color.canvas.overlay, 126 | "notifications.border" : color.border.default, 127 | "notificationsErrorIcon.foreground" : color.danger.fg, 128 | "notificationsWarningIcon.foreground": color.attention.fg, 129 | "notificationsInfoIcon.foreground" : color.accent.fg, 130 | 131 | "pickerGroup.border" : color.border.default, 132 | "pickerGroup.foreground": color.fg.muted, 133 | "quickInput.background" : color.canvas.overlay, 134 | "quickInput.foreground" : color.fg.default, 135 | 136 | "statusBar.foreground" : color.fg.muted, 137 | "statusBar.background" : color.canvas.default, 138 | "statusBar.border" : color.border.default, 139 | "statusBar.focusBorder" : alpha(color.accent.emphasis, 0.5), 140 | "statusBar.noFolderBackground" : color.canvas.default, 141 | "statusBar.debuggingForeground" : color.fg.onEmphasis, 142 | "statusBar.debuggingBackground" : color.danger.emphasis, 143 | "statusBarItem.prominentBackground": color.neutral.muted, 144 | "statusBarItem.remoteForeground" : color.fg.default, 145 | "statusBarItem.remoteBackground" : lightDark(color.scale.gray[1], color.scale.gray[6]), 146 | "statusBarItem.hoverBackground" : alpha(color.fg.default, 0.08), 147 | "statusBarItem.activeBackground" : alpha(color.fg.default, 0.12), 148 | "statusBarItem.focusBorder" : color.accent.emphasis, 149 | 150 | "editorGroupHeader.tabsBackground": color.canvas.inset, 151 | "editorGroupHeader.tabsBorder" : color.border.default, 152 | "editorGroup.border" : color.border.default, 153 | 154 | "tab.activeForeground" : color.fg.default, 155 | "tab.inactiveForeground" : color.fg.muted, 156 | "tab.inactiveBackground" : color.canvas.inset, 157 | "tab.activeBackground" : color.canvas.default, 158 | "tab.hoverBackground" : color.canvas.default, 159 | "tab.unfocusedHoverBackground": color.neutral.subtle, 160 | "tab.border" : color.border.default, 161 | "tab.unfocusedActiveBorderTop": color.border.default, 162 | "tab.activeBorder" : color.canvas.default, 163 | "tab.unfocusedActiveBorder" : color.canvas.default, 164 | "tab.activeBorderTop" : color.primer.border.active, 165 | 166 | "breadcrumb.foreground" : color.fg.muted, 167 | "breadcrumb.focusForeground" : color.fg.default, 168 | "breadcrumb.activeSelectionForeground": color.fg.muted, 169 | "breadcrumbPicker.background" : color.canvas.overlay, 170 | 171 | "editor.foreground" : color.fg.default, 172 | "editor.background" : color.canvas.default, 173 | "editorWidget.background" : color.canvas.overlay, 174 | "editor.foldBackground" : alpha(color.neutral.emphasis, 0.1), 175 | "editor.lineHighlightBackground" : color.codemirror.activelineBg, 176 | "editor.lineHighlightBorder" : onlyDarkHighContrast(color.accent.fg), 177 | "editorLineNumber.foreground" : lightDark(scale.gray[4], scale.gray[4]), 178 | "editorLineNumber.activeForeground" : color.fg.default, 179 | "editorIndentGuide.background" : alpha(color.fg.default, 0.12), 180 | "editorIndentGuide.activeBackground": alpha(color.fg.default, 0.24), 181 | "editorWhitespace.foreground" : lightDark( scale.gray[3], scale.gray[5]), 182 | "editorCursor.foreground" : color.accent.fg, 183 | 184 | "editor.findMatchBackground" : color.attention.emphasis, 185 | "editor.findMatchHighlightBackground" : alpha(scale.yellow[1], 0.5), 186 | "editor.linkedEditingBackground" : alpha(color.accent.fg, 0.07), 187 | "editor.inactiveSelectionBackground" : alpha(color.accent.fg, 0.07), 188 | "editor.selectionBackground" : alpha(color.accent.fg, 0.2), 189 | "editor.selectionHighlightBackground" : alpha(scale.green[3], 0.25), 190 | "editor.wordHighlightBackground" : alpha(color.neutral.subtle, 0.5), 191 | "editor.wordHighlightBorder" : alpha(color.neutral.muted, 0.6), 192 | "editor.wordHighlightStrongBackground" : alpha(color.neutral.muted, 0.3), 193 | "editor.wordHighlightStrongBorder" : alpha(color.neutral.muted, 0.6), 194 | "editorBracketMatch.background" : alpha(scale.green[3], 0.25), 195 | "editorBracketMatch.border" : alpha(scale.green[3], 0.6), 196 | // text selection for High Contrast themes 197 | "editor.selectionForeground" : onlyHighContrast(color.fg.onEmphasis), 198 | "editor.selectionBackground" : onlyHighContrast(color.neutral.emphasisPlus), 199 | "editor.inactiveSelectionBackground" : onlyHighContrast(color.neutral.emphasis), 200 | 201 | "editorInlayHint.background": alpha(scale.gray[3], 0.2), 202 | "editorInlayHint.foreground": color.fg.muted, 203 | "editorInlayHint.typeBackground": alpha(scale.gray[3], 0.2), 204 | "editorInlayHint.typeForeground": color.fg.muted, 205 | "editorInlayHint.paramBackground": alpha(scale.gray[3], 0.2), 206 | "editorInlayHint.paramForeground": color.fg.muted, 207 | 208 | "editorGutter.modifiedBackground": color.attention.muted, 209 | "editorGutter.addedBackground" : color.success.muted, 210 | "editorGutter.deletedBackground" : color.danger.muted, 211 | 212 | "diffEditor.insertedLineBackground": lightDark(alpha(scale.green[1], 0.3), alpha(scale.green[5], 0.15)), 213 | "diffEditor.insertedTextBackground": lightDark(alpha(scale.green[2], 0.5), alpha(scale.green[3], 0.3)), 214 | "diffEditor.removedLineBackground" : lightDark(alpha(scale.red[1], 0.3), alpha(scale.red[5], 0.15)), 215 | "diffEditor.removedTextBackground" : lightDark(alpha(scale.red[3], 0.4), alpha(scale.red[3], 0.3)), 216 | 217 | "scrollbar.shadow" : alpha(scale.gray[5], 0.2), 218 | "scrollbarSlider.background" : lightDark(alpha(scale.gray[4], 0.2), alpha(scale.gray[3], 0.2)), 219 | "scrollbarSlider.hoverBackground" : lightDark(alpha(scale.gray[4], 0.24), alpha(scale.gray[3], 0.24)), 220 | "scrollbarSlider.activeBackground" : lightDark(alpha(scale.gray[4], 0.28), alpha(scale.gray[3], 0.28)), 221 | "editorOverviewRuler.border" : lightDark(scale.white, scale.black), 222 | 223 | "minimapSlider.background" : lightDark(alpha(scale.gray[4], 0.2), alpha(scale.gray[3], 0.2)), 224 | "minimapSlider.hoverBackground" : lightDark(alpha(scale.gray[4], 0.24), alpha(scale.gray[3], 0.24)), 225 | "minimapSlider.activeBackground" : lightDark(alpha(scale.gray[4], 0.28), alpha(scale.gray[3], 0.28)), 226 | 227 | "panel.background" : color.canvas.inset, 228 | "panel.border" : color.border.default, 229 | "panelTitle.activeBorder" : color.primer.border.active, 230 | "panelTitle.activeForeground" : color.fg.default, 231 | "panelTitle.inactiveForeground" : color.fg.muted, 232 | "panelInput.border" : color.border.default, 233 | 234 | "debugIcon.breakpointForeground": color.danger.fg, 235 | 236 | "debugConsole.infoForeground": lightDark( scale.gray[6], scale.gray[3]), 237 | "debugConsole.warningForeground": lightDark( scale.yellow[6], scale.yellow[3]), 238 | "debugConsole.errorForeground": lightDark( scale.red[5], scale.red[2]), 239 | "debugConsole.sourceForeground": lightDark( scale.yellow[5], scale.yellow[2]), 240 | "debugConsoleInputIcon.foreground": lightDark( scale.purple[6], scale.purple[3]), 241 | 242 | "debugTokenExpression.name": lightDark(scale.blue[6], scale.blue[2]), 243 | "debugTokenExpression.value": lightDark(scale.blue[8], scale.blue[1]), 244 | "debugTokenExpression.string": lightDark(scale.blue[8], scale.blue[1]), 245 | "debugTokenExpression.boolean": lightDark( scale.green[6], scale.green[2]), 246 | "debugTokenExpression.number": lightDark( scale.green[6], scale.green[2]), 247 | "debugTokenExpression.error": lightDark( scale.red[6], scale.red[2]), 248 | 249 | "symbolIcon.arrayForeground": lightDark( scale.orange[6], scale.orange[3]), 250 | "symbolIcon.booleanForeground": lightDark( scale.blue[6], scale.blue[3]), 251 | "symbolIcon.classForeground": lightDark( scale.orange[6], scale.orange[3]), 252 | "symbolIcon.colorForeground": lightDark( scale.blue[8], scale.blue[2]), 253 | "symbolIcon.constructorForeground": lightDark( scale.purple[8], scale.purple[2]), 254 | "symbolIcon.enumeratorForeground": lightDark( scale.orange[6], scale.orange[3]), 255 | "symbolIcon.enumeratorMemberForeground": lightDark( scale.blue[6], scale.blue[3]), 256 | "symbolIcon.eventForeground": lightDark( scale.gray[6], scale.gray[4]), 257 | "symbolIcon.fieldForeground": lightDark( scale.orange[6], scale.orange[3]), 258 | "symbolIcon.fileForeground": lightDark( scale.yellow[6], scale.yellow[3]), 259 | "symbolIcon.folderForeground": lightDark( scale.yellow[6], scale.yellow[3]), 260 | "symbolIcon.functionForeground": lightDark( scale.purple[6], scale.purple[3]), 261 | "symbolIcon.interfaceForeground": lightDark( scale.orange[6], scale.orange[3]), 262 | "symbolIcon.keyForeground": lightDark( scale.blue[6], scale.blue[3]), 263 | "symbolIcon.keywordForeground": lightDark( scale.red[6], scale.red[3]), 264 | "symbolIcon.methodForeground": lightDark( scale.purple[6], scale.purple[3]), 265 | "symbolIcon.moduleForeground": lightDark( scale.red[6], scale.red[3]), 266 | "symbolIcon.namespaceForeground": lightDark( scale.red[6], scale.red[3]), 267 | "symbolIcon.nullForeground": lightDark( scale.blue[6], scale.blue[3]), 268 | "symbolIcon.numberForeground": lightDark( scale.green[6], scale.green[3]), 269 | "symbolIcon.objectForeground": lightDark( scale.orange[6], scale.orange[3]), 270 | "symbolIcon.operatorForeground": lightDark( scale.blue[8], scale.blue[2]), 271 | "symbolIcon.packageForeground": lightDark( scale.orange[6], scale.orange[3]), 272 | "symbolIcon.propertyForeground": lightDark( scale.orange[6], scale.orange[3]), 273 | "symbolIcon.referenceForeground": lightDark( scale.blue[6], scale.blue[3]), 274 | "symbolIcon.snippetForeground": lightDark( scale.blue[6], scale.blue[3]), 275 | "symbolIcon.stringForeground": lightDark( scale.blue[8], scale.blue[2]), 276 | "symbolIcon.structForeground": lightDark( scale.orange[6], scale.orange[3]), 277 | "symbolIcon.textForeground": lightDark( scale.blue[8], scale.blue[2]), 278 | "symbolIcon.typeParameterForeground": lightDark( scale.blue[8], scale.blue[2]), 279 | "symbolIcon.unitForeground": lightDark( scale.blue[6], scale.blue[3]), 280 | "symbolIcon.variableForeground": lightDark( scale.orange[6], scale.orange[3]), 281 | "symbolIcon.constantForeground": lightDark( scale.green[6], scale.green), 282 | 283 | "terminal.foreground": color.fg.default, 284 | 'terminal.ansiBlack': color.ansi.black, 285 | 'terminal.ansiRed': color.ansi.red, 286 | 'terminal.ansiGreen': color.ansi.green, 287 | 'terminal.ansiYellow': color.ansi.yellow, 288 | 'terminal.ansiBlue': color.ansi.blue, 289 | 'terminal.ansiMagenta': color.ansi.magenta, 290 | 'terminal.ansiCyan': color.ansi.cyan, 291 | 'terminal.ansiWhite': color.ansi.white, 292 | 'terminal.ansiBrightBlack': color.ansi.blackBright, 293 | 'terminal.ansiBrightRed': color.ansi.redBright, 294 | 'terminal.ansiBrightGreen': color.ansi.greenBright, 295 | 'terminal.ansiBrightYellow': color.ansi.yellowBright, 296 | 'terminal.ansiBrightBlue': color.ansi.blueBright, 297 | 'terminal.ansiBrightMagenta': color.ansi.magentaBright, 298 | 'terminal.ansiBrightCyan': color.ansi.cyanBright, 299 | 'terminal.ansiBrightWhite': color.ansi.whiteBright, 300 | 301 | "editorBracketHighlight.foreground1": lightDark(scale.blue[5], scale.blue[2]), 302 | "editorBracketHighlight.foreground2": lightDark(scale.green[5], scale.green[2]), 303 | "editorBracketHighlight.foreground3": lightDark(scale.yellow[5], scale.yellow[2]), 304 | "editorBracketHighlight.foreground4": lightDark(scale.red[5], scale.red[2]), 305 | "editorBracketHighlight.foreground5": lightDark(scale.pink[5], scale.pink[2]), 306 | "editorBracketHighlight.foreground6": lightDark(scale.purple[5], scale.purple[2]), 307 | "editorBracketHighlight.unexpectedBracket.foreground": color.fg.muted, // gray 308 | 309 | "gitDecoration.addedResourceForeground" : color.success.fg, 310 | "gitDecoration.modifiedResourceForeground" : color.attention.fg, 311 | "gitDecoration.deletedResourceForeground" : color.danger.fg, 312 | "gitDecoration.untrackedResourceForeground" : color.success.fg, 313 | "gitDecoration.ignoredResourceForeground" : color.fg.subtle, 314 | "gitDecoration.conflictingResourceForeground": color.severe.fg, 315 | "gitDecoration.submoduleResourceForeground" : color.fg.muted, 316 | 317 | "debugToolBar.background" : color.canvas.overlay, 318 | "editor.stackFrameHighlightBackground" : color.attention.muted, 319 | "editor.focusedStackFrameHighlightBackground": color.success.muted, 320 | 321 | "peekViewEditor.matchHighlightBackground": onlyDark(color.attention.muted), 322 | "peekViewResult.matchHighlightBackground": onlyDark(color.attention.muted), 323 | "peekViewEditor.background" : onlyDark(color.neutral.subtle), 324 | "peekViewResult.background" : onlyDark(scale.gray[9]), 325 | 326 | "settings.headerForeground" : color.fg.default, 327 | "settings.modifiedItemIndicator" : color.attention.muted, 328 | "welcomePage.buttonBackground" : color.btn.bg, 329 | "welcomePage.buttonHoverBackground": color.btn.hoverBg, 330 | }, 331 | semanticHighlighting: true, 332 | tokenColors: [ 333 | { 334 | scope: ["comment", "punctuation.definition.comment", "string.comment"], 335 | settings: { 336 | foreground: lightDark(scale.gray[5], scale.gray[3]) 337 | }, 338 | }, 339 | { 340 | scope: [ 341 | "constant.other.placeholder", 342 | "constant.character" 343 | ], 344 | settings: { 345 | foreground: lightDark(scale.red[5], scale.red[3]) 346 | }, 347 | }, 348 | { 349 | scope: [ 350 | "constant", 351 | "entity.name.constant", 352 | "variable.other.constant", 353 | "variable.other.enummember", 354 | "variable.language", 355 | "entity", 356 | ], 357 | settings: { 358 | foreground: lightDark(scale.blue[6], scale.blue[2]) 359 | }, 360 | }, 361 | { 362 | scope: [ 363 | "entity.name", 364 | "meta.export.default", 365 | "meta.definition.variable" 366 | ], 367 | settings: { 368 | foreground: lightDark(scale.orange[6], scale.orange[2]) 369 | }, 370 | }, 371 | { 372 | scope: [ 373 | "variable.parameter.function", 374 | "meta.jsx.children", 375 | "meta.block", 376 | "meta.tag.attributes", 377 | "entity.name.constant", 378 | "meta.object.member", 379 | "meta.embedded.expression" 380 | ], 381 | settings: { 382 | foreground: color.fg.default, 383 | }, 384 | }, 385 | { 386 | "scope": "entity.name.function", 387 | "settings": { 388 | foreground: lightDark(scale.purple[5], scale.purple[2]) 389 | } 390 | }, 391 | { 392 | "scope": [ 393 | "entity.name.tag", 394 | "support.class.component" 395 | ], 396 | settings: { 397 | foreground: lightDark(scale.green[6], scale.green[1]) 398 | }, 399 | }, 400 | { 401 | scope: "keyword", 402 | settings: { 403 | foreground: lightDark(scale.red[5], scale.red[3]) 404 | }, 405 | }, 406 | { 407 | scope: ["storage", "storage.type"], 408 | settings: { 409 | foreground: lightDark(scale.red[5], scale.red[3]) 410 | }, 411 | }, 412 | { 413 | scope: [ 414 | "storage.modifier.package", 415 | "storage.modifier.import", 416 | "storage.type.java", 417 | ], 418 | settings: { 419 | foreground: color.fg.default, 420 | }, 421 | }, 422 | { 423 | scope: [ 424 | "string", 425 | "string punctuation.section.embedded source", 426 | ], 427 | settings: { 428 | foreground: lightDark(scale.blue[8], scale.blue[1]) 429 | }, 430 | }, 431 | { 432 | scope: "support", 433 | settings: { 434 | foreground: lightDark(scale.blue[6], scale.blue[2]) 435 | }, 436 | }, 437 | { 438 | scope: "meta.property-name", 439 | settings: { 440 | foreground: lightDark(scale.blue[6], scale.blue[2]) 441 | }, 442 | }, 443 | { 444 | scope: "variable", 445 | settings: { 446 | foreground: lightDark(scale.orange[6], scale.orange[2]) 447 | }, 448 | }, 449 | { 450 | scope: "variable.other", 451 | settings: { 452 | foreground: color.fg.default, 453 | }, 454 | }, 455 | { 456 | scope: "invalid.broken", 457 | settings: { 458 | fontStyle: "italic", 459 | foreground: lightDark(scale.red[7], scale.red[2]) 460 | }, 461 | }, 462 | { 463 | scope: "invalid.deprecated", 464 | settings: { 465 | fontStyle: "italic", 466 | foreground: lightDark(scale.red[7], scale.red[2]) 467 | }, 468 | }, 469 | { 470 | scope: "invalid.illegal", 471 | settings: { 472 | fontStyle: "italic", 473 | foreground: lightDark(scale.red[7], scale.red[2]) 474 | }, 475 | }, 476 | { 477 | scope: "invalid.unimplemented", 478 | settings: { 479 | fontStyle: "italic", 480 | foreground: lightDark(scale.red[7], scale.red[2]) 481 | }, 482 | }, 483 | { 484 | scope: "carriage-return", 485 | settings: { 486 | fontStyle: "italic underline", 487 | background: lightDark(scale.red[5], scale.red[3]), 488 | foreground: lightDark(scale.gray[0], scale.gray[0]), 489 | content: "^M", 490 | }, 491 | }, 492 | { 493 | scope: "message.error", 494 | settings: { 495 | foreground: lightDark(scale.red[7], scale.red[2]) 496 | }, 497 | }, 498 | { 499 | scope: "string variable", 500 | settings: { 501 | foreground: lightDark(scale.blue[6], scale.blue[2]) 502 | }, 503 | }, 504 | { 505 | scope: ["source.regexp", "string.regexp"], 506 | settings: { 507 | foreground: lightDark(scale.blue[8], scale.blue[1]) 508 | }, 509 | }, 510 | { 511 | scope: [ 512 | "string.regexp.character-class", 513 | "string.regexp constant.character.escape", 514 | "string.regexp source.ruby.embedded", 515 | "string.regexp string.regexp.arbitrary-repitition", 516 | ], 517 | settings: { 518 | foreground: lightDark(scale.blue[8], scale.blue[1]) 519 | }, 520 | }, 521 | { 522 | scope: "string.regexp constant.character.escape", 523 | settings: { 524 | fontStyle: "bold", 525 | foreground: lightDark(scale.green[6], scale.green[1]) 526 | }, 527 | }, 528 | { 529 | scope: "support.constant", 530 | settings: { 531 | foreground: lightDark(scale.blue[6], scale.blue[2]) 532 | }, 533 | }, 534 | { 535 | scope: "support.variable", 536 | settings: { 537 | foreground: lightDark(scale.blue[6], scale.blue[2]) 538 | }, 539 | }, 540 | { 541 | scope: "support.type.property-name.json", 542 | settings: { 543 | foreground: lightDark(scale.green[6], scale.green[1]) 544 | }, 545 | }, 546 | { 547 | scope: "meta.module-reference", 548 | settings: { 549 | foreground: lightDark(scale.blue[6], scale.blue[2]) 550 | }, 551 | }, 552 | { 553 | scope: "punctuation.definition.list.begin.markdown", 554 | settings: { 555 | foreground: lightDark(scale.orange[6], scale.orange[2]) 556 | }, 557 | }, 558 | { 559 | scope: ["markup.heading", "markup.heading entity.name"], 560 | settings: { 561 | fontStyle: "bold", 562 | foreground: lightDark(scale.blue[6], scale.blue[2]) 563 | }, 564 | }, 565 | { 566 | scope: "markup.quote", 567 | settings: { 568 | foreground: lightDark(scale.green[6], scale.green[1]) 569 | }, 570 | }, 571 | { 572 | scope: "markup.italic", 573 | settings: { 574 | fontStyle: "italic", 575 | foreground: color.fg.default, 576 | }, 577 | }, 578 | { 579 | scope: "markup.bold", 580 | settings: { 581 | fontStyle: "bold", 582 | foreground: color.fg.default, 583 | }, 584 | }, 585 | { 586 | scope: ["markup.underline"], 587 | settings: { 588 | fontStyle: "underline", 589 | }, 590 | }, 591 | { 592 | scope: ["markup.strikethrough"], 593 | settings: { 594 | fontStyle: "strikethrough", 595 | }, 596 | }, 597 | { 598 | scope: "markup.inline.raw", 599 | settings: { 600 | foreground: lightDark(scale.blue[6], scale.blue[2]) 601 | }, 602 | }, 603 | { 604 | scope: [ 605 | "markup.deleted", 606 | "meta.diff.header.from-file", 607 | "punctuation.definition.deleted", 608 | ], 609 | settings: { 610 | background: lightDark(scale.red[0], scale.red[9]), 611 | foreground: lightDark(scale.red[7], scale.red[2]) 612 | }, 613 | }, 614 | { 615 | scope: ["punctuation.section.embedded"], 616 | settings: { 617 | foreground: lightDark(scale.red[5], scale.red[3]) 618 | }, 619 | }, 620 | { 621 | scope: [ 622 | "markup.inserted", 623 | "meta.diff.header.to-file", 624 | "punctuation.definition.inserted", 625 | ], 626 | settings: { 627 | background: lightDark(scale.green[0], scale.green[9]), 628 | foreground: lightDark(scale.green[6], scale.green[1]) 629 | }, 630 | }, 631 | { 632 | scope: ["markup.changed", "punctuation.definition.changed"], 633 | settings: { 634 | background: lightDark(scale.orange[1], scale.orange[8]), 635 | foreground: lightDark(scale.orange[6], scale.orange[2]) 636 | }, 637 | }, 638 | { 639 | scope: ["markup.ignored", "markup.untracked"], 640 | settings: { 641 | foreground: lightDark(scale.gray[1], scale.gray[8]), 642 | background: lightDark(scale.blue[6], scale.blue[2]) 643 | }, 644 | }, 645 | { 646 | scope: "meta.diff.range", 647 | settings: { 648 | foreground: lightDark(scale.purple[5], scale.purple[2]), 649 | fontStyle: "bold", 650 | }, 651 | }, 652 | { 653 | scope: "meta.diff.header", 654 | settings: { 655 | foreground: lightDark(scale.blue[6], scale.blue[2]) 656 | }, 657 | }, 658 | { 659 | scope: "meta.separator", 660 | settings: { 661 | fontStyle: "bold", 662 | foreground: lightDark(scale.blue[6], scale.blue[2]) 663 | }, 664 | }, 665 | { 666 | scope: "meta.output", 667 | settings: { 668 | foreground: lightDark(scale.blue[6], scale.blue[2]) 669 | }, 670 | }, 671 | { 672 | scope: [ 673 | "brackethighlighter.tag", 674 | "brackethighlighter.curly", 675 | "brackethighlighter.round", 676 | "brackethighlighter.square", 677 | "brackethighlighter.angle", 678 | "brackethighlighter.quote", 679 | ], 680 | settings: { 681 | foreground: lightDark(scale.gray[6], scale.gray[3]) 682 | }, 683 | }, 684 | { 685 | scope: "brackethighlighter.unmatched", 686 | settings: { 687 | foreground: lightDark(scale.red[7], scale.red[2]) 688 | }, 689 | }, 690 | { 691 | scope: ["constant.other.reference.link", "string.other.link"], 692 | settings: { 693 | foreground: lightDark(scale.blue[8], scale.blue[1]), 694 | }, 695 | }, 696 | ], 697 | }; 698 | } 699 | 700 | // Convert to hex 701 | // VS Code doesn't support other formats like hsl, rgba etc. 702 | 703 | function changeColorToHexAlphas(obj) { 704 | if (typeof obj === 'object') { 705 | for (var keys in obj) { 706 | if (typeof obj[keys] === 'object') { 707 | changeColorToHexAlphas(obj[keys]) 708 | } else { 709 | let keyValue = obj[keys] 710 | if(chroma.valid(keyValue)){ 711 | obj[keys] = chroma(keyValue).hex(); 712 | } 713 | } 714 | } 715 | } 716 | return obj; 717 | } 718 | 719 | 720 | module.exports = getTheme; 721 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.15.8" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.15.8.tgz#45990c47adadb00c03677baa89221f7cc23d2503" 8 | integrity sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg== 9 | dependencies: 10 | "@babel/highlight" "^7.14.5" 11 | 12 | "@babel/helper-validator-identifier@^7.14.5": 13 | version "7.15.7" 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" 15 | integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== 16 | 17 | "@babel/highlight@^7.14.5": 18 | version "7.14.5" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" 20 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.14.5" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@babel/runtime@^7.10.4", "@babel/runtime@^7.5.5": 27 | version "7.15.4" 28 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.15.4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a" 29 | integrity sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw== 30 | dependencies: 31 | regenerator-runtime "^0.13.4" 32 | 33 | "@changesets/apply-release-plan@^5.0.1": 34 | version "5.0.1" 35 | resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-5.0.1.tgz#ed3e30550f787ef1b72f0a51e29a54d244123109" 36 | integrity sha512-ltYLM/PPoL1Un9hnNCbUac25FWonJvIZ/9C3O4UyZ/k4rir9FGvH6KLtMOiPEAJWnXmaHeRDr06MzohuXOnmvw== 37 | dependencies: 38 | "@babel/runtime" "^7.10.4" 39 | "@changesets/config" "^1.6.1" 40 | "@changesets/get-version-range-type" "^0.3.2" 41 | "@changesets/git" "^1.1.2" 42 | "@changesets/types" "^4.0.1" 43 | "@manypkg/get-packages" "^1.0.1" 44 | detect-indent "^6.0.0" 45 | fs-extra "^7.0.1" 46 | lodash.startcase "^4.4.0" 47 | outdent "^0.5.0" 48 | prettier "^1.19.1" 49 | resolve-from "^5.0.0" 50 | semver "^5.4.1" 51 | 52 | "@changesets/assemble-release-plan@^5.0.1": 53 | version "5.0.1" 54 | resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-5.0.1.tgz#80e9b750705677eb2d6356c581ed9c2e97fd68e7" 55 | integrity sha512-KQqafvScTFQ/4Q2LpLmDYhU47LWvIGcgVS8tzKU8fBvRdKuLGQXe42VYbwVM0cHIkFd/b6YFn+H2QMdKC2MjIQ== 56 | dependencies: 57 | "@babel/runtime" "^7.10.4" 58 | "@changesets/errors" "^0.1.4" 59 | "@changesets/get-dependents-graph" "^1.2.2" 60 | "@changesets/types" "^4.0.1" 61 | "@manypkg/get-packages" "^1.0.1" 62 | semver "^5.4.1" 63 | 64 | "@changesets/changelog-github@^0.4.1": 65 | version "0.4.1" 66 | resolved "https://registry.yarnpkg.com/@changesets/changelog-github/-/changelog-github-0.4.1.tgz#880cb624477972ea103abf6942cf4ee3106f682b" 67 | integrity sha512-WK9DzS3i0wa2doEnOr4sm/FMnNtxzCCAKP7dEcWvhYkgXYX5R6jmfHAcDstmjAhiuvbhoHYom4MOC1tIzgwnfA== 68 | dependencies: 69 | "@changesets/get-github-info" "^0.5.0" 70 | "@changesets/types" "^4.0.1" 71 | dotenv "^8.1.0" 72 | 73 | "@changesets/cli@^2.17.0": 74 | version "2.17.0" 75 | resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.17.0.tgz#cc7ff4f64d029ddd6d87020a012c8cf8c7adde58" 76 | integrity sha512-UyraYwYst1lTjef+8i80XQ6SqsLaGwi4Sgn9YuDf2xdHA9m+5qQXshHvHVjaTdPTA09rqMBk9yeO7vmAqF4+vQ== 77 | dependencies: 78 | "@babel/runtime" "^7.10.4" 79 | "@changesets/apply-release-plan" "^5.0.1" 80 | "@changesets/assemble-release-plan" "^5.0.1" 81 | "@changesets/config" "^1.6.1" 82 | "@changesets/errors" "^0.1.4" 83 | "@changesets/get-dependents-graph" "^1.2.2" 84 | "@changesets/get-release-plan" "^3.0.1" 85 | "@changesets/git" "^1.1.2" 86 | "@changesets/logger" "^0.0.5" 87 | "@changesets/pre" "^1.0.7" 88 | "@changesets/read" "^0.5.0" 89 | "@changesets/types" "^4.0.1" 90 | "@changesets/write" "^0.1.5" 91 | "@manypkg/get-packages" "^1.0.1" 92 | "@types/semver" "^6.0.0" 93 | boxen "^1.3.0" 94 | chalk "^2.1.0" 95 | enquirer "^2.3.0" 96 | external-editor "^3.1.0" 97 | fs-extra "^7.0.1" 98 | human-id "^1.0.2" 99 | is-ci "^2.0.0" 100 | meow "^6.0.0" 101 | outdent "^0.5.0" 102 | p-limit "^2.2.0" 103 | preferred-pm "^3.0.0" 104 | semver "^5.4.1" 105 | spawndamnit "^2.0.0" 106 | term-size "^2.1.0" 107 | tty-table "^2.8.10" 108 | 109 | "@changesets/config@^1.6.1": 110 | version "1.6.1" 111 | resolved "https://registry.yarnpkg.com/@changesets/config/-/config-1.6.1.tgz#e9b1636fd56a74411c493c924e6ffa07d7d26091" 112 | integrity sha512-aQTo6ODvhsvnSFszMP1YbJyAi1DtE1Pes9rL+G+KYJiAOA6k5RzbiKOarjo+ZkKXpX0G3CBAbOO8jXOX4xG7cQ== 113 | dependencies: 114 | "@changesets/errors" "^0.1.4" 115 | "@changesets/get-dependents-graph" "^1.2.2" 116 | "@changesets/logger" "^0.0.5" 117 | "@changesets/types" "^4.0.1" 118 | "@manypkg/get-packages" "^1.0.1" 119 | fs-extra "^7.0.1" 120 | micromatch "^4.0.2" 121 | 122 | "@changesets/errors@^0.1.4": 123 | version "0.1.4" 124 | resolved "https://registry.yarnpkg.com/@changesets/errors/-/errors-0.1.4.tgz#f79851746c43679a66b383fdff4c012f480f480d" 125 | integrity sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q== 126 | dependencies: 127 | extendable-error "^0.1.5" 128 | 129 | "@changesets/get-dependents-graph@^1.2.2": 130 | version "1.2.2" 131 | resolved "https://registry.yarnpkg.com/@changesets/get-dependents-graph/-/get-dependents-graph-1.2.2.tgz#7a2238f3d1a023de83d37b727a0da15826e88d73" 132 | integrity sha512-3zJRw6TcexmOrmIZNOXpIRsZtqtrdmlzbqp4+V0VgnBvTxz16rqCS9VBsBqFYeJDWFj3soOlHUMeTwLghr18DA== 133 | dependencies: 134 | "@changesets/types" "^4.0.1" 135 | "@manypkg/get-packages" "^1.0.1" 136 | chalk "^2.1.0" 137 | fs-extra "^7.0.1" 138 | semver "^5.4.1" 139 | 140 | "@changesets/get-github-info@^0.5.0": 141 | version "0.5.0" 142 | resolved "https://registry.yarnpkg.com/@changesets/get-github-info/-/get-github-info-0.5.0.tgz#b91ceb2d82edef78ae1598ea9fc335a012250295" 143 | integrity sha512-vm5VgHwrxkMkUjFyn3UVNKLbDp9YMHd3vMf1IyJoa/7B+6VpqmtAaXyDS0zBLfN5bhzVCHrRnj4GcZXXcqrFTw== 144 | dependencies: 145 | dataloader "^1.4.0" 146 | node-fetch "^2.5.0" 147 | 148 | "@changesets/get-release-plan@^3.0.1": 149 | version "3.0.1" 150 | resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.1.tgz#c98a34321eac9e4187098893ff8dadb6f90ad89c" 151 | integrity sha512-HTZeEPvLlcWMWKxLrzQNLQWKDDN1lUKvaOV+hl/yBhgtyJECljJJzd3IRaKqCSWMrYKNaaEcmunTtZ4oaeoK9w== 152 | dependencies: 153 | "@babel/runtime" "^7.10.4" 154 | "@changesets/assemble-release-plan" "^5.0.1" 155 | "@changesets/config" "^1.6.1" 156 | "@changesets/pre" "^1.0.7" 157 | "@changesets/read" "^0.5.0" 158 | "@changesets/types" "^4.0.1" 159 | "@manypkg/get-packages" "^1.0.1" 160 | 161 | "@changesets/get-version-range-type@^0.3.2": 162 | version "0.3.2" 163 | resolved "https://registry.yarnpkg.com/@changesets/get-version-range-type/-/get-version-range-type-0.3.2.tgz#8131a99035edd11aa7a44c341cbb05e668618c67" 164 | integrity sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg== 165 | 166 | "@changesets/git@^1.1.2": 167 | version "1.1.2" 168 | resolved "https://registry.yarnpkg.com/@changesets/git/-/git-1.1.2.tgz#248d4418bcb2d4f198852409cfcbd06a1fcb0424" 169 | integrity sha512-dfza8elsIwcYVa4fFzLaPs4+AkoCFiW3sfzkkC7WR+rG9j+zZh7CelzVpnoiAbEI2QOzeCbZKMoLSvBPgHhB1g== 170 | dependencies: 171 | "@babel/runtime" "^7.10.4" 172 | "@changesets/errors" "^0.1.4" 173 | "@changesets/types" "^4.0.1" 174 | "@manypkg/get-packages" "^1.0.1" 175 | is-subdir "^1.1.1" 176 | spawndamnit "^2.0.0" 177 | 178 | "@changesets/logger@^0.0.5": 179 | version "0.0.5" 180 | resolved "https://registry.yarnpkg.com/@changesets/logger/-/logger-0.0.5.tgz#68305dd5a643e336be16a2369cb17cdd8ed37d4c" 181 | integrity sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw== 182 | dependencies: 183 | chalk "^2.1.0" 184 | 185 | "@changesets/parse@^0.3.9": 186 | version "0.3.9" 187 | resolved "https://registry.yarnpkg.com/@changesets/parse/-/parse-0.3.9.tgz#c518792b05f15ab418d58dc1cea81601556e845e" 188 | integrity sha512-XoTEkMpvRRVxSlhvOaK4YSFM+RZhYFTksxRh7ieNkb6pMxkpq8MOYSi/07BuqkODn4dJEMOoSy3RzL99P6FyqA== 189 | dependencies: 190 | "@changesets/types" "^4.0.1" 191 | js-yaml "^3.13.1" 192 | 193 | "@changesets/pre@^1.0.7": 194 | version "1.0.7" 195 | resolved "https://registry.yarnpkg.com/@changesets/pre/-/pre-1.0.7.tgz#caf6430c90b8ac6d58c9cd90a19558ab06b19b88" 196 | integrity sha512-oUU6EL4z0AIyCv/EscQFxxJsQfc9/AcSpqAGbdZrLXwshUWTXsJHMWlE3/+iSIyQ+I+/xtxbBxnqDUpUU3TOOg== 197 | dependencies: 198 | "@babel/runtime" "^7.10.4" 199 | "@changesets/errors" "^0.1.4" 200 | "@changesets/types" "^4.0.1" 201 | "@manypkg/get-packages" "^1.0.1" 202 | fs-extra "^7.0.1" 203 | 204 | "@changesets/read@^0.5.0": 205 | version "0.5.0" 206 | resolved "https://registry.yarnpkg.com/@changesets/read/-/read-0.5.0.tgz#52f7a10f6baebf97172e62035ee8345652c5a1c0" 207 | integrity sha512-A2OJ+vgfvbUaLx2yKyHH+tapa+DUd2NtpFpVuxjUqv0zirjqju20z1bziqaqpIQSf/rXPuoc09vp5w4VakraHg== 208 | dependencies: 209 | "@babel/runtime" "^7.10.4" 210 | "@changesets/git" "^1.1.2" 211 | "@changesets/logger" "^0.0.5" 212 | "@changesets/parse" "^0.3.9" 213 | "@changesets/types" "^4.0.1" 214 | chalk "^2.1.0" 215 | fs-extra "^7.0.1" 216 | p-filter "^2.1.0" 217 | 218 | "@changesets/types@^4.0.1": 219 | version "4.0.1" 220 | resolved "https://registry.yarnpkg.com/@changesets/types/-/types-4.0.1.tgz#85cf3cc32baff0691112d9d15fc21fbe022c9f0a" 221 | integrity sha512-zVfv752D8K2tjyFmxU/vnntQ+dPu+9NupOSguA/2Zuym4tVxRh0ylArgKZ1bOAi2eXfGlZMxJU/kj7uCSI15RQ== 222 | 223 | "@changesets/write@^0.1.5": 224 | version "0.1.5" 225 | resolved "https://registry.yarnpkg.com/@changesets/write/-/write-0.1.5.tgz#97574d95c8e48c3bbb1173802672f9a64d1b7fef" 226 | integrity sha512-AYVSCH7on/Cyzo/8lVfqlsXmyKl3JhbNu9yHApdLPhHAzv5wqoHiZlMDkmd+AA67SRqzK2lDs4BcIojK+uWeIA== 227 | dependencies: 228 | "@babel/runtime" "^7.10.4" 229 | "@changesets/types" "^4.0.1" 230 | fs-extra "^7.0.1" 231 | human-id "^1.0.2" 232 | prettier "^1.19.1" 233 | 234 | "@manypkg/find-root@^1.1.0": 235 | version "1.1.0" 236 | resolved "https://registry.yarnpkg.com/@manypkg/find-root/-/find-root-1.1.0.tgz#a62d8ed1cd7e7d4c11d9d52a8397460b5d4ad29f" 237 | integrity sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA== 238 | dependencies: 239 | "@babel/runtime" "^7.5.5" 240 | "@types/node" "^12.7.1" 241 | find-up "^4.1.0" 242 | fs-extra "^8.1.0" 243 | 244 | "@manypkg/get-packages@^1.0.1": 245 | version "1.1.1" 246 | resolved "https://registry.yarnpkg.com/@manypkg/get-packages/-/get-packages-1.1.1.tgz#7c7e72d0061ab2e61d2ce4da58ce91290a60ac8d" 247 | integrity sha512-J6VClfQSVgR6958eIDTGjfdCrELy1eT+SHeoSMomnvRQVktZMnEA5edIr5ovRFNw5y+Bk/jyoevPzGYod96mhw== 248 | dependencies: 249 | "@babel/runtime" "^7.5.5" 250 | "@manypkg/find-root" "^1.1.0" 251 | fs-extra "^8.1.0" 252 | globby "^11.0.0" 253 | read-yaml-file "^1.1.0" 254 | 255 | "@nodelib/fs.scandir@2.1.5": 256 | version "2.1.5" 257 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 258 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 259 | dependencies: 260 | "@nodelib/fs.stat" "2.0.5" 261 | run-parallel "^1.1.9" 262 | 263 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 264 | version "2.0.5" 265 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 266 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 267 | 268 | "@nodelib/fs.walk@^1.2.3": 269 | version "1.2.8" 270 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 271 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 272 | dependencies: 273 | "@nodelib/fs.scandir" "2.1.5" 274 | fastq "^1.6.0" 275 | 276 | "@primer/primitives@7.10.0": 277 | version "7.10.0" 278 | resolved "https://registry.yarnpkg.com/@primer/primitives/-/primitives-7.10.0.tgz#de0d9648d484184442583564f02d6600b872fa5f" 279 | integrity sha512-DdLHq21e93R9qDHyRuRpytBLY0Up9IwNWMOUgPNW6lRSng4N4+IdUlLS3Ekbasmxfs8Z8vKS8aezeYovQ5qsxQ== 280 | 281 | "@sindresorhus/is@^0.14.0": 282 | version "0.14.0" 283 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" 284 | integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== 285 | 286 | "@szmarczak/http-timer@^1.1.2": 287 | version "1.1.2" 288 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" 289 | integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== 290 | dependencies: 291 | defer-to-connect "^1.0.1" 292 | 293 | "@types/minimist@^1.2.0": 294 | version "1.2.2" 295 | resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" 296 | integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== 297 | 298 | "@types/node@^12.7.1": 299 | version "12.20.33" 300 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.33.tgz#24927446e8b7669d10abacedd16077359678f436" 301 | integrity sha512-5XmYX2GECSa+CxMYaFsr2mrql71Q4EvHjKS+ox/SiwSdaASMoBIWE6UmZqFO+VX1jIcsYLStI4FFoB6V7FeIYw== 302 | 303 | "@types/normalize-package-data@^2.4.0": 304 | version "2.4.1" 305 | resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" 306 | integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== 307 | 308 | "@types/semver@^6.0.0": 309 | version "6.2.3" 310 | resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.2.3.tgz#5798ecf1bec94eaa64db39ee52808ec0693315aa" 311 | integrity sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A== 312 | 313 | abbrev@1: 314 | version "1.1.1" 315 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 316 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 317 | 318 | ansi-align@^2.0.0: 319 | version "2.0.0" 320 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 321 | integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= 322 | dependencies: 323 | string-width "^2.0.0" 324 | 325 | ansi-align@^3.0.0: 326 | version "3.0.1" 327 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" 328 | integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== 329 | dependencies: 330 | string-width "^4.1.0" 331 | 332 | ansi-colors@^4.1.1: 333 | version "4.1.1" 334 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 335 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 336 | 337 | ansi-regex@^3.0.0: 338 | version "3.0.1" 339 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" 340 | integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== 341 | 342 | ansi-regex@^5.0.1: 343 | version "5.0.1" 344 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 345 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 346 | 347 | ansi-styles@^3.2.1: 348 | version "3.2.1" 349 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 350 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 351 | dependencies: 352 | color-convert "^1.9.0" 353 | 354 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 355 | version "4.3.0" 356 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 357 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 358 | dependencies: 359 | color-convert "^2.0.1" 360 | 361 | anymatch@~3.1.2: 362 | version "3.1.2" 363 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 364 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 365 | dependencies: 366 | normalize-path "^3.0.0" 367 | picomatch "^2.0.4" 368 | 369 | argparse@^1.0.7: 370 | version "1.0.10" 371 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 372 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 373 | dependencies: 374 | sprintf-js "~1.0.2" 375 | 376 | array-union@^2.1.0: 377 | version "2.1.0" 378 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 379 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 380 | 381 | arrify@^1.0.1: 382 | version "1.0.1" 383 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 384 | integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= 385 | 386 | azure-devops-node-api@^11.0.1: 387 | version "11.0.1" 388 | resolved "https://registry.yarnpkg.com/azure-devops-node-api/-/azure-devops-node-api-11.0.1.tgz#b7ec4783230e1de8fc972b23effe7ed2ebac17ff" 389 | integrity sha512-YMdjAw9l5p/6leiyIloxj3k7VIvYThKjvqgiQn88r3nhT93ENwsoDS3A83CyJ4uTWzCZ5f5jCi6c27rTU5Pz+A== 390 | dependencies: 391 | tunnel "0.0.6" 392 | typed-rest-client "^1.8.4" 393 | 394 | balanced-match@^1.0.0: 395 | version "1.0.2" 396 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 397 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 398 | 399 | better-path-resolve@1.0.0: 400 | version "1.0.0" 401 | resolved "https://registry.yarnpkg.com/better-path-resolve/-/better-path-resolve-1.0.0.tgz#13a35a1104cdd48a7b74bf8758f96a1ee613f99d" 402 | integrity sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g== 403 | dependencies: 404 | is-windows "^1.0.0" 405 | 406 | binary-extensions@^2.0.0: 407 | version "2.2.0" 408 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 409 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 410 | 411 | boolbase@^1.0.0: 412 | version "1.0.0" 413 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 414 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= 415 | 416 | boxen@^1.3.0: 417 | version "1.3.0" 418 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 419 | integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== 420 | dependencies: 421 | ansi-align "^2.0.0" 422 | camelcase "^4.0.0" 423 | chalk "^2.0.1" 424 | cli-boxes "^1.0.0" 425 | string-width "^2.0.0" 426 | term-size "^1.2.0" 427 | widest-line "^2.0.0" 428 | 429 | boxen@^5.0.0: 430 | version "5.1.2" 431 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50" 432 | integrity sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== 433 | dependencies: 434 | ansi-align "^3.0.0" 435 | camelcase "^6.2.0" 436 | chalk "^4.1.0" 437 | cli-boxes "^2.2.1" 438 | string-width "^4.2.2" 439 | type-fest "^0.20.2" 440 | widest-line "^3.1.0" 441 | wrap-ansi "^7.0.0" 442 | 443 | brace-expansion@^1.1.7: 444 | version "1.1.11" 445 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 446 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 447 | dependencies: 448 | balanced-match "^1.0.0" 449 | concat-map "0.0.1" 450 | 451 | braces@^3.0.1, braces@~3.0.2: 452 | version "3.0.2" 453 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 454 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 455 | dependencies: 456 | fill-range "^7.0.1" 457 | 458 | breakword@^1.0.5: 459 | version "1.0.5" 460 | resolved "https://registry.yarnpkg.com/breakword/-/breakword-1.0.5.tgz#fd420a417f55016736b5b615161cae1c8f819810" 461 | integrity sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg== 462 | dependencies: 463 | wcwidth "^1.0.1" 464 | 465 | buffer-crc32@~0.2.3: 466 | version "0.2.13" 467 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 468 | integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= 469 | 470 | cacheable-request@^6.0.0: 471 | version "6.1.0" 472 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" 473 | integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== 474 | dependencies: 475 | clone-response "^1.0.2" 476 | get-stream "^5.1.0" 477 | http-cache-semantics "^4.0.0" 478 | keyv "^3.0.0" 479 | lowercase-keys "^2.0.0" 480 | normalize-url "^4.1.0" 481 | responselike "^1.0.2" 482 | 483 | call-bind@^1.0.0: 484 | version "1.0.2" 485 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 486 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 487 | dependencies: 488 | function-bind "^1.1.1" 489 | get-intrinsic "^1.0.2" 490 | 491 | camelcase-keys@^6.2.2: 492 | version "6.2.2" 493 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" 494 | integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== 495 | dependencies: 496 | camelcase "^5.3.1" 497 | map-obj "^4.0.0" 498 | quick-lru "^4.0.1" 499 | 500 | camelcase@^4.0.0: 501 | version "4.1.0" 502 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 503 | integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 504 | 505 | camelcase@^5.0.0, camelcase@^5.3.1: 506 | version "5.3.1" 507 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 508 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 509 | 510 | camelcase@^6.2.0: 511 | version "6.2.0" 512 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" 513 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== 514 | 515 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.2: 516 | version "2.4.2" 517 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 518 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 519 | dependencies: 520 | ansi-styles "^3.2.1" 521 | escape-string-regexp "^1.0.5" 522 | supports-color "^5.3.0" 523 | 524 | chalk@^3.0.0: 525 | version "3.0.0" 526 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 527 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 528 | dependencies: 529 | ansi-styles "^4.1.0" 530 | supports-color "^7.1.0" 531 | 532 | chalk@^4.1.0: 533 | version "4.1.2" 534 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 535 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 536 | dependencies: 537 | ansi-styles "^4.1.0" 538 | supports-color "^7.1.0" 539 | 540 | chardet@^0.7.0: 541 | version "0.7.0" 542 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 543 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 544 | 545 | cheerio-select@^1.5.0: 546 | version "1.5.0" 547 | resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-1.5.0.tgz#faf3daeb31b17c5e1a9dabcee288aaf8aafa5823" 548 | integrity sha512-qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg== 549 | dependencies: 550 | css-select "^4.1.3" 551 | css-what "^5.0.1" 552 | domelementtype "^2.2.0" 553 | domhandler "^4.2.0" 554 | domutils "^2.7.0" 555 | 556 | cheerio@^1.0.0-rc.9: 557 | version "1.0.0-rc.10" 558 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.10.tgz#2ba3dcdfcc26e7956fc1f440e61d51c643379f3e" 559 | integrity sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw== 560 | dependencies: 561 | cheerio-select "^1.5.0" 562 | dom-serializer "^1.3.2" 563 | domhandler "^4.2.0" 564 | htmlparser2 "^6.1.0" 565 | parse5 "^6.0.1" 566 | parse5-htmlparser2-tree-adapter "^6.0.1" 567 | tslib "^2.2.0" 568 | 569 | chokidar@^3.2.2: 570 | version "3.5.2" 571 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" 572 | integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== 573 | dependencies: 574 | anymatch "~3.1.2" 575 | braces "~3.0.2" 576 | glob-parent "~5.1.2" 577 | is-binary-path "~2.1.0" 578 | is-glob "~4.0.1" 579 | normalize-path "~3.0.0" 580 | readdirp "~3.6.0" 581 | optionalDependencies: 582 | fsevents "~2.3.2" 583 | 584 | chroma-js@^2.1.2: 585 | version "2.1.2" 586 | resolved "https://registry.yarnpkg.com/chroma-js/-/chroma-js-2.1.2.tgz#1075cb9ae25bcb2017c109394168b5cf3aa500ec" 587 | integrity sha512-ri/ouYDWuxfus3UcaMxC1Tfp3IE9K5iQzxc2hSxbBRVNQFut1UuGAsZmiAf2mOUubzGJwgMSv9lHg+XqLaz1QQ== 588 | dependencies: 589 | cross-env "^6.0.3" 590 | 591 | ci-info@^2.0.0: 592 | version "2.0.0" 593 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 594 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 595 | 596 | cli-boxes@^1.0.0: 597 | version "1.0.0" 598 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 599 | integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= 600 | 601 | cli-boxes@^2.2.1: 602 | version "2.2.1" 603 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" 604 | integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== 605 | 606 | cliui@^6.0.0: 607 | version "6.0.0" 608 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" 609 | integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== 610 | dependencies: 611 | string-width "^4.2.0" 612 | strip-ansi "^6.0.0" 613 | wrap-ansi "^6.2.0" 614 | 615 | clone-response@^1.0.2: 616 | version "1.0.2" 617 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 618 | integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= 619 | dependencies: 620 | mimic-response "^1.0.0" 621 | 622 | clone@^1.0.2: 623 | version "1.0.4" 624 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 625 | integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= 626 | 627 | color-convert@^1.9.0, color-convert@^1.9.3: 628 | version "1.9.3" 629 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 630 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 631 | dependencies: 632 | color-name "1.1.3" 633 | 634 | color-convert@^2.0.1: 635 | version "2.0.1" 636 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 637 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 638 | dependencies: 639 | color-name "~1.1.4" 640 | 641 | color-name@1.1.3: 642 | version "1.1.3" 643 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 644 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 645 | 646 | color-name@^1.0.0, color-name@~1.1.4: 647 | version "1.1.4" 648 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 649 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 650 | 651 | color-string@^1.6.0: 652 | version "1.6.0" 653 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.6.0.tgz#c3915f61fe267672cb7e1e064c9d692219f6c312" 654 | integrity sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA== 655 | dependencies: 656 | color-name "^1.0.0" 657 | simple-swizzle "^0.2.2" 658 | 659 | color@^3.1.2: 660 | version "3.2.1" 661 | resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" 662 | integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== 663 | dependencies: 664 | color-convert "^1.9.3" 665 | color-string "^1.6.0" 666 | 667 | commander@^6.1.0: 668 | version "6.2.1" 669 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" 670 | integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== 671 | 672 | concat-map@0.0.1: 673 | version "0.0.1" 674 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 675 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 676 | 677 | configstore@^5.0.1: 678 | version "5.0.1" 679 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" 680 | integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== 681 | dependencies: 682 | dot-prop "^5.2.0" 683 | graceful-fs "^4.1.2" 684 | make-dir "^3.0.0" 685 | unique-string "^2.0.0" 686 | write-file-atomic "^3.0.0" 687 | xdg-basedir "^4.0.0" 688 | 689 | cross-env@^6.0.3: 690 | version "6.0.3" 691 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-6.0.3.tgz#4256b71e49b3a40637a0ce70768a6ef5c72ae941" 692 | integrity sha512-+KqxF6LCvfhWvADcDPqo64yVIB31gv/jQulX2NGzKS/g3GEVz6/pt4wjHFtFWsHMddebWD/sDthJemzM4MaAag== 693 | dependencies: 694 | cross-spawn "^7.0.0" 695 | 696 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 697 | version "5.1.0" 698 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 699 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 700 | dependencies: 701 | lru-cache "^4.0.1" 702 | shebang-command "^1.2.0" 703 | which "^1.2.9" 704 | 705 | cross-spawn@^7.0.0: 706 | version "7.0.3" 707 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 708 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 709 | dependencies: 710 | path-key "^3.1.0" 711 | shebang-command "^2.0.0" 712 | which "^2.0.1" 713 | 714 | crypto-random-string@^2.0.0: 715 | version "2.0.0" 716 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" 717 | integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== 718 | 719 | css-select@^4.1.3: 720 | version "4.1.3" 721 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.1.3.tgz#a70440f70317f2669118ad74ff105e65849c7067" 722 | integrity sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA== 723 | dependencies: 724 | boolbase "^1.0.0" 725 | css-what "^5.0.0" 726 | domhandler "^4.2.0" 727 | domutils "^2.6.0" 728 | nth-check "^2.0.0" 729 | 730 | css-what@^5.0.0, css-what@^5.0.1: 731 | version "5.1.0" 732 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-5.1.0.tgz#3f7b707aadf633baf62c2ceb8579b545bb40f7fe" 733 | integrity sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw== 734 | 735 | csv-generate@^3.4.3: 736 | version "3.4.3" 737 | resolved "https://registry.yarnpkg.com/csv-generate/-/csv-generate-3.4.3.tgz#bc42d943b45aea52afa896874291da4b9108ffff" 738 | integrity sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw== 739 | 740 | csv-parse@^4.16.3: 741 | version "4.16.3" 742 | resolved "https://registry.yarnpkg.com/csv-parse/-/csv-parse-4.16.3.tgz#7ca624d517212ebc520a36873c3478fa66efbaf7" 743 | integrity sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg== 744 | 745 | csv-stringify@^5.6.5: 746 | version "5.6.5" 747 | resolved "https://registry.yarnpkg.com/csv-stringify/-/csv-stringify-5.6.5.tgz#c6d74badda4b49a79bf4e72f91cce1e33b94de00" 748 | integrity sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A== 749 | 750 | csv@^5.3.1: 751 | version "5.5.3" 752 | resolved "https://registry.yarnpkg.com/csv/-/csv-5.5.3.tgz#cd26c1e45eae00ce6a9b7b27dcb94955ec95207d" 753 | integrity sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g== 754 | dependencies: 755 | csv-generate "^3.4.3" 756 | csv-parse "^4.16.3" 757 | csv-stringify "^5.6.5" 758 | stream-transform "^2.1.3" 759 | 760 | dataloader@^1.4.0: 761 | version "1.4.0" 762 | resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-1.4.0.tgz#bca11d867f5d3f1b9ed9f737bd15970c65dff5c8" 763 | integrity sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw== 764 | 765 | debug@^2.2.0: 766 | version "2.6.9" 767 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 768 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 769 | dependencies: 770 | ms "2.0.0" 771 | 772 | debug@^3.2.6: 773 | version "3.2.7" 774 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 775 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 776 | dependencies: 777 | ms "^2.1.1" 778 | 779 | decamelize-keys@^1.1.0: 780 | version "1.1.0" 781 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 782 | integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= 783 | dependencies: 784 | decamelize "^1.1.0" 785 | map-obj "^1.0.0" 786 | 787 | decamelize@^1.1.0, decamelize@^1.2.0: 788 | version "1.2.0" 789 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 790 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 791 | 792 | decompress-response@^3.3.0: 793 | version "3.3.0" 794 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 795 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 796 | dependencies: 797 | mimic-response "^1.0.0" 798 | 799 | deep-extend@^0.6.0: 800 | version "0.6.0" 801 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 802 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 803 | 804 | defaults@^1.0.3: 805 | version "1.0.3" 806 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 807 | integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= 808 | dependencies: 809 | clone "^1.0.2" 810 | 811 | defer-to-connect@^1.0.1: 812 | version "1.1.3" 813 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" 814 | integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== 815 | 816 | denodeify@^1.2.1: 817 | version "1.2.1" 818 | resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" 819 | integrity sha1-OjYof1A05pnnV3kBBSwubJQlFjE= 820 | 821 | detect-indent@^6.0.0: 822 | version "6.1.0" 823 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" 824 | integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== 825 | 826 | dir-glob@^3.0.1: 827 | version "3.0.1" 828 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 829 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 830 | dependencies: 831 | path-type "^4.0.0" 832 | 833 | dom-serializer@^1.0.1, dom-serializer@^1.3.2: 834 | version "1.3.2" 835 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz#6206437d32ceefaec7161803230c7a20bc1b4d91" 836 | integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== 837 | dependencies: 838 | domelementtype "^2.0.1" 839 | domhandler "^4.2.0" 840 | entities "^2.0.0" 841 | 842 | domelementtype@^2.0.1, domelementtype@^2.2.0: 843 | version "2.2.0" 844 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" 845 | integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== 846 | 847 | domhandler@^4.0.0, domhandler@^4.2.0: 848 | version "4.2.2" 849 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.2.tgz#e825d721d19a86b8c201a35264e226c678ee755f" 850 | integrity sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w== 851 | dependencies: 852 | domelementtype "^2.2.0" 853 | 854 | domutils@^2.5.2, domutils@^2.6.0, domutils@^2.7.0: 855 | version "2.8.0" 856 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" 857 | integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== 858 | dependencies: 859 | dom-serializer "^1.0.1" 860 | domelementtype "^2.2.0" 861 | domhandler "^4.2.0" 862 | 863 | dot-prop@^5.2.0: 864 | version "5.3.0" 865 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 866 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 867 | dependencies: 868 | is-obj "^2.0.0" 869 | 870 | dotenv@^8.1.0: 871 | version "8.6.0" 872 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b" 873 | integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g== 874 | 875 | duplexer3@^0.1.4: 876 | version "0.1.4" 877 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 878 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 879 | 880 | emoji-regex@^8.0.0: 881 | version "8.0.0" 882 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 883 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 884 | 885 | end-of-stream@^1.1.0: 886 | version "1.4.4" 887 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 888 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 889 | dependencies: 890 | once "^1.4.0" 891 | 892 | enquirer@^2.3.0: 893 | version "2.3.6" 894 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 895 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 896 | dependencies: 897 | ansi-colors "^4.1.1" 898 | 899 | entities@^2.0.0: 900 | version "2.2.0" 901 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" 902 | integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== 903 | 904 | entities@~2.0.0: 905 | version "2.0.3" 906 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" 907 | integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== 908 | 909 | error-ex@^1.3.1: 910 | version "1.3.2" 911 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 912 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 913 | dependencies: 914 | is-arrayish "^0.2.1" 915 | 916 | escape-goat@^2.0.0: 917 | version "2.1.1" 918 | resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" 919 | integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== 920 | 921 | escape-string-regexp@^1.0.5: 922 | version "1.0.5" 923 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 924 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 925 | 926 | esprima@^4.0.0: 927 | version "4.0.1" 928 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 929 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 930 | 931 | execa@^0.7.0: 932 | version "0.7.0" 933 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 934 | integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= 935 | dependencies: 936 | cross-spawn "^5.0.1" 937 | get-stream "^3.0.0" 938 | is-stream "^1.1.0" 939 | npm-run-path "^2.0.0" 940 | p-finally "^1.0.0" 941 | signal-exit "^3.0.0" 942 | strip-eof "^1.0.0" 943 | 944 | extendable-error@^0.1.5: 945 | version "0.1.7" 946 | resolved "https://registry.yarnpkg.com/extendable-error/-/extendable-error-0.1.7.tgz#60b9adf206264ac920058a7395685ae4670c2b96" 947 | integrity sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg== 948 | 949 | external-editor@^3.1.0: 950 | version "3.1.0" 951 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" 952 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== 953 | dependencies: 954 | chardet "^0.7.0" 955 | iconv-lite "^0.4.24" 956 | tmp "^0.0.33" 957 | 958 | fast-glob@^3.1.1: 959 | version "3.2.7" 960 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" 961 | integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== 962 | dependencies: 963 | "@nodelib/fs.stat" "^2.0.2" 964 | "@nodelib/fs.walk" "^1.2.3" 965 | glob-parent "^5.1.2" 966 | merge2 "^1.3.0" 967 | micromatch "^4.0.4" 968 | 969 | fastq@^1.6.0: 970 | version "1.13.0" 971 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 972 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 973 | dependencies: 974 | reusify "^1.0.4" 975 | 976 | fd-slicer@~1.1.0: 977 | version "1.1.0" 978 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" 979 | integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= 980 | dependencies: 981 | pend "~1.2.0" 982 | 983 | fill-range@^7.0.1: 984 | version "7.0.1" 985 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 986 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 987 | dependencies: 988 | to-regex-range "^5.0.1" 989 | 990 | find-up@^4.0.0, find-up@^4.1.0: 991 | version "4.1.0" 992 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 993 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 994 | dependencies: 995 | locate-path "^5.0.0" 996 | path-exists "^4.0.0" 997 | 998 | find-up@^5.0.0: 999 | version "5.0.0" 1000 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1001 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1002 | dependencies: 1003 | locate-path "^6.0.0" 1004 | path-exists "^4.0.0" 1005 | 1006 | find-yarn-workspace-root2@1.2.16: 1007 | version "1.2.16" 1008 | resolved "https://registry.yarnpkg.com/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz#60287009dd2f324f59646bdb4b7610a6b301c2a9" 1009 | integrity sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA== 1010 | dependencies: 1011 | micromatch "^4.0.2" 1012 | pkg-dir "^4.2.0" 1013 | 1014 | fs-extra@^7.0.1: 1015 | version "7.0.1" 1016 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" 1017 | integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== 1018 | dependencies: 1019 | graceful-fs "^4.1.2" 1020 | jsonfile "^4.0.0" 1021 | universalify "^0.1.0" 1022 | 1023 | fs-extra@^8.1.0: 1024 | version "8.1.0" 1025 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 1026 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 1027 | dependencies: 1028 | graceful-fs "^4.2.0" 1029 | jsonfile "^4.0.0" 1030 | universalify "^0.1.0" 1031 | 1032 | fs.realpath@^1.0.0: 1033 | version "1.0.0" 1034 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1035 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1036 | 1037 | fsevents@~2.3.2: 1038 | version "2.3.2" 1039 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1040 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1041 | 1042 | function-bind@^1.1.1: 1043 | version "1.1.1" 1044 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1045 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1046 | 1047 | get-caller-file@^2.0.1: 1048 | version "2.0.5" 1049 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1050 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1051 | 1052 | get-intrinsic@^1.0.2: 1053 | version "1.1.3" 1054 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" 1055 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== 1056 | dependencies: 1057 | function-bind "^1.1.1" 1058 | has "^1.0.3" 1059 | has-symbols "^1.0.3" 1060 | 1061 | get-stream@^3.0.0: 1062 | version "3.0.0" 1063 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1064 | integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= 1065 | 1066 | get-stream@^4.1.0: 1067 | version "4.1.0" 1068 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1069 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 1070 | dependencies: 1071 | pump "^3.0.0" 1072 | 1073 | get-stream@^5.1.0: 1074 | version "5.2.0" 1075 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 1076 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 1077 | dependencies: 1078 | pump "^3.0.0" 1079 | 1080 | glob-parent@^5.1.2, glob-parent@~5.1.2: 1081 | version "5.1.2" 1082 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1083 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1084 | dependencies: 1085 | is-glob "^4.0.1" 1086 | 1087 | glob@^7.0.6, glob@^7.1.3: 1088 | version "7.2.0" 1089 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1090 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1091 | dependencies: 1092 | fs.realpath "^1.0.0" 1093 | inflight "^1.0.4" 1094 | inherits "2" 1095 | minimatch "^3.0.4" 1096 | once "^1.3.0" 1097 | path-is-absolute "^1.0.0" 1098 | 1099 | global-dirs@^3.0.0: 1100 | version "3.0.0" 1101 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz#70a76fe84ea315ab37b1f5576cbde7d48ef72686" 1102 | integrity sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA== 1103 | dependencies: 1104 | ini "2.0.0" 1105 | 1106 | globby@^11.0.0: 1107 | version "11.0.4" 1108 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" 1109 | integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== 1110 | dependencies: 1111 | array-union "^2.1.0" 1112 | dir-glob "^3.0.1" 1113 | fast-glob "^3.1.1" 1114 | ignore "^5.1.4" 1115 | merge2 "^1.3.0" 1116 | slash "^3.0.0" 1117 | 1118 | got@^9.6.0: 1119 | version "9.6.0" 1120 | resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" 1121 | integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== 1122 | dependencies: 1123 | "@sindresorhus/is" "^0.14.0" 1124 | "@szmarczak/http-timer" "^1.1.2" 1125 | cacheable-request "^6.0.0" 1126 | decompress-response "^3.3.0" 1127 | duplexer3 "^0.1.4" 1128 | get-stream "^4.1.0" 1129 | lowercase-keys "^1.0.1" 1130 | mimic-response "^1.0.1" 1131 | p-cancelable "^1.0.0" 1132 | to-readable-stream "^1.0.0" 1133 | url-parse-lax "^3.0.0" 1134 | 1135 | graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0: 1136 | version "4.2.8" 1137 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" 1138 | integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== 1139 | 1140 | grapheme-splitter@^1.0.4: 1141 | version "1.0.4" 1142 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 1143 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1144 | 1145 | hard-rejection@^2.1.0: 1146 | version "2.1.0" 1147 | resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" 1148 | integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== 1149 | 1150 | has-flag@^3.0.0: 1151 | version "3.0.0" 1152 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1153 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1154 | 1155 | has-flag@^4.0.0: 1156 | version "4.0.0" 1157 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1158 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1159 | 1160 | has-symbols@^1.0.3: 1161 | version "1.0.3" 1162 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1163 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1164 | 1165 | has-yarn@^2.1.0: 1166 | version "2.1.0" 1167 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" 1168 | integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== 1169 | 1170 | has@^1.0.3: 1171 | version "1.0.3" 1172 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1173 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1174 | dependencies: 1175 | function-bind "^1.1.1" 1176 | 1177 | hosted-git-info@^2.1.4: 1178 | version "2.8.9" 1179 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 1180 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1181 | 1182 | hosted-git-info@^4.0.2: 1183 | version "4.0.2" 1184 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.0.2.tgz#5e425507eede4fea846b7262f0838456c4209961" 1185 | integrity sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg== 1186 | dependencies: 1187 | lru-cache "^6.0.0" 1188 | 1189 | htmlparser2@^6.1.0: 1190 | version "6.1.0" 1191 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" 1192 | integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== 1193 | dependencies: 1194 | domelementtype "^2.0.1" 1195 | domhandler "^4.0.0" 1196 | domutils "^2.5.2" 1197 | entities "^2.0.0" 1198 | 1199 | http-cache-semantics@^4.0.0: 1200 | version "4.1.0" 1201 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 1202 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 1203 | 1204 | human-id@^1.0.2: 1205 | version "1.0.2" 1206 | resolved "https://registry.yarnpkg.com/human-id/-/human-id-1.0.2.tgz#e654d4b2b0d8b07e45da9f6020d8af17ec0a5df3" 1207 | integrity sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw== 1208 | 1209 | iconv-lite@^0.4.24: 1210 | version "0.4.24" 1211 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1212 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1213 | dependencies: 1214 | safer-buffer ">= 2.1.2 < 3" 1215 | 1216 | ignore-by-default@^1.0.1: 1217 | version "1.0.1" 1218 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1219 | integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= 1220 | 1221 | ignore@^5.1.4: 1222 | version "5.1.8" 1223 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 1224 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 1225 | 1226 | import-lazy@^2.1.0: 1227 | version "2.1.0" 1228 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1229 | integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= 1230 | 1231 | imurmurhash@^0.1.4: 1232 | version "0.1.4" 1233 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1234 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1235 | 1236 | indent-string@^4.0.0: 1237 | version "4.0.0" 1238 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1239 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1240 | 1241 | inflight@^1.0.4: 1242 | version "1.0.6" 1243 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1244 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1245 | dependencies: 1246 | once "^1.3.0" 1247 | wrappy "1" 1248 | 1249 | inherits@2: 1250 | version "2.0.4" 1251 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1252 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1253 | 1254 | ini@2.0.0: 1255 | version "2.0.0" 1256 | resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" 1257 | integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== 1258 | 1259 | ini@~1.3.0: 1260 | version "1.3.8" 1261 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1262 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1263 | 1264 | is-arrayish@^0.2.1: 1265 | version "0.2.1" 1266 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1267 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1268 | 1269 | is-arrayish@^0.3.1: 1270 | version "0.3.2" 1271 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 1272 | integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 1273 | 1274 | is-binary-path@~2.1.0: 1275 | version "2.1.0" 1276 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1277 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1278 | dependencies: 1279 | binary-extensions "^2.0.0" 1280 | 1281 | is-ci@^2.0.0: 1282 | version "2.0.0" 1283 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 1284 | integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 1285 | dependencies: 1286 | ci-info "^2.0.0" 1287 | 1288 | is-core-module@^2.2.0: 1289 | version "2.8.0" 1290 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz#0321336c3d0925e497fd97f5d95cb114a5ccd548" 1291 | integrity sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw== 1292 | dependencies: 1293 | has "^1.0.3" 1294 | 1295 | is-extglob@^2.1.1: 1296 | version "2.1.1" 1297 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1298 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1299 | 1300 | is-fullwidth-code-point@^2.0.0: 1301 | version "2.0.0" 1302 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1303 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1304 | 1305 | is-fullwidth-code-point@^3.0.0: 1306 | version "3.0.0" 1307 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1308 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1309 | 1310 | is-glob@^4.0.1, is-glob@~4.0.1: 1311 | version "4.0.3" 1312 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1313 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1314 | dependencies: 1315 | is-extglob "^2.1.1" 1316 | 1317 | is-installed-globally@^0.4.0: 1318 | version "0.4.0" 1319 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" 1320 | integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== 1321 | dependencies: 1322 | global-dirs "^3.0.0" 1323 | is-path-inside "^3.0.2" 1324 | 1325 | is-npm@^5.0.0: 1326 | version "5.0.0" 1327 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-5.0.0.tgz#43e8d65cc56e1b67f8d47262cf667099193f45a8" 1328 | integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== 1329 | 1330 | is-number@^7.0.0: 1331 | version "7.0.0" 1332 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1333 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1334 | 1335 | is-obj@^2.0.0: 1336 | version "2.0.0" 1337 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 1338 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 1339 | 1340 | is-path-inside@^3.0.2: 1341 | version "3.0.3" 1342 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1343 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1344 | 1345 | is-plain-obj@^1.1.0: 1346 | version "1.1.0" 1347 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1348 | integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= 1349 | 1350 | is-stream@^1.1.0: 1351 | version "1.1.0" 1352 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1353 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1354 | 1355 | is-subdir@^1.1.1: 1356 | version "1.2.0" 1357 | resolved "https://registry.yarnpkg.com/is-subdir/-/is-subdir-1.2.0.tgz#b791cd28fab5202e91a08280d51d9d7254fd20d4" 1358 | integrity sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw== 1359 | dependencies: 1360 | better-path-resolve "1.0.0" 1361 | 1362 | is-typedarray@^1.0.0: 1363 | version "1.0.0" 1364 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1365 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1366 | 1367 | is-windows@^1.0.0: 1368 | version "1.0.2" 1369 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1370 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1371 | 1372 | is-yarn-global@^0.3.0: 1373 | version "0.3.0" 1374 | resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" 1375 | integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== 1376 | 1377 | isexe@^2.0.0: 1378 | version "2.0.0" 1379 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1380 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1381 | 1382 | js-tokens@^4.0.0: 1383 | version "4.0.0" 1384 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1385 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1386 | 1387 | js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.6.1: 1388 | version "3.14.1" 1389 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 1390 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1391 | dependencies: 1392 | argparse "^1.0.7" 1393 | esprima "^4.0.0" 1394 | 1395 | json-buffer@3.0.0: 1396 | version "3.0.0" 1397 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 1398 | integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= 1399 | 1400 | json-parse-even-better-errors@^2.3.0: 1401 | version "2.3.1" 1402 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1403 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1404 | 1405 | jsonfile@^4.0.0: 1406 | version "4.0.0" 1407 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1408 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 1409 | optionalDependencies: 1410 | graceful-fs "^4.1.6" 1411 | 1412 | keyv@^3.0.0: 1413 | version "3.1.0" 1414 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" 1415 | integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== 1416 | dependencies: 1417 | json-buffer "3.0.0" 1418 | 1419 | kind-of@^6.0.3: 1420 | version "6.0.3" 1421 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 1422 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 1423 | 1424 | latest-version@^5.1.0: 1425 | version "5.1.0" 1426 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" 1427 | integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== 1428 | dependencies: 1429 | package-json "^6.3.0" 1430 | 1431 | leven@^3.1.0: 1432 | version "3.1.0" 1433 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 1434 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 1435 | 1436 | lines-and-columns@^1.1.6: 1437 | version "1.1.6" 1438 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 1439 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 1440 | 1441 | linkify-it@^2.0.0: 1442 | version "2.2.0" 1443 | resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz#e3b54697e78bf915c70a38acd78fd09e0058b1cf" 1444 | integrity sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw== 1445 | dependencies: 1446 | uc.micro "^1.0.1" 1447 | 1448 | load-yaml-file@^0.2.0: 1449 | version "0.2.0" 1450 | resolved "https://registry.yarnpkg.com/load-yaml-file/-/load-yaml-file-0.2.0.tgz#af854edaf2bea89346c07549122753c07372f64d" 1451 | integrity sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw== 1452 | dependencies: 1453 | graceful-fs "^4.1.5" 1454 | js-yaml "^3.13.0" 1455 | pify "^4.0.1" 1456 | strip-bom "^3.0.0" 1457 | 1458 | locate-path@^5.0.0: 1459 | version "5.0.0" 1460 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1461 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1462 | dependencies: 1463 | p-locate "^4.1.0" 1464 | 1465 | locate-path@^6.0.0: 1466 | version "6.0.0" 1467 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1468 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1469 | dependencies: 1470 | p-locate "^5.0.0" 1471 | 1472 | lodash.startcase@^4.4.0: 1473 | version "4.4.0" 1474 | resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" 1475 | integrity sha1-lDbjTtJgk+1/+uGTYUQ1CRXZrdg= 1476 | 1477 | lodash@^4.17.15: 1478 | version "4.17.21" 1479 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1480 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1481 | 1482 | lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: 1483 | version "1.0.1" 1484 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1485 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 1486 | 1487 | lowercase-keys@^2.0.0: 1488 | version "2.0.0" 1489 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" 1490 | integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== 1491 | 1492 | lru-cache@^4.0.1: 1493 | version "4.1.5" 1494 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 1495 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 1496 | dependencies: 1497 | pseudomap "^1.0.2" 1498 | yallist "^2.1.2" 1499 | 1500 | lru-cache@^6.0.0: 1501 | version "6.0.0" 1502 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1503 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1504 | dependencies: 1505 | yallist "^4.0.0" 1506 | 1507 | make-dir@^3.0.0: 1508 | version "3.1.0" 1509 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 1510 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 1511 | dependencies: 1512 | semver "^6.0.0" 1513 | 1514 | map-obj@^1.0.0: 1515 | version "1.0.1" 1516 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1517 | integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= 1518 | 1519 | map-obj@^4.0.0: 1520 | version "4.3.0" 1521 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" 1522 | integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== 1523 | 1524 | markdown-it@^10.0.0: 1525 | version "10.0.0" 1526 | resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-10.0.0.tgz#abfc64f141b1722d663402044e43927f1f50a8dc" 1527 | integrity sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg== 1528 | dependencies: 1529 | argparse "^1.0.7" 1530 | entities "~2.0.0" 1531 | linkify-it "^2.0.0" 1532 | mdurl "^1.0.1" 1533 | uc.micro "^1.0.5" 1534 | 1535 | mdurl@^1.0.1: 1536 | version "1.0.1" 1537 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" 1538 | integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= 1539 | 1540 | meow@^6.0.0: 1541 | version "6.1.1" 1542 | resolved "https://registry.yarnpkg.com/meow/-/meow-6.1.1.tgz#1ad64c4b76b2a24dfb2f635fddcadf320d251467" 1543 | integrity sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg== 1544 | dependencies: 1545 | "@types/minimist" "^1.2.0" 1546 | camelcase-keys "^6.2.2" 1547 | decamelize-keys "^1.1.0" 1548 | hard-rejection "^2.1.0" 1549 | minimist-options "^4.0.2" 1550 | normalize-package-data "^2.5.0" 1551 | read-pkg-up "^7.0.1" 1552 | redent "^3.0.0" 1553 | trim-newlines "^3.0.0" 1554 | type-fest "^0.13.1" 1555 | yargs-parser "^18.1.3" 1556 | 1557 | merge2@^1.3.0: 1558 | version "1.4.1" 1559 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1560 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1561 | 1562 | micromatch@^4.0.2, micromatch@^4.0.4: 1563 | version "4.0.4" 1564 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 1565 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 1566 | dependencies: 1567 | braces "^3.0.1" 1568 | picomatch "^2.2.3" 1569 | 1570 | mime@^1.3.4: 1571 | version "1.6.0" 1572 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 1573 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 1574 | 1575 | mimic-response@^1.0.0, mimic-response@^1.0.1: 1576 | version "1.0.1" 1577 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1578 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 1579 | 1580 | min-indent@^1.0.0: 1581 | version "1.0.1" 1582 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 1583 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 1584 | 1585 | minimatch@^3.0.3, minimatch@^3.0.4: 1586 | version "3.1.2" 1587 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1588 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1589 | dependencies: 1590 | brace-expansion "^1.1.7" 1591 | 1592 | minimist-options@^4.0.2: 1593 | version "4.1.0" 1594 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" 1595 | integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== 1596 | dependencies: 1597 | arrify "^1.0.1" 1598 | is-plain-obj "^1.1.0" 1599 | kind-of "^6.0.3" 1600 | 1601 | minimist@^1.2.0: 1602 | version "1.2.6" 1603 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1604 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1605 | 1606 | mixme@^0.5.1: 1607 | version "0.5.4" 1608 | resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.5.4.tgz#8cb3bd0cd32a513c161bf1ca99d143f0bcf2eff3" 1609 | integrity sha512-3KYa4m4Vlqx98GPdOHghxSdNtTvcP8E0kkaJ5Dlh+h2DRzF7zpuVVcA8B0QpKd11YJeP9QQ7ASkKzOeu195Wzw== 1610 | 1611 | ms@2.0.0: 1612 | version "2.0.0" 1613 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1614 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1615 | 1616 | ms@^2.1.1: 1617 | version "2.1.3" 1618 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1619 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1620 | 1621 | mute-stream@~0.0.4: 1622 | version "0.0.8" 1623 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" 1624 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== 1625 | 1626 | node-fetch@^2.5.0: 1627 | version "2.6.7" 1628 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 1629 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 1630 | dependencies: 1631 | whatwg-url "^5.0.0" 1632 | 1633 | nodemon@^2.0.3: 1634 | version "2.0.13" 1635 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.13.tgz#67d40d3a4d5bd840aa785c56587269cfcf5d24aa" 1636 | integrity sha512-UMXMpsZsv1UXUttCn6gv8eQPhn6DR4BW+txnL3IN5IHqrCwcrT/yWHfL35UsClGXknTH79r5xbu+6J1zNHuSyA== 1637 | dependencies: 1638 | chokidar "^3.2.2" 1639 | debug "^3.2.6" 1640 | ignore-by-default "^1.0.1" 1641 | minimatch "^3.0.4" 1642 | pstree.remy "^1.1.7" 1643 | semver "^5.7.1" 1644 | supports-color "^5.5.0" 1645 | touch "^3.1.0" 1646 | undefsafe "^2.0.3" 1647 | update-notifier "^5.1.0" 1648 | 1649 | nopt@~1.0.10: 1650 | version "1.0.10" 1651 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1652 | integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= 1653 | dependencies: 1654 | abbrev "1" 1655 | 1656 | normalize-package-data@^2.5.0: 1657 | version "2.5.0" 1658 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1659 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1660 | dependencies: 1661 | hosted-git-info "^2.1.4" 1662 | resolve "^1.10.0" 1663 | semver "2 || 3 || 4 || 5" 1664 | validate-npm-package-license "^3.0.1" 1665 | 1666 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1667 | version "3.0.0" 1668 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1669 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1670 | 1671 | normalize-url@^4.1.0: 1672 | version "4.5.1" 1673 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" 1674 | integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== 1675 | 1676 | npm-run-path@^2.0.0: 1677 | version "2.0.2" 1678 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1679 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 1680 | dependencies: 1681 | path-key "^2.0.0" 1682 | 1683 | nth-check@^2.0.0: 1684 | version "2.0.1" 1685 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.1.tgz#2efe162f5c3da06a28959fbd3db75dbeea9f0fc2" 1686 | integrity sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w== 1687 | dependencies: 1688 | boolbase "^1.0.0" 1689 | 1690 | object-inspect@^1.9.0: 1691 | version "1.12.2" 1692 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" 1693 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 1694 | 1695 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1696 | version "1.4.0" 1697 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1698 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1699 | dependencies: 1700 | wrappy "1" 1701 | 1702 | os-homedir@^1.0.0: 1703 | version "1.0.2" 1704 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1705 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 1706 | 1707 | os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: 1708 | version "1.0.2" 1709 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1710 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1711 | 1712 | osenv@^0.1.3: 1713 | version "0.1.5" 1714 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1715 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== 1716 | dependencies: 1717 | os-homedir "^1.0.0" 1718 | os-tmpdir "^1.0.0" 1719 | 1720 | outdent@^0.5.0: 1721 | version "0.5.0" 1722 | resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.5.0.tgz#9e10982fdc41492bb473ad13840d22f9655be2ff" 1723 | integrity sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q== 1724 | 1725 | p-cancelable@^1.0.0: 1726 | version "1.1.0" 1727 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" 1728 | integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== 1729 | 1730 | p-filter@^2.1.0: 1731 | version "2.1.0" 1732 | resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c" 1733 | integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw== 1734 | dependencies: 1735 | p-map "^2.0.0" 1736 | 1737 | p-finally@^1.0.0: 1738 | version "1.0.0" 1739 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1740 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 1741 | 1742 | p-limit@^2.2.0: 1743 | version "2.3.0" 1744 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 1745 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 1746 | dependencies: 1747 | p-try "^2.0.0" 1748 | 1749 | p-limit@^3.0.2: 1750 | version "3.1.0" 1751 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1752 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1753 | dependencies: 1754 | yocto-queue "^0.1.0" 1755 | 1756 | p-locate@^4.1.0: 1757 | version "4.1.0" 1758 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1759 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1760 | dependencies: 1761 | p-limit "^2.2.0" 1762 | 1763 | p-locate@^5.0.0: 1764 | version "5.0.0" 1765 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1766 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1767 | dependencies: 1768 | p-limit "^3.0.2" 1769 | 1770 | p-map@^2.0.0: 1771 | version "2.1.0" 1772 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" 1773 | integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== 1774 | 1775 | p-try@^2.0.0: 1776 | version "2.2.0" 1777 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1778 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1779 | 1780 | package-json@^6.3.0: 1781 | version "6.5.0" 1782 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" 1783 | integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== 1784 | dependencies: 1785 | got "^9.6.0" 1786 | registry-auth-token "^4.0.0" 1787 | registry-url "^5.0.0" 1788 | semver "^6.2.0" 1789 | 1790 | parse-json@^5.0.0: 1791 | version "5.2.0" 1792 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 1793 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 1794 | dependencies: 1795 | "@babel/code-frame" "^7.0.0" 1796 | error-ex "^1.3.1" 1797 | json-parse-even-better-errors "^2.3.0" 1798 | lines-and-columns "^1.1.6" 1799 | 1800 | parse-semver@^1.1.1: 1801 | version "1.1.1" 1802 | resolved "https://registry.yarnpkg.com/parse-semver/-/parse-semver-1.1.1.tgz#9a4afd6df063dc4826f93fba4a99cf223f666cb8" 1803 | integrity sha1-mkr9bfBj3Egm+T+6SpnPIj9mbLg= 1804 | dependencies: 1805 | semver "^5.1.0" 1806 | 1807 | parse5-htmlparser2-tree-adapter@^6.0.1: 1808 | version "6.0.1" 1809 | resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz#2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6" 1810 | integrity sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== 1811 | dependencies: 1812 | parse5 "^6.0.1" 1813 | 1814 | parse5@^6.0.1: 1815 | version "6.0.1" 1816 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 1817 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 1818 | 1819 | path-exists@^4.0.0: 1820 | version "4.0.0" 1821 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1822 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1823 | 1824 | path-is-absolute@^1.0.0: 1825 | version "1.0.1" 1826 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1827 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1828 | 1829 | path-key@^2.0.0: 1830 | version "2.0.1" 1831 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1832 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 1833 | 1834 | path-key@^3.1.0: 1835 | version "3.1.1" 1836 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1837 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1838 | 1839 | path-parse@^1.0.6: 1840 | version "1.0.7" 1841 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1842 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1843 | 1844 | path-type@^4.0.0: 1845 | version "4.0.0" 1846 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1847 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1848 | 1849 | pend@~1.2.0: 1850 | version "1.2.0" 1851 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1852 | integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= 1853 | 1854 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: 1855 | version "2.3.0" 1856 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" 1857 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 1858 | 1859 | pify@^4.0.1: 1860 | version "4.0.1" 1861 | resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" 1862 | integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== 1863 | 1864 | pkg-dir@^4.2.0: 1865 | version "4.2.0" 1866 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 1867 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 1868 | dependencies: 1869 | find-up "^4.0.0" 1870 | 1871 | preferred-pm@^3.0.0: 1872 | version "3.0.3" 1873 | resolved "https://registry.yarnpkg.com/preferred-pm/-/preferred-pm-3.0.3.tgz#1b6338000371e3edbce52ef2e4f65eb2e73586d6" 1874 | integrity sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ== 1875 | dependencies: 1876 | find-up "^5.0.0" 1877 | find-yarn-workspace-root2 "1.2.16" 1878 | path-exists "^4.0.0" 1879 | which-pm "2.0.0" 1880 | 1881 | prepend-http@^2.0.0: 1882 | version "2.0.0" 1883 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 1884 | integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= 1885 | 1886 | prettier@^1.19.1: 1887 | version "1.19.1" 1888 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" 1889 | integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== 1890 | 1891 | pseudomap@^1.0.2: 1892 | version "1.0.2" 1893 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1894 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 1895 | 1896 | pstree.remy@^1.1.7: 1897 | version "1.1.8" 1898 | resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" 1899 | integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== 1900 | 1901 | pump@^3.0.0: 1902 | version "3.0.0" 1903 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1904 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1905 | dependencies: 1906 | end-of-stream "^1.1.0" 1907 | once "^1.3.1" 1908 | 1909 | pupa@^2.1.1: 1910 | version "2.1.1" 1911 | resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62" 1912 | integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== 1913 | dependencies: 1914 | escape-goat "^2.0.0" 1915 | 1916 | qs@^6.9.1: 1917 | version "6.11.0" 1918 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" 1919 | integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== 1920 | dependencies: 1921 | side-channel "^1.0.4" 1922 | 1923 | queue-microtask@^1.2.2: 1924 | version "1.2.3" 1925 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1926 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1927 | 1928 | quick-lru@^4.0.1: 1929 | version "4.0.1" 1930 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" 1931 | integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== 1932 | 1933 | rc@^1.2.8: 1934 | version "1.2.8" 1935 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1936 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 1937 | dependencies: 1938 | deep-extend "^0.6.0" 1939 | ini "~1.3.0" 1940 | minimist "^1.2.0" 1941 | strip-json-comments "~2.0.1" 1942 | 1943 | read-pkg-up@^7.0.1: 1944 | version "7.0.1" 1945 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" 1946 | integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 1947 | dependencies: 1948 | find-up "^4.1.0" 1949 | read-pkg "^5.2.0" 1950 | type-fest "^0.8.1" 1951 | 1952 | read-pkg@^5.2.0: 1953 | version "5.2.0" 1954 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" 1955 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 1956 | dependencies: 1957 | "@types/normalize-package-data" "^2.4.0" 1958 | normalize-package-data "^2.5.0" 1959 | parse-json "^5.0.0" 1960 | type-fest "^0.6.0" 1961 | 1962 | read-yaml-file@^1.1.0: 1963 | version "1.1.0" 1964 | resolved "https://registry.yarnpkg.com/read-yaml-file/-/read-yaml-file-1.1.0.tgz#9362bbcbdc77007cc8ea4519fe1c0b821a7ce0d8" 1965 | integrity sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA== 1966 | dependencies: 1967 | graceful-fs "^4.1.5" 1968 | js-yaml "^3.6.1" 1969 | pify "^4.0.1" 1970 | strip-bom "^3.0.0" 1971 | 1972 | read@^1.0.7: 1973 | version "1.0.7" 1974 | resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" 1975 | integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ= 1976 | dependencies: 1977 | mute-stream "~0.0.4" 1978 | 1979 | readdirp@~3.6.0: 1980 | version "3.6.0" 1981 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1982 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1983 | dependencies: 1984 | picomatch "^2.2.1" 1985 | 1986 | redent@^3.0.0: 1987 | version "3.0.0" 1988 | resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" 1989 | integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== 1990 | dependencies: 1991 | indent-string "^4.0.0" 1992 | strip-indent "^3.0.0" 1993 | 1994 | regenerator-runtime@^0.13.4: 1995 | version "0.13.9" 1996 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 1997 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 1998 | 1999 | registry-auth-token@^4.0.0: 2000 | version "4.2.1" 2001 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250" 2002 | integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw== 2003 | dependencies: 2004 | rc "^1.2.8" 2005 | 2006 | registry-url@^5.0.0: 2007 | version "5.1.0" 2008 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" 2009 | integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== 2010 | dependencies: 2011 | rc "^1.2.8" 2012 | 2013 | require-directory@^2.1.1: 2014 | version "2.1.1" 2015 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2016 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2017 | 2018 | require-main-filename@^2.0.0: 2019 | version "2.0.0" 2020 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 2021 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 2022 | 2023 | resolve-from@^5.0.0: 2024 | version "5.0.0" 2025 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2026 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2027 | 2028 | resolve@^1.10.0: 2029 | version "1.20.0" 2030 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 2031 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 2032 | dependencies: 2033 | is-core-module "^2.2.0" 2034 | path-parse "^1.0.6" 2035 | 2036 | responselike@^1.0.2: 2037 | version "1.0.2" 2038 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 2039 | integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= 2040 | dependencies: 2041 | lowercase-keys "^1.0.0" 2042 | 2043 | reusify@^1.0.4: 2044 | version "1.0.4" 2045 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 2046 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2047 | 2048 | rimraf@^3.0.0: 2049 | version "3.0.2" 2050 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2051 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2052 | dependencies: 2053 | glob "^7.1.3" 2054 | 2055 | run-parallel@^1.1.9: 2056 | version "1.2.0" 2057 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 2058 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2059 | dependencies: 2060 | queue-microtask "^1.2.2" 2061 | 2062 | "safer-buffer@>= 2.1.2 < 3": 2063 | version "2.1.2" 2064 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2065 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2066 | 2067 | sax@>=0.6.0: 2068 | version "1.2.4" 2069 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2070 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 2071 | 2072 | semver-diff@^3.1.1: 2073 | version "3.1.1" 2074 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" 2075 | integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== 2076 | dependencies: 2077 | semver "^6.3.0" 2078 | 2079 | "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@^5.4.1, semver@^5.7.1: 2080 | version "5.7.1" 2081 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2082 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2083 | 2084 | semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: 2085 | version "6.3.0" 2086 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2087 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2088 | 2089 | semver@^7.3.4: 2090 | version "7.3.5" 2091 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 2092 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 2093 | dependencies: 2094 | lru-cache "^6.0.0" 2095 | 2096 | set-blocking@^2.0.0: 2097 | version "2.0.0" 2098 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2099 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 2100 | 2101 | shebang-command@^1.2.0: 2102 | version "1.2.0" 2103 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2104 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2105 | dependencies: 2106 | shebang-regex "^1.0.0" 2107 | 2108 | shebang-command@^2.0.0: 2109 | version "2.0.0" 2110 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2111 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2112 | dependencies: 2113 | shebang-regex "^3.0.0" 2114 | 2115 | shebang-regex@^1.0.0: 2116 | version "1.0.0" 2117 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2118 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2119 | 2120 | shebang-regex@^3.0.0: 2121 | version "3.0.0" 2122 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2123 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2124 | 2125 | side-channel@^1.0.4: 2126 | version "1.0.4" 2127 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 2128 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 2129 | dependencies: 2130 | call-bind "^1.0.0" 2131 | get-intrinsic "^1.0.2" 2132 | object-inspect "^1.9.0" 2133 | 2134 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2135 | version "3.0.5" 2136 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f" 2137 | integrity sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ== 2138 | 2139 | simple-swizzle@^0.2.2: 2140 | version "0.2.2" 2141 | resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 2142 | integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= 2143 | dependencies: 2144 | is-arrayish "^0.3.1" 2145 | 2146 | slash@^3.0.0: 2147 | version "3.0.0" 2148 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2149 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2150 | 2151 | smartwrap@^1.2.3: 2152 | version "1.2.5" 2153 | resolved "https://registry.yarnpkg.com/smartwrap/-/smartwrap-1.2.5.tgz#45ee3e09ac234e5f7f17c16e916f511834f3cd23" 2154 | integrity sha512-bzWRwHwu0RnWjwU7dFy7tF68pDAx/zMSu3g7xr9Nx5J0iSImYInglwEVExyHLxXljy6PWMjkSAbwF7t2mPnRmg== 2155 | dependencies: 2156 | breakword "^1.0.5" 2157 | grapheme-splitter "^1.0.4" 2158 | strip-ansi "^6.0.0" 2159 | wcwidth "^1.0.1" 2160 | yargs "^15.1.0" 2161 | 2162 | spawndamnit@^2.0.0: 2163 | version "2.0.0" 2164 | resolved "https://registry.yarnpkg.com/spawndamnit/-/spawndamnit-2.0.0.tgz#9f762ac5c3476abb994b42ad592b5ad22bb4b0ad" 2165 | integrity sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA== 2166 | dependencies: 2167 | cross-spawn "^5.1.0" 2168 | signal-exit "^3.0.2" 2169 | 2170 | spdx-correct@^3.0.0: 2171 | version "3.1.1" 2172 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 2173 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 2174 | dependencies: 2175 | spdx-expression-parse "^3.0.0" 2176 | spdx-license-ids "^3.0.0" 2177 | 2178 | spdx-exceptions@^2.1.0: 2179 | version "2.3.0" 2180 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 2181 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 2182 | 2183 | spdx-expression-parse@^3.0.0: 2184 | version "3.0.1" 2185 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 2186 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 2187 | dependencies: 2188 | spdx-exceptions "^2.1.0" 2189 | spdx-license-ids "^3.0.0" 2190 | 2191 | spdx-license-ids@^3.0.0: 2192 | version "3.0.10" 2193 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz#0d9becccde7003d6c658d487dd48a32f0bf3014b" 2194 | integrity sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA== 2195 | 2196 | sprintf-js@~1.0.2: 2197 | version "1.0.3" 2198 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2199 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2200 | 2201 | stream-transform@^2.1.3: 2202 | version "2.1.3" 2203 | resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-2.1.3.tgz#a1c3ecd72ddbf500aa8d342b0b9df38f5aa598e3" 2204 | integrity sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ== 2205 | dependencies: 2206 | mixme "^0.5.1" 2207 | 2208 | string-width@^2.0.0, string-width@^2.1.1: 2209 | version "2.1.1" 2210 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2211 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 2212 | dependencies: 2213 | is-fullwidth-code-point "^2.0.0" 2214 | strip-ansi "^4.0.0" 2215 | 2216 | string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2: 2217 | version "4.2.3" 2218 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2219 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2220 | dependencies: 2221 | emoji-regex "^8.0.0" 2222 | is-fullwidth-code-point "^3.0.0" 2223 | strip-ansi "^6.0.1" 2224 | 2225 | strip-ansi@^4.0.0: 2226 | version "4.0.0" 2227 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2228 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 2229 | dependencies: 2230 | ansi-regex "^3.0.0" 2231 | 2232 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2233 | version "6.0.1" 2234 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2235 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2236 | dependencies: 2237 | ansi-regex "^5.0.1" 2238 | 2239 | strip-bom@^3.0.0: 2240 | version "3.0.0" 2241 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2242 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 2243 | 2244 | strip-eof@^1.0.0: 2245 | version "1.0.0" 2246 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2247 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 2248 | 2249 | strip-indent@^3.0.0: 2250 | version "3.0.0" 2251 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" 2252 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 2253 | dependencies: 2254 | min-indent "^1.0.0" 2255 | 2256 | strip-json-comments@~2.0.1: 2257 | version "2.0.1" 2258 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2259 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 2260 | 2261 | supports-color@^5.3.0, supports-color@^5.5.0: 2262 | version "5.5.0" 2263 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2264 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2265 | dependencies: 2266 | has-flag "^3.0.0" 2267 | 2268 | supports-color@^7.1.0: 2269 | version "7.2.0" 2270 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2271 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2272 | dependencies: 2273 | has-flag "^4.0.0" 2274 | 2275 | term-size@^1.2.0: 2276 | version "1.2.0" 2277 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 2278 | integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= 2279 | dependencies: 2280 | execa "^0.7.0" 2281 | 2282 | term-size@^2.1.0: 2283 | version "2.2.1" 2284 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" 2285 | integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== 2286 | 2287 | tmp@^0.0.33: 2288 | version "0.0.33" 2289 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2290 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 2291 | dependencies: 2292 | os-tmpdir "~1.0.2" 2293 | 2294 | tmp@^0.2.1: 2295 | version "0.2.1" 2296 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" 2297 | integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== 2298 | dependencies: 2299 | rimraf "^3.0.0" 2300 | 2301 | to-readable-stream@^1.0.0: 2302 | version "1.0.0" 2303 | resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" 2304 | integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== 2305 | 2306 | to-regex-range@^5.0.1: 2307 | version "5.0.1" 2308 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2309 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2310 | dependencies: 2311 | is-number "^7.0.0" 2312 | 2313 | touch@^3.1.0: 2314 | version "3.1.0" 2315 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 2316 | integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== 2317 | dependencies: 2318 | nopt "~1.0.10" 2319 | 2320 | tr46@~0.0.3: 2321 | version "0.0.3" 2322 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2323 | integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= 2324 | 2325 | trim-newlines@^3.0.0: 2326 | version "3.0.1" 2327 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" 2328 | integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== 2329 | 2330 | tslib@^2.2.0: 2331 | version "2.3.1" 2332 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" 2333 | integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== 2334 | 2335 | tty-table@^2.8.10: 2336 | version "2.8.13" 2337 | resolved "https://registry.yarnpkg.com/tty-table/-/tty-table-2.8.13.tgz#d484a416381973eaebbdf19c79136b390e5c6d70" 2338 | integrity sha512-eVV/+kB6fIIdx+iUImhXrO22gl7f6VmmYh0Zbu6C196fe1elcHXd7U6LcLXu0YoVPc2kNesWiukYcdK8ZmJ6aQ== 2339 | dependencies: 2340 | chalk "^3.0.0" 2341 | csv "^5.3.1" 2342 | smartwrap "^1.2.3" 2343 | strip-ansi "^6.0.0" 2344 | wcwidth "^1.0.1" 2345 | yargs "^15.1.0" 2346 | 2347 | tunnel@0.0.6: 2348 | version "0.0.6" 2349 | resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" 2350 | integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== 2351 | 2352 | type-fest@^0.13.1: 2353 | version "0.13.1" 2354 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" 2355 | integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== 2356 | 2357 | type-fest@^0.20.2: 2358 | version "0.20.2" 2359 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2360 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2361 | 2362 | type-fest@^0.6.0: 2363 | version "0.6.0" 2364 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" 2365 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 2366 | 2367 | type-fest@^0.8.1: 2368 | version "0.8.1" 2369 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 2370 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 2371 | 2372 | typed-rest-client@^1.8.4: 2373 | version "1.8.6" 2374 | resolved "https://registry.yarnpkg.com/typed-rest-client/-/typed-rest-client-1.8.6.tgz#d8facd6abd98cbd8ad14cccf056ca5cc306919d7" 2375 | integrity sha512-xcQpTEAJw2DP7GqVNECh4dD+riS+C1qndXLfBCJ3xk0kqprtGN491P5KlmrDbKdtuW8NEcP/5ChxiJI3S9WYTA== 2376 | dependencies: 2377 | qs "^6.9.1" 2378 | tunnel "0.0.6" 2379 | underscore "^1.12.1" 2380 | 2381 | typedarray-to-buffer@^3.1.5: 2382 | version "3.1.5" 2383 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 2384 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 2385 | dependencies: 2386 | is-typedarray "^1.0.0" 2387 | 2388 | uc.micro@^1.0.1, uc.micro@^1.0.5: 2389 | version "1.0.6" 2390 | resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" 2391 | integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== 2392 | 2393 | undefsafe@^2.0.3: 2394 | version "2.0.3" 2395 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.3.tgz#6b166e7094ad46313b2202da7ecc2cd7cc6e7aae" 2396 | integrity sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A== 2397 | dependencies: 2398 | debug "^2.2.0" 2399 | 2400 | underscore@^1.12.1: 2401 | version "1.13.1" 2402 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.1.tgz#0c1c6bd2df54b6b69f2314066d65b6cde6fcf9d1" 2403 | integrity sha512-hzSoAVtJF+3ZtiFX0VgfFPHEDRm7Y/QPjGyNo4TVdnDTdft3tr8hEkD25a1jC+TjTuE7tkHGKkhwCgs9dgBB2g== 2404 | 2405 | unique-string@^2.0.0: 2406 | version "2.0.0" 2407 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" 2408 | integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== 2409 | dependencies: 2410 | crypto-random-string "^2.0.0" 2411 | 2412 | universalify@^0.1.0: 2413 | version "0.1.2" 2414 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 2415 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 2416 | 2417 | update-notifier@^5.1.0: 2418 | version "5.1.0" 2419 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9" 2420 | integrity sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== 2421 | dependencies: 2422 | boxen "^5.0.0" 2423 | chalk "^4.1.0" 2424 | configstore "^5.0.1" 2425 | has-yarn "^2.1.0" 2426 | import-lazy "^2.1.0" 2427 | is-ci "^2.0.0" 2428 | is-installed-globally "^0.4.0" 2429 | is-npm "^5.0.0" 2430 | is-yarn-global "^0.3.0" 2431 | latest-version "^5.1.0" 2432 | pupa "^2.1.1" 2433 | semver "^7.3.4" 2434 | semver-diff "^3.1.1" 2435 | xdg-basedir "^4.0.0" 2436 | 2437 | url-join@^1.1.0: 2438 | version "1.1.0" 2439 | resolved "https://registry.yarnpkg.com/url-join/-/url-join-1.1.0.tgz#741c6c2f4596c4830d6718460920d0c92202dc78" 2440 | integrity sha1-dBxsL0WWxIMNZxhGCSDQySIC3Hg= 2441 | 2442 | url-parse-lax@^3.0.0: 2443 | version "3.0.0" 2444 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 2445 | integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= 2446 | dependencies: 2447 | prepend-http "^2.0.0" 2448 | 2449 | validate-npm-package-license@^3.0.1: 2450 | version "3.0.4" 2451 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 2452 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 2453 | dependencies: 2454 | spdx-correct "^3.0.0" 2455 | spdx-expression-parse "^3.0.0" 2456 | 2457 | vsce@^1.100.1: 2458 | version "1.100.1" 2459 | resolved "https://registry.yarnpkg.com/vsce/-/vsce-1.100.1.tgz#6ea04464abe3ccf3a5a8a05de25692f1780b1104" 2460 | integrity sha512-1VjLyse5g6e2eQ6jUpslu7IDq44velwF8Jy8s7ePdwGNuG8EzfmaOfVyig3ZSMJ0l8DiJmZllx5bRAB4RMdnHg== 2461 | dependencies: 2462 | azure-devops-node-api "^11.0.1" 2463 | chalk "^2.4.2" 2464 | cheerio "^1.0.0-rc.9" 2465 | commander "^6.1.0" 2466 | denodeify "^1.2.1" 2467 | glob "^7.0.6" 2468 | hosted-git-info "^4.0.2" 2469 | leven "^3.1.0" 2470 | lodash "^4.17.15" 2471 | markdown-it "^10.0.0" 2472 | mime "^1.3.4" 2473 | minimatch "^3.0.3" 2474 | osenv "^0.1.3" 2475 | parse-semver "^1.1.1" 2476 | read "^1.0.7" 2477 | semver "^5.1.0" 2478 | tmp "^0.2.1" 2479 | typed-rest-client "^1.8.4" 2480 | url-join "^1.1.0" 2481 | xml2js "^0.4.23" 2482 | yauzl "^2.3.1" 2483 | yazl "^2.2.2" 2484 | 2485 | wcwidth@^1.0.1: 2486 | version "1.0.1" 2487 | resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 2488 | integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= 2489 | dependencies: 2490 | defaults "^1.0.3" 2491 | 2492 | webidl-conversions@^3.0.0: 2493 | version "3.0.1" 2494 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2495 | integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= 2496 | 2497 | whatwg-url@^5.0.0: 2498 | version "5.0.0" 2499 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 2500 | integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= 2501 | dependencies: 2502 | tr46 "~0.0.3" 2503 | webidl-conversions "^3.0.0" 2504 | 2505 | which-module@^2.0.0: 2506 | version "2.0.0" 2507 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2508 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 2509 | 2510 | which-pm@2.0.0: 2511 | version "2.0.0" 2512 | resolved "https://registry.yarnpkg.com/which-pm/-/which-pm-2.0.0.tgz#8245609ecfe64bf751d0eef2f376d83bf1ddb7ae" 2513 | integrity sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w== 2514 | dependencies: 2515 | load-yaml-file "^0.2.0" 2516 | path-exists "^4.0.0" 2517 | 2518 | which@^1.2.9: 2519 | version "1.3.1" 2520 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2521 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2522 | dependencies: 2523 | isexe "^2.0.0" 2524 | 2525 | which@^2.0.1: 2526 | version "2.0.2" 2527 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2528 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2529 | dependencies: 2530 | isexe "^2.0.0" 2531 | 2532 | widest-line@^2.0.0: 2533 | version "2.0.1" 2534 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" 2535 | integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== 2536 | dependencies: 2537 | string-width "^2.1.1" 2538 | 2539 | widest-line@^3.1.0: 2540 | version "3.1.0" 2541 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" 2542 | integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== 2543 | dependencies: 2544 | string-width "^4.0.0" 2545 | 2546 | wrap-ansi@^6.2.0: 2547 | version "6.2.0" 2548 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 2549 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 2550 | dependencies: 2551 | ansi-styles "^4.0.0" 2552 | string-width "^4.1.0" 2553 | strip-ansi "^6.0.0" 2554 | 2555 | wrap-ansi@^7.0.0: 2556 | version "7.0.0" 2557 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2558 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2559 | dependencies: 2560 | ansi-styles "^4.0.0" 2561 | string-width "^4.1.0" 2562 | strip-ansi "^6.0.0" 2563 | 2564 | wrappy@1: 2565 | version "1.0.2" 2566 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2567 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2568 | 2569 | write-file-atomic@^3.0.0: 2570 | version "3.0.3" 2571 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 2572 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 2573 | dependencies: 2574 | imurmurhash "^0.1.4" 2575 | is-typedarray "^1.0.0" 2576 | signal-exit "^3.0.2" 2577 | typedarray-to-buffer "^3.1.5" 2578 | 2579 | xdg-basedir@^4.0.0: 2580 | version "4.0.0" 2581 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" 2582 | integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== 2583 | 2584 | xml2js@^0.4.23: 2585 | version "0.4.23" 2586 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" 2587 | integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== 2588 | dependencies: 2589 | sax ">=0.6.0" 2590 | xmlbuilder "~11.0.0" 2591 | 2592 | xmlbuilder@~11.0.0: 2593 | version "11.0.1" 2594 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" 2595 | integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== 2596 | 2597 | y18n@^4.0.0: 2598 | version "4.0.3" 2599 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" 2600 | integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== 2601 | 2602 | yallist@^2.1.2: 2603 | version "2.1.2" 2604 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2605 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 2606 | 2607 | yallist@^4.0.0: 2608 | version "4.0.0" 2609 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2610 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2611 | 2612 | yargs-parser@^18.1.2, yargs-parser@^18.1.3: 2613 | version "18.1.3" 2614 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" 2615 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== 2616 | dependencies: 2617 | camelcase "^5.0.0" 2618 | decamelize "^1.2.0" 2619 | 2620 | yargs@^15.1.0: 2621 | version "15.4.1" 2622 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" 2623 | integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== 2624 | dependencies: 2625 | cliui "^6.0.0" 2626 | decamelize "^1.2.0" 2627 | find-up "^4.1.0" 2628 | get-caller-file "^2.0.1" 2629 | require-directory "^2.1.1" 2630 | require-main-filename "^2.0.0" 2631 | set-blocking "^2.0.0" 2632 | string-width "^4.2.0" 2633 | which-module "^2.0.0" 2634 | y18n "^4.0.0" 2635 | yargs-parser "^18.1.2" 2636 | 2637 | yauzl@^2.3.1: 2638 | version "2.10.0" 2639 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" 2640 | integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= 2641 | dependencies: 2642 | buffer-crc32 "~0.2.3" 2643 | fd-slicer "~1.1.0" 2644 | 2645 | yazl@^2.2.2: 2646 | version "2.5.1" 2647 | resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.5.1.tgz#a3d65d3dd659a5b0937850e8609f22fffa2b5c35" 2648 | integrity sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw== 2649 | dependencies: 2650 | buffer-crc32 "~0.2.3" 2651 | 2652 | yocto-queue@^0.1.0: 2653 | version "0.1.0" 2654 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2655 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2656 | --------------------------------------------------------------------------------