neiam /action-setup-beam
action-setup-beam
public · Issues · Pulls · Labels · Forks · Compare · Actions queued
⭐
Log in to mark this repository.
Merge pull request #36 from doughsay/outputs
96cd61e · Jonathan Clem · 2020-08-05 14:59
Message
{commit_body(@commit)}
Files changed
modified
.github/workflows/test.yml
+4
−0
@@ -4,6 +4,7 @@ on:
| 4 | 4 | push: {branches: main} |
| 5 | 5 | pull_request: {branches: main} |
| 6 | 6 | repository_dispatch: |
| 7 | + workflow_dispatch: | |
| 7 | 8 | |
| 8 | 9 | jobs: |
| 9 | 10 | test: |
@@ -28,10 +29,13 @@ jobs:
| 28 | 29 | steps: |
| 29 | 30 | - uses: actions/checkout@v2 |
| 30 | 31 | - name: Use actions/setup-elixir |
| 32 | + id: setup-elixir | |
| 31 | 33 | uses: ./ |
| 32 | 34 | with: |
| 33 | 35 | otp-version: ${{matrix.pair.otp-version}} |
| 34 | 36 | elixir-version: ${{matrix.pair.elixir-version}} |
| 37 | + - name: Output runtime versions | |
| 38 | + run: echo "Elixir ${{steps.setup-elixir.outputs.elixir-version}} / OTP ${{steps.setup-elixir.outputs.otp-version}}" | |
| 35 | 39 | - name: Run Mix project tests |
| 36 | 40 | run: |- |
| 37 | 41 | cd test-project |
modified
action.yml
+5
−0
@@ -15,6 +15,11 @@ inputs:
| 15 | 15 | install-rebar: |
| 16 | 16 | description: Whether to install Rebar |
| 17 | 17 | default: true |
| 18 | +outputs: | |
| 19 | + elixir-version: | |
| 20 | + description: Exact version of Elixir that was installed | |
| 21 | + otp-version: | |
| 22 | + description: Exact version of OTP that was installed | |
| 18 | 23 | runs: |
| 19 | 24 | using: node12 |
| 20 | 25 | main: dist/index.js |
modified
dist/.github/workflows/test.yml
+4
−0
@@ -4,6 +4,7 @@ on:
| 4 | 4 | push: {branches: main} |
| 5 | 5 | pull_request: {branches: main} |
| 6 | 6 | repository_dispatch: |
| 7 | + workflow_dispatch: | |
| 7 | 8 | |
| 8 | 9 | jobs: |
| 9 | 10 | test: |
@@ -28,10 +29,13 @@ jobs:
| 28 | 29 | steps: |
| 29 | 30 | - uses: actions/checkout@v2 |
| 30 | 31 | - name: Use actions/setup-elixir |
| 32 | + id: setup-elixir | |
| 31 | 33 | uses: ./ |
| 32 | 34 | with: |
| 33 | 35 | otp-version: ${{matrix.pair.otp-version}} |
| 34 | 36 | elixir-version: ${{matrix.pair.elixir-version}} |
| 37 | + - name: Output runtime versions | |
| 38 | + run: echo "Elixir ${{steps.setup-elixir.outputs.elixir-version}} / OTP ${{steps.setup-elixir.outputs.otp-version}}" | |
| 35 | 39 | - name: Run Mix project tests |
| 36 | 40 | run: |- |
| 37 | 41 | cd test-project |
modified
dist/index.js
+2
−0
@@ -3273,6 +3273,8 @@ async function main() {
| 3273 | 3273 | |
| 3274 | 3274 | const matchersPath = __webpack_require__.ab + ".github" |
| 3275 | 3275 | console.log(`##[add-matcher]${path.join(matchersPath, 'elixir.json')}`) |
| 3276 | + core.setOutput('otp-version', otpVersion) | |
| 3277 | + core.setOutput('elixir-version', elixirVersion) | |
| 3276 | 3278 | } |
| 3277 | 3279 | |
| 3278 | 3280 | function checkPlatform() { |
modified
src/setup-elixir.js
+2
−0
@@ -40,6 +40,8 @@ async function main() {
| 40 | 40 | |
| 41 | 41 | const matchersPath = path.join(__dirname, '..', '.github') |
| 42 | 42 | console.log(`##[add-matcher]${path.join(matchersPath, 'elixir.json')}`) |
| 43 | + core.setOutput('otp-version', otpVersion) | |
| 44 | + core.setOutput('elixir-version', elixirVersion) | |
| 43 | 45 | } |
| 44 | 46 | |
| 45 | 47 | function checkPlatform() { |
modified
yarn.lock
+320
−0
@@ -29,11 +29,321 @@
| 29 | 29 | typed-rest-client "^1.4.0" |
| 30 | 30 | uuid "^3.3.2" |
| 31 | 31 | |
| 32 | +"@babel/code-frame@^7.0.0": | |
| 33 | + version "7.10.4" | |
| 34 | + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" | |
| 35 | + integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== | |
| 36 | + dependencies: | |
| 37 | + "@babel/highlight" "^7.10.4" | |
| 38 | + | |
| 39 | +"@babel/helper-validator-identifier@^7.10.4": | |
| 40 | + version "7.10.4" | |
| 41 | + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" | |
| 42 | + integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== | |
| 43 | + | |
| 44 | +"@babel/highlight@^7.10.4": | |
| 45 | + version "7.10.4" | |
| 46 | + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" | |
| 47 | + integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== | |
| 48 | + dependencies: | |
| 49 | + "@babel/helper-validator-identifier" "^7.10.4" | |
| 50 | + chalk "^2.0.0" | |
| 51 | + js-tokens "^4.0.0" | |
| 52 | + | |
| 53 | +"@types/color-name@^1.1.1": | |
| 54 | + version "1.1.1" | |
| 55 | + resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" | |
| 56 | + integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== | |
| 57 | + | |
| 58 | +"@types/parse-json@^4.0.0": | |
| 59 | + version "4.0.0" | |
| 60 | + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" | |
| 61 | + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== | |
| 62 | + | |
| 63 | +"@zeit/ncc@^0.22.1": | |
| 64 | + version "0.22.3" | |
| 65 | + resolved "https://registry.yarnpkg.com/@zeit/ncc/-/ncc-0.22.3.tgz#fca6b86b4454ce7a7e1e7e755165ec06457f16cd" | |
| 66 | + integrity sha512-jnCLpLXWuw/PAiJiVbLjA8WBC0IJQbFeUwF4I9M+23MvIxTxk5pD4Q8byQBSPmHQjz5aBoA7AKAElQxMpjrCLQ== | |
| 67 | + | |
| 68 | +ansi-styles@^3.2.1: | |
| 69 | + version "3.2.1" | |
| 70 | + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" | |
| 71 | + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== | |
| 72 | + dependencies: | |
| 73 | + color-convert "^1.9.0" | |
| 74 | + | |
| 75 | +ansi-styles@^4.1.0: | |
| 76 | + version "4.2.1" | |
| 77 | + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" | |
| 78 | + integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== | |
| 79 | + dependencies: | |
| 80 | + "@types/color-name" "^1.1.1" | |
| 81 | + color-convert "^2.0.1" | |
| 82 | + | |
| 83 | +callsites@^3.0.0: | |
| 84 | + version "3.1.0" | |
| 85 | + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" | |
| 86 | + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== | |
| 87 | + | |
| 88 | +chalk@^2.0.0: | |
| 89 | + version "2.4.2" | |
| 90 | + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" | |
| 91 | + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== | |
| 92 | + dependencies: | |
| 93 | + ansi-styles "^3.2.1" | |
| 94 | + escape-string-regexp "^1.0.5" | |
| 95 | + supports-color "^5.3.0" | |
| 96 | + | |
| 97 | +chalk@^4.0.0: | |
| 98 | + version "4.1.0" | |
| 99 | + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" | |
| 100 | + integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== | |
| 101 | + dependencies: | |
| 102 | + ansi-styles "^4.1.0" | |
| 103 | + supports-color "^7.1.0" | |
| 104 | + | |
| 105 | +ci-info@^2.0.0: | |
| 106 | + version "2.0.0" | |
| 107 | + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" | |
| 108 | + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== | |
| 109 | + | |
| 110 | +color-convert@^1.9.0: | |
| 111 | + version "1.9.3" | |
| 112 | + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" | |
| 113 | + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== | |
| 114 | + dependencies: | |
| 115 | + color-name "1.1.3" | |
| 116 | + | |
| 117 | +color-convert@^2.0.1: | |
| 118 | + version "2.0.1" | |
| 119 | + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" | |
| 120 | + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== | |
| 121 | + dependencies: | |
| 122 | + color-name "~1.1.4" | |
| 123 | + | |
| 124 | +color-name@1.1.3: | |
| 125 | + version "1.1.3" | |
| 126 | + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" | |
| 127 | + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= | |
| 128 | + | |
| 129 | +color-name@~1.1.4: | |
| 130 | + version "1.1.4" | |
| 131 | + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" | |
| 132 | + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== | |
| 133 | + | |
| 134 | +compare-versions@^3.6.0: | |
| 135 | + version "3.6.0" | |
| 136 | + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.6.0.tgz#1a5689913685e5a87637b8d3ffca75514ec41d62" | |
| 137 | + integrity sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA== | |
| 138 | + | |
| 139 | +cosmiconfig@^6.0.0: | |
| 140 | + version "6.0.0" | |
| 141 | + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" | |
| 142 | + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== | |
| 143 | + dependencies: | |
| 144 | + "@types/parse-json" "^4.0.0" | |
| 145 | + import-fresh "^3.1.0" | |
| 146 | + parse-json "^5.0.0" | |
| 147 | + path-type "^4.0.0" | |
| 148 | + yaml "^1.7.2" | |
| 149 | + | |
| 150 | +error-ex@^1.3.1: | |
| 151 | + version "1.3.2" | |
| 152 | + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" | |
| 153 | + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== | |
| 154 | + dependencies: | |
| 155 | + is-arrayish "^0.2.1" | |
| 156 | + | |
| 157 | +escape-string-regexp@^1.0.5: | |
| 158 | + version "1.0.5" | |
| 159 | + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" | |
| 160 | + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= | |
| 161 | + | |
| 162 | +find-up@^4.0.0: | |
| 163 | + version "4.1.0" | |
| 164 | + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" | |
| 165 | + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== | |
| 166 | + dependencies: | |
| 167 | + locate-path "^5.0.0" | |
| 168 | + path-exists "^4.0.0" | |
| 169 | + | |
| 170 | +find-versions@^3.2.0: | |
| 171 | + version "3.2.0" | |
| 172 | + resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e" | |
| 173 | + integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww== | |
| 174 | + dependencies: | |
| 175 | + semver-regex "^2.0.0" | |
| 176 | + | |
| 177 | +has-flag@^3.0.0: | |
| 178 | + version "3.0.0" | |
| 179 | + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" | |
| 180 | + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= | |
| 181 | + | |
| 182 | +has-flag@^4.0.0: | |
| 183 | + version "4.0.0" | |
| 184 | + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" | |
| 185 | + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== | |
| 186 | + | |
| 187 | +husky@^4.2.5: | |
| 188 | + version "4.2.5" | |
| 189 | + resolved "https://registry.yarnpkg.com/husky/-/husky-4.2.5.tgz#2b4f7622673a71579f901d9885ed448394b5fa36" | |
| 190 | + integrity sha512-SYZ95AjKcX7goYVZtVZF2i6XiZcHknw50iXvY7b0MiGoj5RwdgRQNEHdb+gPDPCXKlzwrybjFjkL6FOj8uRhZQ== | |
| 191 | + dependencies: | |
| 192 | + chalk "^4.0.0" | |
| 193 | + ci-info "^2.0.0" | |
| 194 | + compare-versions "^3.6.0" | |
| 195 | + cosmiconfig "^6.0.0" | |
| 196 | + find-versions "^3.2.0" | |
| 197 | + opencollective-postinstall "^2.0.2" | |
| 198 | + pkg-dir "^4.2.0" | |
| 199 | + please-upgrade-node "^3.2.0" | |
| 200 | + slash "^3.0.0" | |
| 201 | + which-pm-runs "^1.0.0" | |
| 202 | + | |
| 203 | +import-fresh@^3.1.0: | |
| 204 | + version "3.2.1" | |
| 205 | + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" | |
| 206 | + integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== | |
| 207 | + dependencies: | |
| 208 | + parent-module "^1.0.0" | |
| 209 | + resolve-from "^4.0.0" | |
| 210 | + | |
| 211 | +is-arrayish@^0.2.1: | |
| 212 | + version "0.2.1" | |
| 213 | + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" | |
| 214 | + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= | |
| 215 | + | |
| 216 | +js-tokens@^4.0.0: | |
| 217 | + version "4.0.0" | |
| 218 | + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" | |
| 219 | + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== | |
| 220 | + | |
| 221 | +json-parse-better-errors@^1.0.1: | |
| 222 | + version "1.0.2" | |
| 223 | + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" | |
| 224 | + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== | |
| 225 | + | |
| 226 | +lines-and-columns@^1.1.6: | |
| 227 | + version "1.1.6" | |
| 228 | + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" | |
| 229 | + integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= | |
| 230 | + | |
| 231 | +locate-path@^5.0.0: | |
| 232 | + version "5.0.0" | |
| 233 | + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" | |
| 234 | + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== | |
| 235 | + dependencies: | |
| 236 | + p-locate "^4.1.0" | |
| 237 | + | |
| 238 | +opencollective-postinstall@^2.0.2: | |
| 239 | + version "2.0.3" | |
| 240 | + resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" | |
| 241 | + integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== | |
| 242 | + | |
| 243 | +p-limit@^2.2.0: | |
| 244 | + version "2.3.0" | |
| 245 | + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" | |
| 246 | + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== | |
| 247 | + dependencies: | |
| 248 | + p-try "^2.0.0" | |
| 249 | + | |
| 250 | +p-locate@^4.1.0: | |
| 251 | + version "4.1.0" | |
| 252 | + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" | |
| 253 | + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== | |
| 254 | + dependencies: | |
| 255 | + p-limit "^2.2.0" | |
| 256 | + | |
| 257 | +p-try@^2.0.0: | |
| 258 | + version "2.2.0" | |
| 259 | + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" | |
| 260 | + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== | |
| 261 | + | |
| 262 | +parent-module@^1.0.0: | |
| 263 | + version "1.0.1" | |
| 264 | + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" | |
| 265 | + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== | |
| 266 | + dependencies: | |
| 267 | + callsites "^3.0.0" | |
| 268 | + | |
| 269 | +parse-json@^5.0.0: | |
| 270 | + version "5.0.1" | |
| 271 | + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.1.tgz#7cfe35c1ccd641bce3981467e6c2ece61b3b3878" | |
| 272 | + integrity sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ== | |
| 273 | + dependencies: | |
| 274 | + "@babel/code-frame" "^7.0.0" | |
| 275 | + error-ex "^1.3.1" | |
| 276 | + json-parse-better-errors "^1.0.1" | |
| 277 | + lines-and-columns "^1.1.6" | |
| 278 | + | |
| 279 | +path-exists@^4.0.0: | |
| 280 | + version "4.0.0" | |
| 281 | + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" | |
| 282 | + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== | |
| 283 | + | |
| 284 | +path-type@^4.0.0: | |
| 285 | + version "4.0.0" | |
| 286 | + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" | |
| 287 | + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== | |
| 288 | + | |
| 289 | +pkg-dir@^4.2.0: | |
| 290 | + version "4.2.0" | |
| 291 | + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" | |
| 292 | + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== | |
| 293 | + dependencies: | |
| 294 | + find-up "^4.0.0" | |
| 295 | + | |
| 296 | +please-upgrade-node@^3.2.0: | |
| 297 | + version "3.2.0" | |
| 298 | + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" | |
| 299 | + integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== | |
| 300 | + dependencies: | |
| 301 | + semver-compare "^1.0.0" | |
| 302 | + | |
| 303 | +prettier@^2.0.5: | |
| 304 | + version "2.0.5" | |
| 305 | + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" | |
| 306 | + integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg== | |
| 307 | + | |
| 308 | +resolve-from@^4.0.0: | |
| 309 | + version "4.0.0" | |
| 310 | + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" | |
| 311 | + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== | |
| 312 | + | |
| 313 | +semver-compare@^1.0.0: | |
| 314 | + version "1.0.0" | |
| 315 | + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" | |
| 316 | + integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= | |
| 317 | + | |
| 318 | +semver-regex@^2.0.0: | |
| 319 | + version "2.0.0" | |
| 320 | + resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" | |
| 321 | + integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== | |
| 322 | + | |
| 32 | 323 | semver@^6.1.0, semver@^6.3.0: |
| 33 | 324 | version "6.3.0" |
| 34 | 325 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" |
| 35 | 326 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== |
| 36 | 327 | |
| 328 | +slash@^3.0.0: | |
| 329 | + version "3.0.0" | |
| 330 | + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" | |
| 331 | + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== | |
| 332 | + | |
| 333 | +supports-color@^5.3.0: | |
| 334 | + version "5.5.0" | |
| 335 | + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" | |
| 336 | + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== | |
| 337 | + dependencies: | |
| 338 | + has-flag "^3.0.0" | |
| 339 | + | |
| 340 | +supports-color@^7.1.0: | |
| 341 | + version "7.1.0" | |
| 342 | + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" | |
| 343 | + integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== | |
| 344 | + dependencies: | |
| 345 | + has-flag "^4.0.0" | |
| 346 | + | |
| 37 | 347 | tunnel@0.0.4: |
| 38 | 348 | version "0.0.4" |
| 39 | 349 | resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.4.tgz#2d3785a158c174c9a16dc2c046ec5fc5f1742213" |
@@ -56,3 +366,13 @@ uuid@^3.3.2:
| 56 | 366 | version "3.3.3" |
| 57 | 367 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" |
| 58 | 368 | integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ== |
| 369 | + | |
| 370 | +which-pm-runs@^1.0.0: | |
| 371 | + version "1.0.0" | |
| 372 | + resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" | |
| 373 | + integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs= | |
| 374 | + | |
| 375 | +yaml@^1.7.2: | |
| 376 | + version "1.10.0" | |
| 377 | + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" | |
| 378 | + integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== |