Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 30fe289199 | |||
| a35e2ab9f1 | |||
| d5257fa606 |
@@ -1 +0,0 @@
|
|||||||
code:$apr1$AeePIAei$E9E6E6jtFFtwmtGhIEG.Y/
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
code:$apr1$AeePIAei$E9E6E6jtFFtwmtGhIEG.Y/
|
|
||||||
web:$apr1$/zc/TBtD$ZGr3RqPiULYMD0kJUup5E0
|
|
||||||
191
.drone.yml
Normal file
191
.drone.yml
Normal file
@@ -0,0 +1,191 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: default
|
||||||
|
|
||||||
|
workspace:
|
||||||
|
path: /drone/workdir
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: load dependencies
|
||||||
|
image: node
|
||||||
|
pull: if-not-exists
|
||||||
|
environment:
|
||||||
|
FORCE_COLOR: "true"
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /cache
|
||||||
|
commands:
|
||||||
|
- mkdir -p /cache/node_modules
|
||||||
|
- mkdir -p /cache/user-cache
|
||||||
|
- ln -s /cache/node_modules ./node_modules
|
||||||
|
- ln -s /cache/user-cache ~/.cache
|
||||||
|
- echo cache=/cache/npm-cache >> .npmrc
|
||||||
|
- "echo 'enableGlobalCache: false' >> .yarnrc"
|
||||||
|
- 'echo ''cacheFolder: "/cache/yarn-cache"'' >> .yarnrc'
|
||||||
|
- 'echo ''yarn-offline-mirror "/cache/npm-packages-offline-cache"'' >> .yarnrc'
|
||||||
|
- "echo 'yarn-offline-mirror-pruning: true' >> .yarnrc"
|
||||||
|
- cat .yarnrc
|
||||||
|
- yarn install --verbose --frozen-lockfile
|
||||||
|
|
||||||
|
- name: mongo
|
||||||
|
image: mongo
|
||||||
|
pull: if-not-exists
|
||||||
|
detach: true
|
||||||
|
|
||||||
|
- name: maildev
|
||||||
|
image: node
|
||||||
|
pull: if-not-exists
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /cache
|
||||||
|
commands:
|
||||||
|
- yarn run maildev --web 80 --smtp 25 -v --hide-extensions=STARTTLS
|
||||||
|
detach: true
|
||||||
|
|
||||||
|
- name: liveserver
|
||||||
|
image: node
|
||||||
|
pull: if-not-exists
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /cache
|
||||||
|
commands:
|
||||||
|
- yarn run -- live-server --no-browser --port=80 --ignore='*' --entry-file=spa.html --no-css-inject --proxy=/api:http://tibi-server:8080/api/v1/_/__NAMESPACE__ dist
|
||||||
|
detach: true
|
||||||
|
|
||||||
|
- name: tibi-server
|
||||||
|
image: registry.webmakers.de/tibi/tibi-server
|
||||||
|
pull: never
|
||||||
|
environment:
|
||||||
|
DB_DIAL: mongodb://mongo
|
||||||
|
API_PORT: 8080
|
||||||
|
MAIL_HOST: maildev:25
|
||||||
|
detach: true
|
||||||
|
|
||||||
|
- name: cypress run
|
||||||
|
image: cypress/base
|
||||||
|
pull: if-not-exists
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /cache
|
||||||
|
environment:
|
||||||
|
FORCE_COLOR: "true"
|
||||||
|
CYPRESS_BASE_URL: http://liveserver
|
||||||
|
CYPRESS_CI: "true"
|
||||||
|
CYPRESS_mongodbUri: mongodb://mongo
|
||||||
|
CYPRESS_tibiApiUrl: http://tibi-server:8080/api/v1
|
||||||
|
CYPRESS_projectApiConfig: /drone/workdir/api/config.yml
|
||||||
|
commands:
|
||||||
|
- ln -s /cache/user-cache ~/.cache
|
||||||
|
- yarn build:instanbul
|
||||||
|
- yarn cy:run
|
||||||
|
- yarn run nyc report --exclude-after-remap false
|
||||||
|
|
||||||
|
- name: modify master config
|
||||||
|
image: bash
|
||||||
|
pull: if-not-exists
|
||||||
|
commands:
|
||||||
|
- bash scripts/modify-config.sh master __MASTER_URL__
|
||||||
|
when:
|
||||||
|
branch: [master]
|
||||||
|
|
||||||
|
- name: modify dev config
|
||||||
|
image: bash
|
||||||
|
pull: if-not-exists
|
||||||
|
commands:
|
||||||
|
- bash scripts/modify-config.sh dev __DEV_URL__
|
||||||
|
when:
|
||||||
|
branch: [dev]
|
||||||
|
|
||||||
|
- name: build
|
||||||
|
image: node
|
||||||
|
pull: if-not-exists
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /cache
|
||||||
|
commands:
|
||||||
|
- yarn build
|
||||||
|
|
||||||
|
- name: build ssr
|
||||||
|
image: node
|
||||||
|
pull: if-not-exists
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /cache
|
||||||
|
commands:
|
||||||
|
- yarn build:server
|
||||||
|
|
||||||
|
- name: build legacy
|
||||||
|
image: node
|
||||||
|
pull: if-not-exists
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /cache
|
||||||
|
commands:
|
||||||
|
- yarn build:legacy
|
||||||
|
|
||||||
|
- name: modify html
|
||||||
|
image: bash
|
||||||
|
pull: if-not-exists
|
||||||
|
commands:
|
||||||
|
- bash scripts/preload-meta.sh public/spa.html
|
||||||
|
- bash scripts/preload-meta.sh public/spa.html > dist/spa.html
|
||||||
|
- export stamp=`date +%s`
|
||||||
|
- echo $$stamp
|
||||||
|
- sed -i s/__TIMESTAMP__/$$stamp/g dist/spa.html
|
||||||
|
- sed -i s/__TIMESTAMP__/$$stamp/g dist/serviceworker.js
|
||||||
|
- cat dist/serviceworker.js
|
||||||
|
- cp dist/spa.html api/templates/spa.html
|
||||||
|
- cat dist/spa.html
|
||||||
|
|
||||||
|
- name: deploy master
|
||||||
|
image: instrumentisto/rsync-ssh
|
||||||
|
pull: if-not-exists
|
||||||
|
environment:
|
||||||
|
RSYNC_USER: USER_PROJECT_master
|
||||||
|
RSYNC_PASS:
|
||||||
|
from_secret: rsync_master
|
||||||
|
commands:
|
||||||
|
- apk add --no-cache sshpass
|
||||||
|
- scripts/deploy.sh ftp1.webmakers.de $${RSYNC_USER} $${RSYNC_PASS}
|
||||||
|
when:
|
||||||
|
branch: [master]
|
||||||
|
event: [push]
|
||||||
|
|
||||||
|
- name: deploy dev
|
||||||
|
image: instrumentisto/rsync-ssh
|
||||||
|
pull: if-not-exists
|
||||||
|
environment:
|
||||||
|
RSYNC_USER: USER_PROJECT_dev
|
||||||
|
RSYNC_PASS:
|
||||||
|
from_secret: rsync_dev
|
||||||
|
commands:
|
||||||
|
- apk add --no-cache sshpass
|
||||||
|
- scripts/deploy.sh ftp1.webmakers.de $${RSYNC_USER} $${RSYNC_PASS}
|
||||||
|
when:
|
||||||
|
branch: [dev]
|
||||||
|
event: [push]
|
||||||
|
|
||||||
|
- name: prepare notify
|
||||||
|
image: cypress/base
|
||||||
|
pull: if-not-exists
|
||||||
|
commands:
|
||||||
|
- find cypress -type f -wholename "cypress/videos/*" -or -wholename "cypress/screenshots/*" | tar -cvf cypress-media.tar -T -
|
||||||
|
when:
|
||||||
|
status:
|
||||||
|
- failure
|
||||||
|
|
||||||
|
- name: notify
|
||||||
|
image: drillster/drone-email
|
||||||
|
pull: if-not-exists
|
||||||
|
settings:
|
||||||
|
from: noreply@ci.gitbase.de
|
||||||
|
host: smtp.basehosts.de
|
||||||
|
attachment: cypress-media.tar
|
||||||
|
when:
|
||||||
|
status:
|
||||||
|
- failure
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
host:
|
||||||
|
path: /tmp/cache/drone/${DRONE_REPO}
|
||||||
23
.env
23
.env
@@ -1,23 +0,0 @@
|
|||||||
PROJECT_NAME=__PROJECT_NAME__
|
|
||||||
TIBI_PREFIX=tibi
|
|
||||||
TIBI_NAMESPACE=__TIBI_NAMESPACE__
|
|
||||||
CODER_UID=100
|
|
||||||
CODER_GID=101
|
|
||||||
|
|
||||||
SENTRY_URL=https://sentry.basehosts.de
|
|
||||||
SENTRY_ORG=webmakers
|
|
||||||
SENTRY_PROJECT=
|
|
||||||
|
|
||||||
RSYNC_HOST=ftp1.webmakers.de
|
|
||||||
RSYNC_PORT=22223
|
|
||||||
|
|
||||||
PRODUCTION_SERVER=dock4.basehosts.de
|
|
||||||
PRODUCTION_TIBI_PREFIX=wmbasic
|
|
||||||
PRODUCTION_PATH=/webroots2/customers/_CUSTOMER_ID_/____
|
|
||||||
|
|
||||||
STAGING_PATH=/staging/__ORG__/__PROJECT__/dev
|
|
||||||
|
|
||||||
LIVE_URL=https://www
|
|
||||||
STAGING_URL=https://dev-__PROJECT_NAME__.staging.testversion.online
|
|
||||||
|
|
||||||
#START_SCRIPT=:ssr
|
|
||||||
@@ -1,201 +0,0 @@
|
|||||||
name: deploy to production
|
|
||||||
|
|
||||||
on: "push"
|
|
||||||
# push:
|
|
||||||
# branches:
|
|
||||||
# - master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
name: deploy
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: gitbase.de/actions/ubuntu:latest
|
|
||||||
volumes:
|
|
||||||
- /data:/data
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
lfs: true
|
|
||||||
submodules: true
|
|
||||||
|
|
||||||
- run: |
|
|
||||||
git fetch --force --tags
|
|
||||||
|
|
||||||
# setup node 20
|
|
||||||
- name: setup node 20
|
|
||||||
uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version: 20
|
|
||||||
|
|
||||||
- name: install dependencies
|
|
||||||
run: |
|
|
||||||
npm install -g yarn
|
|
||||||
yarn install
|
|
||||||
|
|
||||||
- name: modify config
|
|
||||||
run: |
|
|
||||||
sed -i 's#\(sentryEnvironment.*\)".*"#\1"${GITHUB_REF_NAME}"#g' frontend/src/config.ts
|
|
||||||
sed -i 's#//\( sentry\\.init.*\)#\1#g' frontend/src/config.ts
|
|
||||||
sed -i 's#metrictCall = false#metrictCall = true#g' frontend/src/config.ts
|
|
||||||
|
|
||||||
set -o allexport
|
|
||||||
. ./.env
|
|
||||||
echo "PROJECT_RELEASE=${SENTRY_PROJECT}.r`git rev-list HEAD --count`-`git describe --all --long | sed 's+/+-+'`" >> .env
|
|
||||||
. ./.env
|
|
||||||
set +o allexport
|
|
||||||
echo ______ .env ______
|
|
||||||
cat .env
|
|
||||||
echo
|
|
||||||
sed -i 's#\(const release = \).*#\1"'${PROJECT_RELEASE}'"#g' api/hooks/config-client.js
|
|
||||||
sed -i 's#\(const originURL = \).*#\1"'${LIVE_URL}'"#g' api/hooks/config-client.js
|
|
||||||
|
|
||||||
# bash scripts/preload-meta.sh frontend/spa.html
|
|
||||||
# bash scripts/preload-meta.sh frontend/spa.html > frontend/_spa.html
|
|
||||||
# cp frontend/_spa.html frontend/spa.html
|
|
||||||
|
|
||||||
export stamp=`date +%s`
|
|
||||||
sed -i s/__TIMESTAMP__/$stamp/g frontend/spa.html
|
|
||||||
# sed -i s/__TIMESTAMP__/$stamp/g frontend/serviceworker.js
|
|
||||||
# cat frontend/serviceworker.js
|
|
||||||
|
|
||||||
test -d api/templates && test -L api/templates/spa.html && rm api/templates/spa.html || test -d api/templates && test -f api/templates/spa.html && rm api/templates/spa.html
|
|
||||||
test -d api/templates && cp frontend/spa.html api/templates/spa.html
|
|
||||||
cp frontend/spa.html api/templates/spa.html
|
|
||||||
echo ______ frontend/spa.html ______
|
|
||||||
cat frontend/spa.html
|
|
||||||
|
|
||||||
sed -i 's#\(PREVIEW_URL=\).*#\1'${LIVE_URL}/preview'#g' api/config.yml.env
|
|
||||||
echo ______ api/config.yml.env ______
|
|
||||||
cat api/config.yml.env
|
|
||||||
|
|
||||||
- name: build
|
|
||||||
env:
|
|
||||||
FORCE_COLOR: "true"
|
|
||||||
run: |
|
|
||||||
yarn build
|
|
||||||
|
|
||||||
- name: build admin
|
|
||||||
env:
|
|
||||||
FORCE_COLOR: "true"
|
|
||||||
run: |
|
|
||||||
yarn build:admin
|
|
||||||
|
|
||||||
- name: build ssr
|
|
||||||
env:
|
|
||||||
FORCE_COLOR: "true"
|
|
||||||
run: |
|
|
||||||
yarn build:server
|
|
||||||
|
|
||||||
- name: build legacy
|
|
||||||
env:
|
|
||||||
FORCE_COLOR: "true"
|
|
||||||
run: |
|
|
||||||
yarn build:legacy
|
|
||||||
|
|
||||||
- name: staging
|
|
||||||
# only if branch is dev
|
|
||||||
if: github.ref == 'refs/heads/dev'
|
|
||||||
env:
|
|
||||||
# /data/ORG/PROJECT/BRANCH
|
|
||||||
API_BASEDIR: /data/${{ github.repository }}/${{ github.ref_name }}
|
|
||||||
COMPOSE_PROJECT_NAME: ${{ github.repository }}-${{ github.ref_name }}
|
|
||||||
run: |
|
|
||||||
# read .env
|
|
||||||
set -o allexport
|
|
||||||
. ./.env
|
|
||||||
. ./api/config.yml.env
|
|
||||||
set +o allexport
|
|
||||||
|
|
||||||
# replace / with -
|
|
||||||
COMPOSE_PROJECT_NAME=`echo $COMPOSE_PROJECT_NAME | sed 's+/+-+g'`
|
|
||||||
|
|
||||||
mkdir -p $API_BASEDIR/frontend
|
|
||||||
rsync -av api $API_BASEDIR/
|
|
||||||
rsync -av frontend/dist $API_BASEDIR/frontend/
|
|
||||||
rsync -av frontend/assets $API_BASEDIR/frontend/
|
|
||||||
sed -i 's#\(PREVIEW_URL=\).*#\1'${STAGING_URL}/preview'#g' $API_BASEDIR/api/config.yml.env
|
|
||||||
|
|
||||||
docker compose -f docker-compose-staging.yml -p $COMPOSE_PROJECT_NAME up -d --build --remove-orphans
|
|
||||||
|
|
||||||
reloadUrl=${STAGING_URL}/api/_/admin/reload
|
|
||||||
curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer ${ADMIN_TOKEN}" -d '{}' "${reloadUrl}"
|
|
||||||
|
|
||||||
# clear ssr cache
|
|
||||||
ssrUrl=${STAGING_URL}/api/ssr
|
|
||||||
curl -X POST -H "Content-Type: application/json" -d '{}' "${ssrUrl}?clear=1"
|
|
||||||
|
|
||||||
- name: deploy
|
|
||||||
# only if branch is master
|
|
||||||
if: github.ref == 'refs/heads/master'
|
|
||||||
env:
|
|
||||||
RSYNC_USER: ${{ github.repository }}
|
|
||||||
RSYNC_PASS: ${{ github.token }}
|
|
||||||
BRANCH: ${{ github.ref_name }}
|
|
||||||
run: |
|
|
||||||
# read .env
|
|
||||||
set -o allexport
|
|
||||||
. ./.env
|
|
||||||
. ./api/config.yml.env
|
|
||||||
set +o allexport
|
|
||||||
|
|
||||||
|
|
||||||
# if RSYNC_USER or RSYNC_KEY is not set, exit
|
|
||||||
if [ -z "${RSYNC_USER}" ]; then
|
|
||||||
echo "RSYNC_USER missing, exiting"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if [ -z "${RSYNC_PASS}" ]; then
|
|
||||||
echo "RSYNC_PASS missing, exiting"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if [ -z "${RSYNC_HOST}" ]; then
|
|
||||||
echo "RSYNC_HOST missing, exiting"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if [ -z "${RSYNC_PORT}" ]; then
|
|
||||||
echo "RSYNC_PORT missing, exiting"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Deploying ${BRANCH} to ${RSYNC_HOST} on port ${RSYNC_PORT} as ${RSYNC_USER}"
|
|
||||||
|
|
||||||
excludes=""
|
|
||||||
if [ "${BRANCH}" = "master" ]; then
|
|
||||||
excludes='--exclude=src --exclude=*.map'
|
|
||||||
echo "master deploy, excluding $excludes"
|
|
||||||
fi
|
|
||||||
|
|
||||||
SSH_CMD="sshpass -p ${RSYNC_PASS} ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p ${RSYNC_PORT} -l ${RSYNC_USER}"
|
|
||||||
|
|
||||||
# sync frontend
|
|
||||||
rsync -rlcgD --perms -i -u -v --stats --progress \
|
|
||||||
--delete \
|
|
||||||
-e "${SSH_CMD}" \
|
|
||||||
$excludes \
|
|
||||||
frontend/ \
|
|
||||||
${RSYNC_HOST}:./frontend/ \
|
|
||||||
|
|
||||||
# sync api config
|
|
||||||
rsync -rlcgD --perms -i -u -v --stats --progress \
|
|
||||||
--delete \
|
|
||||||
-e "${SSH_CMD}" \
|
|
||||||
api/ \
|
|
||||||
${RSYNC_HOST}:./api/
|
|
||||||
|
|
||||||
# create media directory
|
|
||||||
mkdir media
|
|
||||||
chmod 770 media
|
|
||||||
rsync -rlcgD --perms -i -u -v --stats --progress \
|
|
||||||
-e "${SSH_CMD}" \
|
|
||||||
media \
|
|
||||||
${RSYNC_HOST}:./
|
|
||||||
|
|
||||||
|
|
||||||
reloadUrl=${LIVE_URL}/api/_/admin/reload
|
|
||||||
curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer ${ADMIN_TOKEN}" -d '{}' "${reloadUrl}"
|
|
||||||
|
|
||||||
# clear ssr cache
|
|
||||||
ssrUrl=${LIVE_URL}/api/ssr
|
|
||||||
curl -X POST -H "Content-Type: application/json" -d '{}' "${ssrUrl}?clear=1"
|
|
||||||
25
.github/copilot-instructions.md
vendored
25
.github/copilot-instructions.md
vendored
@@ -1,25 +0,0 @@
|
|||||||
# Copilot Instructions
|
|
||||||
|
|
||||||
## Common Instructions
|
|
||||||
|
|
||||||
- Look in the problems tab for any errors or warnings in the code
|
|
||||||
- Follow the existing code style and conventions used in the project
|
|
||||||
- Write clear and concise comments where necessary to explain complex logic
|
|
||||||
- Ensure code is modular and reusable where possible
|
|
||||||
- Write unit tests for new functionality and ensure existing tests pass, but only if there is a configured testing framework
|
|
||||||
- Avoid introducing new dependencies unless absolutely necessary, but ask the user if there is a specific library they want to use
|
|
||||||
- If you are unsure about any requirements or details, ask the user for clarification before proceeding
|
|
||||||
- Respect a11y and localization best practices if applicable, optimize for WCAG AA standards
|
|
||||||
|
|
||||||
## Toolchain
|
|
||||||
|
|
||||||
- See .env in root for project specific environment variables
|
|
||||||
- See Makefile for starting up the development environment with Docker
|
|
||||||
- If development environment is running, access the website at: https://${PROJECT_NAME}.code.testversion.online/ or ask the user for the correct URL
|
|
||||||
- You can also use Browser MCP, so ask user to connect if needed
|
|
||||||
- Esbuild is used, watching for changes in files to rebuild automatically
|
|
||||||
- To force a restart of the frontend build and dev-server run: `make restart-frontend`
|
|
||||||
- Backend is tibi-server configured in /api/ folder and also restarted if changes are detected in this folder
|
|
||||||
- To show last X lines of docker logs run: `make docker-logs-X` where X is the number
|
|
||||||
of lines you want to see
|
|
||||||
- For a11y testing use the MCP a11y tools if available
|
|
||||||
29
.gitignore
vendored
29
.gitignore
vendored
@@ -1,14 +1,17 @@
|
|||||||
api/hooks/lib/app.server*
|
_temp/
|
||||||
node_modules
|
node_modules/
|
||||||
media
|
dist/
|
||||||
tmp
|
build/
|
||||||
_temp
|
build_ssr/
|
||||||
frontend/dist
|
stat/
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
.yarn/*
|
/media/
|
||||||
!.yarn/cache
|
/test.js
|
||||||
!.yarn/patches
|
/api/templates/spa.html
|
||||||
!.yarn/plugins
|
/api/hooks/lib/app.server*
|
||||||
!.yarn/releases
|
cypress/_old
|
||||||
!.yarn/sdks
|
cypress/videos
|
||||||
!.yarn/versions
|
cypress/screenshots
|
||||||
|
.~lock.*
|
||||||
|
coverage/
|
||||||
|
.nyc_output/
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
"check-parameters"
|
"check-parameters"
|
||||||
],
|
],
|
||||||
"no-var-keyword": true,
|
"no-var-keyword": true,
|
||||||
"svelteSortOrder": "scripts-options-markup-styles",
|
"svelteSortOrder": "scripts-markup-styles",
|
||||||
"svelteStrictMode": true,
|
"svelteStrictMode": true,
|
||||||
"svelteBracketNewLine": true,
|
"svelteBracketNewLine": true,
|
||||||
"svelteAllowShorthand": true,
|
"svelteAllowShorthand": true,
|
||||||
|
|||||||
15
.vscode/launch.json
vendored
15
.vscode/launch.json
vendored
@@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
|
|
||||||
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
|
|
||||||
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"type": "pwa-msedge",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "Launch Edge against localhost",
|
|
||||||
"url": "http://localhost:5501/",
|
|
||||||
"webRoot": "${workspaceFolder}/dist"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
53
.vscode/settings.json
vendored
53
.vscode/settings.json
vendored
@@ -1,33 +1,34 @@
|
|||||||
{
|
{
|
||||||
"editor.tabCompletion": "on",
|
"eslint.alwaysShowStatus": true,
|
||||||
"diffEditor.codeLens": true,
|
"tslint.autoFixOnSave": true,
|
||||||
"editor.formatOnSave": true,
|
"editor.formatOnSave": true,
|
||||||
"editor.formatOnPaste": true,
|
"editor.formatOnPaste": true,
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||||
|
"[markdown]": {
|
||||||
|
"editor.wordWrap": "on",
|
||||||
|
"editor.defaultFormatter": "vscode.markdown-language-features"
|
||||||
|
},
|
||||||
|
"[typescriptreact]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
},
|
||||||
|
"liveServer.settings.root": "/dist",
|
||||||
|
"liveServer.settings.file": "spa.html",
|
||||||
|
"liveServer.settings.port": 5502,
|
||||||
|
"liveServer.settings.proxy": {
|
||||||
|
"enable": true,
|
||||||
|
"baseUri": "/api",
|
||||||
|
"proxyUri": "http://127.0.0.1:8080/api/v1/_/__NAMESPACE__"
|
||||||
|
},
|
||||||
|
"extensions.ignoreRecommendations": true,
|
||||||
|
"files.autoSave": "off",
|
||||||
|
"typescript.tsc.autoDetect": "off",
|
||||||
|
"npm.autoDetect": "off",
|
||||||
|
"debug.allowBreakpointsEverywhere": true,
|
||||||
|
"html.autoClosingTags": false,
|
||||||
"yaml.schemas": {
|
"yaml.schemas": {
|
||||||
"./../../cms/tibi-types/schemas/api-config/config.json": "api/config.y*ml",
|
"node_modules/tibi-types/schemas/api-config/config.json": "api/config.y*ml",
|
||||||
"./../../cms/tibi-types/schemas/api-config/collection.json": "api/collections/*.y*ml",
|
"node_modules/tibi-types/schemas/api-config/collection.json": "api/collections/*.y*ml",
|
||||||
"./../../cms/tibi-types/schemas/api-config/field.json": "api/collections/fields/*.y*ml",
|
"node_modules/tibi-types/schemas/api-config/field.json": "api/collections/fields/*.y*ml"
|
||||||
"./../../cms/tibi-types/schemas/api-config/fieldArray.json": "api/collections/fieldLists/*.y*ml",
|
|
||||||
"./../../cms/tibi-types/schemas/api-config/job.json": "api/jobs/*.y*ml",
|
|
||||||
"./../../cms/tibi-types/schemas/api-config/assets.json": "api/assets/*.y*ml"
|
|
||||||
},
|
},
|
||||||
"yaml.customTags": ["!include scalar"],
|
"yaml.customTags": ["!include scalar"]
|
||||||
"filewatcher.commands": [
|
|
||||||
{
|
|
||||||
"match": "/api/.*(\\.ya?ml|js|env)$",
|
|
||||||
"isAsync": false,
|
|
||||||
"cmd": "cd ${currentWorkspace} && scripts/reload-local-tibi.sh",
|
|
||||||
"event": "onFileChange"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"i18n-ally.localesPaths": ["frontend/locales"],
|
|
||||||
"i18n-ally.sourceLanguage": "de",
|
|
||||||
"i18n-ally.keystyle": "nested",
|
|
||||||
"[svelte]": {
|
|
||||||
"editor.defaultFormatter": "svelte.svelte-vscode"
|
|
||||||
},
|
|
||||||
"files.associations": {
|
|
||||||
"css": "tailwindcss"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
.yarn/cache/@alloc-quick-lru-npm-5.2.0-eb83517088-bdc35758b5.zip
LFS
vendored
BIN
.yarn/cache/@alloc-quick-lru-npm-5.2.0-eb83517088-bdc35758b5.zip
LFS
vendored
Binary file not shown.
BIN
.yarn/cache/@ampproject-remapping-npm-2.1.2-d1536e36d6-e023f92cdd.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@ampproject-remapping-npm-2.1.2-d1536e36d6-e023f92cdd.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-cli-npm-7.17.6-5326707a5b-362c9baf14.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-cli-npm-7.17.6-5326707a5b-362c9baf14.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-cli-npm-7.28.0-c4a4243863-9f26c6e871.zip
LFS
vendored
BIN
.yarn/cache/@babel-cli-npm-7.28.0-c4a4243863-9f26c6e871.zip
LFS
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-code-frame-npm-7.16.0-13dafb7fe1-8961d0302e.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-code-frame-npm-7.16.0-13dafb7fe1-8961d0302e.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-code-frame-npm-7.16.7-093eb9e124-db2f7faa31.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-code-frame-npm-7.16.7-093eb9e124-db2f7faa31.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-code-frame-npm-7.27.1-4dbcabb137-721b8a6e36.zip
LFS
vendored
BIN
.yarn/cache/@babel-code-frame-npm-7.27.1-4dbcabb137-721b8a6e36.zip
LFS
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-compat-data-npm-7.16.4-9128f11195-4949ce54ea.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-compat-data-npm-7.16.4-9128f11195-4949ce54ea.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-compat-data-npm-7.16.8-4a2b385eea-10da2dac5e.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-compat-data-npm-7.16.8-4a2b385eea-10da2dac5e.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-compat-data-npm-7.17.7-cb4c3e4df9-bf13476676.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-compat-data-npm-7.17.7-cb4c3e4df9-bf13476676.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-compat-data-npm-7.27.7-1eceb4277e-e71bf453a4.zip
LFS
vendored
BIN
.yarn/cache/@babel-compat-data-npm-7.27.7-1eceb4277e-e71bf453a4.zip
LFS
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-compat-data-npm-7.28.0-04d8eecea9-1a56a5e48c.zip
LFS
vendored
BIN
.yarn/cache/@babel-compat-data-npm-7.28.0-04d8eecea9-1a56a5e48c.zip
LFS
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-core-npm-7.16.0-5612f0ce31-a140f669da.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-core-npm-7.16.0-5612f0ce31-a140f669da.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-core-npm-7.17.9-a17b8c8593-2d301e4561.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-core-npm-7.17.9-a17b8c8593-2d301e4561.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-core-npm-7.28.0-2c03249042-1c86eec8d7.zip
LFS
vendored
BIN
.yarn/cache/@babel-core-npm-7.28.0-2c03249042-1c86eec8d7.zip
LFS
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-generator-npm-7.16.0-3f22faa87e-9ff53e0db7.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-generator-npm-7.16.0-3f22faa87e-9ff53e0db7.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-generator-npm-7.16.8-f9d7f9b832-83af38b347.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-generator-npm-7.16.8-f9d7f9b832-83af38b347.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-generator-npm-7.17.9-314134f0b2-afbdd4afbf.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-generator-npm-7.17.9-314134f0b2-afbdd4afbf.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-generator-npm-7.27.5-b91f717ed1-f5e6942670.zip
LFS
vendored
BIN
.yarn/cache/@babel-generator-npm-7.27.5-b91f717ed1-f5e6942670.zip
LFS
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-generator-npm-7.28.0-41b4249958-064c5ba4c0.zip
LFS
vendored
BIN
.yarn/cache/@babel-generator-npm-7.28.0-41b4249958-064c5ba4c0.zip
LFS
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-annotate-as-pure-npm-7.16.0-7d5d6eb28a-0db7610698.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-annotate-as-pure-npm-7.16.0-7d5d6eb28a-0db7610698.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-annotate-as-pure-npm-7.16.7-75d26b1e4c-d235be963f.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-annotate-as-pure-npm-7.16.7-75d26b1e4c-d235be963f.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-builder-binary-assignment-operator-visitor-npm-7.16.0-8218316996-01beb9f3f2.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-builder-binary-assignment-operator-visitor-npm-7.16.0-8218316996-01beb9f3f2.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-builder-binary-assignment-operator-visitor-npm-7.16.7-fa4a09f41d-1784f19a57.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-builder-binary-assignment-operator-visitor-npm-7.16.7-fa4a09f41d-1784f19a57.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.16.3-200287cc80-038bcd43ac.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.16.3-200287cc80-038bcd43ac.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.16.7-8031641957-7238aaee78.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.16.7-8031641957-7238aaee78.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.17.7-b0b90e42d8-24bf851539.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.17.7-b0b90e42d8-24bf851539.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.16.0-99dc71616c-0f7d1b8d41.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.16.0-99dc71616c-0f7d1b8d41.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.16.10-67b14ec5a6-2ab266aac7.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.16.10-67b14ec5a6-2ab266aac7.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-create-regexp-features-plugin-npm-7.16.0-9afb84be3e-d6230477e1.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-create-regexp-features-plugin-npm-7.16.0-9afb84be3e-d6230477e1.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-create-regexp-features-plugin-npm-7.16.7-d07c4bfa42-f6015e0b81.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-create-regexp-features-plugin-npm-7.16.7-d07c4bfa42-f6015e0b81.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-define-polyfill-provider-npm-0.3.0-c19f133e9a-372378ac42.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-define-polyfill-provider-npm-0.3.0-c19f133e9a-372378ac42.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-define-polyfill-provider-npm-0.3.1-7c6efdf410-e3e93cb22f.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-define-polyfill-provider-npm-0.3.1-7c6efdf410-e3e93cb22f.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-environment-visitor-npm-7.16.7-3ee2ba2019-c03a10105d.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-environment-visitor-npm-7.16.7-3ee2ba2019-c03a10105d.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-explode-assignable-expression-npm-7.16.0-c7497452bc-563352b5e9.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-explode-assignable-expression-npm-7.16.0-c7497452bc-563352b5e9.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-explode-assignable-expression-npm-7.16.7-29ba312670-ea2135ba36.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-explode-assignable-expression-npm-7.16.7-29ba312670-ea2135ba36.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-function-name-npm-7.16.0-c205b29083-8c02371d28.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-function-name-npm-7.16.0-c205b29083-8c02371d28.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-function-name-npm-7.16.7-aa24c7b296-fc77cbe7b1.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-function-name-npm-7.16.7-aa24c7b296-fc77cbe7b1.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-function-name-npm-7.17.9-baf558fead-a59b2e5af5.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-function-name-npm-7.17.9-baf558fead-a59b2e5af5.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-get-function-arity-npm-7.16.0-f1df8e3e32-1a68322c7b.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-get-function-arity-npm-7.16.0-f1df8e3e32-1a68322c7b.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-get-function-arity-npm-7.16.7-987b1b1bed-25d969fb20.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-get-function-arity-npm-7.16.7-987b1b1bed-25d969fb20.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-hoist-variables-npm-7.16.0-9526445efc-2ee5b400c2.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-hoist-variables-npm-7.16.0-9526445efc-2ee5b400c2.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-hoist-variables-npm-7.16.7-25cc3abba4-6ae1641f4a.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-hoist-variables-npm-7.16.7-25cc3abba4-6ae1641f4a.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-member-expression-to-functions-npm-7.16.0-714f06863b-58ef8e3a4a.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-member-expression-to-functions-npm-7.16.0-714f06863b-58ef8e3a4a.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-member-expression-to-functions-npm-7.16.7-56558bdc63-e275378022.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-member-expression-to-functions-npm-7.16.7-56558bdc63-e275378022.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-module-imports-npm-7.16.0-ae62b2ede7-8e1eb9ac39.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-module-imports-npm-7.16.0-ae62b2ede7-8e1eb9ac39.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-module-imports-npm-7.16.7-19c74fd92b-ddd2c4a600.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-module-imports-npm-7.16.7-19c74fd92b-ddd2c4a600.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-module-transforms-npm-7.16.0-928840049e-a3d0e5556f.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-module-transforms-npm-7.16.0-928840049e-a3d0e5556f.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-module-transforms-npm-7.16.7-4b3d4b8254-6e930ce776.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-module-transforms-npm-7.16.7-4b3d4b8254-6e930ce776.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-module-transforms-npm-7.17.7-d26786bf84-0b8f023aa7.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-module-transforms-npm-7.17.7-d26786bf84-0b8f023aa7.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-optimise-call-expression-npm-7.16.0-fd091f8fdf-121ae6054f.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-optimise-call-expression-npm-7.16.0-fd091f8fdf-121ae6054f.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-optimise-call-expression-npm-7.16.7-27e4a63d42-925feb877d.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-optimise-call-expression-npm-7.16.7-27e4a63d42-925feb877d.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-plugin-utils-npm-7.14.5-e35eef11cb-fe20e90a24.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-plugin-utils-npm-7.14.5-e35eef11cb-fe20e90a24.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-plugin-utils-npm-7.16.7-9e572698e0-d08dd86554.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-plugin-utils-npm-7.16.7-9e572698e0-d08dd86554.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-remap-async-to-generator-npm-7.16.4-691d3036ec-debe997695.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-remap-async-to-generator-npm-7.16.4-691d3036ec-debe997695.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-remap-async-to-generator-npm-7.16.8-9a3804d4f8-29282ee368.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-remap-async-to-generator-npm-7.16.8-9a3804d4f8-29282ee368.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-replace-supers-npm-7.16.0-e04b4caf96-61f04bbe05.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-replace-supers-npm-7.16.0-e04b4caf96-61f04bbe05.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-replace-supers-npm-7.16.7-a3d7cf1544-e5c0b6eb3d.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-replace-supers-npm-7.16.7-a3d7cf1544-e5c0b6eb3d.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-simple-access-npm-7.16.0-d2675c6f1c-2d7155f318.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-simple-access-npm-7.16.0-d2675c6f1c-2d7155f318.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-simple-access-npm-7.16.7-c4dfb1f5e7-8d22c46c5e.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-simple-access-npm-7.16.7-c4dfb1f5e7-8d22c46c5e.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-simple-access-npm-7.17.7-3274d165af-58a9bfd054.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-simple-access-npm-7.17.7-3274d165af-58a9bfd054.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-skip-transparent-expression-wrappers-npm-7.16.0-caad6e8361-b9ed2896eb.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-skip-transparent-expression-wrappers-npm-7.16.0-caad6e8361-b9ed2896eb.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-split-export-declaration-npm-7.16.0-cdfc1fe50b-8bd87b5ea2.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-split-export-declaration-npm-7.16.0-cdfc1fe50b-8bd87b5ea2.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-split-export-declaration-npm-7.16.7-5b9ae90171-e10aaf1354.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-split-export-declaration-npm-7.16.7-5b9ae90171-e10aaf1354.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-validator-identifier-npm-7.15.7-a8f354e738-f041c28c53.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-validator-identifier-npm-7.15.7-a8f354e738-f041c28c53.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-validator-identifier-npm-7.16.7-8599fb00fc-dbb3db9d18.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-validator-identifier-npm-7.16.7-8599fb00fc-dbb3db9d18.zip
LFS
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@babel-helper-validator-option-npm-7.14.5-fd38dcf0bc-1b25c34a5c.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-validator-option-npm-7.14.5-fd38dcf0bc-1b25c34a5c.zip
LFS
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-validator-option-npm-7.16.7-d13e9c1d9e-c5ccc45191.zip
LFS
vendored
Normal file
BIN
.yarn/cache/@babel-helper-validator-option-npm-7.16.7-d13e9c1d9e-c5ccc45191.zip
LFS
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user