-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate ghcr.io/plone/quanta image with storybook
- Loading branch information
Showing
6 changed files
with
260 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.git | ||
.github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Build Docker Image | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
env: | ||
IMAGE_NAME: ghcr.io/plone/quanta | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
${{ env.IMAGE_NAME }} | ||
labels: | | ||
org.label-schema.docker.cmd=docker run -d -p 80:80 ${{ env.IMAGE_NAME }}:latest | ||
flavor: | ||
latest=false | ||
tags: | | ||
type=ref,event=branch | ||
type=sha | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
platforms: linux/amd64 | ||
context: . | ||
file: Dockerfile | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: $${{ steps.meta.outputs.labels }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# syntax=docker/dockerfile:1 | ||
FROM node:14-slim as base | ||
RUN <<EOT | ||
set -e | ||
apt update | ||
apt install -y --no-install-recommends python3 unzip curl build-essential git ca-certificates | ||
mkdir /app | ||
chown -R node:node /app | ||
rm -rf /var/lib/apt/lists/* | ||
EOT | ||
|
||
FROM base as builder-site | ||
|
||
WORKDIR /app | ||
USER node | ||
ENV PYTHON=python3 | ||
|
||
COPY --chown=node:node . /app/ | ||
|
||
RUN <<EOT | ||
set -e | ||
yarn | ||
yarn build-storybook -o build | ||
EOT | ||
|
||
|
||
FROM caddy:2.7-alpine | ||
|
||
LABEL maintainer="Plone Foundation <[email protected]>" \ | ||
org.label-schema.name="quanta" \ | ||
org.label-schema.description="Quanta Public Site" \ | ||
org.label-schema.vendor="kitconcept GmbH" | ||
|
||
COPY --from=builder-site /app/build/ /usr/share/caddy/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
## Defensive settings for make: | ||
# https://tech.davis-hansson.com/p/make/ | ||
SHELL:=bash | ||
.ONESHELL: | ||
.SHELLFLAGS:=-xeu -o pipefail -O inherit_errexit -c | ||
.SILENT: | ||
.DELETE_ON_ERROR: | ||
MAKEFLAGS+=--warn-undefined-variables | ||
MAKEFLAGS+=--no-builtin-rules | ||
|
||
IMAGE_NAME=ghcr.io/plone/quanta | ||
IMAGE_TAG=latest | ||
|
||
# We like colors | ||
# From: https://coderwall.com/p/izxssa/colored-makefile-for-golang-projects | ||
RED=`tput setaf 1` | ||
GREEN=`tput setaf 2` | ||
RESET=`tput sgr0` | ||
YELLOW=`tput setaf 3` | ||
|
||
.PHONY: build-image | ||
build-image: ## Build Site Image | ||
@echo "Building $(IMAGE_NAME):$(IMAGE_TAG)" | ||
@docker buildx build . --progress=plain -t $(IMAGE_NAME):$(IMAGE_TAG) -f Dockerfile --load | ||
|
||
.PHONY: run-image | ||
run-image: ## Run Site Image | ||
@echo "Running $(IMAGE_NAME):$(IMAGE_TAG) on port 8080" | ||
@docker run -it -p 8080:80 $(IMAGE_NAME):$(IMAGE_TAG) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2223,16 +2223,28 @@ | |
"@sentry/utils" "5.12.0" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/cli@^1.55.0": | ||
version "1.59.0" | ||
resolved "https://registry.yarnpkg.com/@sentry/cli/-/cli-1.59.0.tgz#8154c6426a105c6c8a2437db085837aff8e29834" | ||
integrity sha512-9nK4uVHW7HIbOwFZNvHRWFJcD+bqjW3kMWK2UUMqQWse0Lf3xM+2o+REGGkk0S69+E4elSiukVjUPTI5aijNlA== | ||
"@sentry/[email protected]": | ||
version "6.19.7" | ||
resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-6.19.7.tgz#a40b6b72d911b5f1ed70ed3b4e7d4d4e625c0b5f" | ||
integrity sha512-oDbklp4O3MtAM4mtuwyZLrgO1qDVYIujzNJQzXmi9YzymJCuzMLSRDvhY83NNDCRxf0pds4DShgYeZdbSyKraA== | ||
dependencies: | ||
"@sentry/core" "6.19.7" | ||
"@sentry/types" "6.19.7" | ||
"@sentry/utils" "6.19.7" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]", "@sentry/cli@^1.55.0", "@sentry/cli@^1.74.4": | ||
version "1.74.4" | ||
resolved "https://registry.yarnpkg.com/@sentry/cli/-/cli-1.74.4.tgz#7df82f68045a155e1885bfcbb5d303e5259eb18e" | ||
integrity sha512-BMfzYiedbModsNBJlKeBOLVYUtwSi99LJ8gxxE4Bp5N8hyjNIN0WVrozAVZ27mqzAuy6151Za3dpmOLO86YlGw== | ||
dependencies: | ||
https-proxy-agent "^5.0.0" | ||
mkdirp "^0.5.5" | ||
node-fetch "^2.6.0" | ||
node-fetch "^2.6.7" | ||
npmlog "^4.1.2" | ||
progress "^2.0.3" | ||
proxy-from-env "^1.1.0" | ||
which "^2.0.2" | ||
|
||
"@sentry/[email protected]": | ||
version "5.12.0" | ||
|
@@ -2245,6 +2257,17 @@ | |
"@sentry/utils" "5.12.0" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "6.19.7" | ||
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.19.7.tgz#156aaa56dd7fad8c89c145be6ad7a4f7209f9785" | ||
integrity sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw== | ||
dependencies: | ||
"@sentry/hub" "6.19.7" | ||
"@sentry/minimal" "6.19.7" | ||
"@sentry/types" "6.19.7" | ||
"@sentry/utils" "6.19.7" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "5.12.0" | ||
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-5.12.0.tgz#5e8c8f249f5bdbeb8cc4ec02c2ccc53a67f2cc02" | ||
|
@@ -2254,6 +2277,15 @@ | |
"@sentry/utils" "5.12.0" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "6.19.7" | ||
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.19.7.tgz#58ad7776bbd31e9596a8ec46365b45cd8b9cfd11" | ||
integrity sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA== | ||
dependencies: | ||
"@sentry/types" "6.19.7" | ||
"@sentry/utils" "6.19.7" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "5.27.3" | ||
resolved "https://registry.yarnpkg.com/@sentry/integrations/-/integrations-5.27.3.tgz#d9a8f898c9414e9dc287fcd00d28321f54f4701e" | ||
|
@@ -2264,6 +2296,16 @@ | |
localforage "1.8.1" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "6.19.7" | ||
resolved "https://registry.yarnpkg.com/@sentry/integrations/-/integrations-6.19.7.tgz#e6e126b692077c8731644224c754012bed65b425" | ||
integrity sha512-yNeeFyuygJaV7Mdc5qWuDa13xVj5mVdECaaw2Xs4pfeHaXmRfRzZY17N8ypWFegKWxKBHynyQRMD10W5pBwJvA== | ||
dependencies: | ||
"@sentry/types" "6.19.7" | ||
"@sentry/utils" "6.19.7" | ||
localforage "^1.8.1" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "5.12.0" | ||
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-5.12.0.tgz#2611e2aa520c1edb7999e6de51bd65ec66341757" | ||
|
@@ -2273,6 +2315,15 @@ | |
"@sentry/types" "5.12.0" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "6.19.7" | ||
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.19.7.tgz#b3ee46d6abef9ef3dd4837ebcb6bdfd01b9aa7b4" | ||
integrity sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ== | ||
dependencies: | ||
"@sentry/hub" "6.19.7" | ||
"@sentry/types" "6.19.7" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "5.12.3" | ||
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-5.12.3.tgz#4a4934b04c5163fc340312eaf0d152990aa7140f" | ||
|
@@ -2288,6 +2339,20 @@ | |
lru_map "^0.3.3" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "6.19.7" | ||
resolved "https://registry.yarnpkg.com/@sentry/node/-/node-6.19.7.tgz#32963b36b48daebbd559e6f13b1deb2415448592" | ||
integrity sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg== | ||
dependencies: | ||
"@sentry/core" "6.19.7" | ||
"@sentry/hub" "6.19.7" | ||
"@sentry/types" "6.19.7" | ||
"@sentry/utils" "6.19.7" | ||
cookie "^0.4.1" | ||
https-proxy-agent "^5.0.0" | ||
lru_map "^0.3.3" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "5.12.0" | ||
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-5.12.0.tgz#5367e53c74261beea01502e3f7b6f3d822682a31" | ||
|
@@ -2298,6 +2363,11 @@ | |
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-5.27.3.tgz#d377508769bc658d672c287166c7f6c5db45660c" | ||
integrity sha512-PkWhMArFMxBb1g3HtMEL8Ea9PYae2MU0z9CMIWiqzerFy2ZpKG98IU3pt8ic4JkmKQdwB8hDiZpRPMHhW0WYwQ== | ||
|
||
"@sentry/[email protected]": | ||
version "6.19.7" | ||
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.19.7.tgz#c6b337912e588083fc2896eb012526cf7cfec7c7" | ||
integrity sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg== | ||
|
||
"@sentry/[email protected]": | ||
version "5.12.0" | ||
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-5.12.0.tgz#62967f934a3ee6d21472eac0219084e37225933e" | ||
|
@@ -2314,13 +2384,28 @@ | |
"@sentry/types" "5.27.3" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "6.19.7" | ||
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.19.7.tgz#6edd739f8185fd71afe49cbe351c1bbf5e7b7c79" | ||
integrity sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA== | ||
dependencies: | ||
"@sentry/types" "6.19.7" | ||
tslib "^1.9.3" | ||
|
||
"@sentry/[email protected]": | ||
version "1.12.1" | ||
resolved "https://registry.yarnpkg.com/@sentry/webpack-plugin/-/webpack-plugin-1.12.1.tgz#4c70c76f3faffccff1601695be742af80aeabed9" | ||
integrity sha512-8XiUNcr+HbF/Cz2lkI71+42fPNIc/ZJdU+jVWAaspP4ZwjkYSs54E3I2+7wPaqEetfObAunsQxVeFARnYms/aw== | ||
dependencies: | ||
"@sentry/cli" "^1.55.0" | ||
|
||
"@sentry/[email protected]": | ||
version "1.18.9" | ||
resolved "https://registry.yarnpkg.com/@sentry/webpack-plugin/-/webpack-plugin-1.18.9.tgz#acb48c0f96fdb9e73f1e1db374ea31ded6d883a8" | ||
integrity sha512-+TrenJrgFM0QTOwBnw0ZXWMvc0PiOebp6GN5EbGEx3JPCQqXOfXFzCaEjBtASKRgcNCL7zGly41S25YR6Hm+jw== | ||
dependencies: | ||
"@sentry/cli" "^1.74.4" | ||
|
||
"@seznam/compose-react-refs@^1.0.5": | ||
version "1.0.6" | ||
resolved "https://registry.yarnpkg.com/@seznam/compose-react-refs/-/compose-react-refs-1.0.6.tgz#6ec4e70bdd6e32f8e70b4100f27267cf306bd8df" | ||
|
@@ -6270,6 +6355,11 @@ cookie@^0.3.1: | |
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" | ||
integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= | ||
|
||
cookie@^0.4.1: | ||
version "0.4.2" | ||
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" | ||
integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== | ||
|
||
cookiejar@^2.1.0: | ||
version "2.1.2" | ||
resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.2.tgz#dd8a235530752f988f9a0844f3fc589e3111125c" | ||
|
@@ -12500,6 +12590,13 @@ [email protected]: | |
dependencies: | ||
lie "3.1.1" | ||
|
||
localforage@^1.8.1: | ||
version "1.10.0" | ||
resolved "https://registry.yarnpkg.com/localforage/-/localforage-1.10.0.tgz#5c465dc5f62b2807c3a84c0c6a1b1b3212781dd4" | ||
integrity sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg== | ||
dependencies: | ||
lie "3.1.1" | ||
|
||
locate-path@^2.0.0: | ||
version "2.0.0" | ||
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" | ||
|
@@ -13488,11 +13585,18 @@ node-fetch@^2.3.0: | |
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" | ||
integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== | ||
|
||
node-fetch@^2.6.0, node-fetch@^2.6.1: | ||
node-fetch@^2.6.1: | ||
version "2.6.1" | ||
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" | ||
integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== | ||
|
||
node-fetch@^2.6.7: | ||
version "2.7.0" | ||
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" | ||
integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== | ||
dependencies: | ||
whatwg-url "^5.0.0" | ||
|
||
[email protected]: | ||
version "0.9.0" | ||
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579" | ||
|
@@ -19131,6 +19235,11 @@ tr46@^2.1.0: | |
dependencies: | ||
punycode "^2.1.1" | ||
|
||
tr46@~0.0.3: | ||
version "0.0.3" | ||
resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" | ||
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== | ||
|
||
[email protected]: | ||
version "0.6.6" | ||
resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" | ||
|
@@ -19901,6 +20010,11 @@ web-namespaces@^1.0.0: | |
resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec" | ||
integrity sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw== | ||
|
||
webidl-conversions@^3.0.0: | ||
version "3.0.1" | ||
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" | ||
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== | ||
|
||
webidl-conversions@^4.0.2: | ||
version "4.0.2" | ||
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" | ||
|
@@ -20177,6 +20291,14 @@ whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: | |
resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" | ||
integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== | ||
|
||
whatwg-url@^5.0.0: | ||
version "5.0.0" | ||
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" | ||
integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== | ||
dependencies: | ||
tr46 "~0.0.3" | ||
webidl-conversions "^3.0.0" | ||
|
||
whatwg-url@^6.4.1: | ||
version "6.5.0" | ||
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" | ||
|
@@ -20232,7 +20354,7 @@ which@^1.2.9, which@^1.3.0, which@^1.3.1: | |
dependencies: | ||
isexe "^2.0.0" | ||
|
||
which@^2.0.1: | ||
which@^2.0.1, which@^2.0.2: | ||
version "2.0.2" | ||
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" | ||
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== | ||
|