Update and rework project structure with new pagebuilder concept. (based on RK Architekten and SFU Politik configs and sources)
This commit is contained in:
parent
825dfc18f9
commit
30c05143fe
219
.drone.yml
219
.drone.yml
@ -7,185 +7,112 @@ workspace:
|
||||
|
||||
steps:
|
||||
- name: load dependencies
|
||||
image: node
|
||||
pull: if-not-exists
|
||||
environment:
|
||||
FORCE_COLOR: "true"
|
||||
volumes:
|
||||
- name: cache
|
||||
path: /cache
|
||||
image: node:18
|
||||
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
|
||||
- yarn install
|
||||
|
||||
- name: modify master config
|
||||
image: bash
|
||||
pull: if-not-exists
|
||||
commands:
|
||||
- bash scripts/modify-config.sh master __MASTER_URL__
|
||||
- bash scripts/modify-config.sh master https://tibi-svelte-starter.code.testversion.online/
|
||||
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: modify dev config
|
||||
# image: bash
|
||||
# commands:
|
||||
# - bash scripts/modify-config.sh dev http://tibi-svelte-starter.code.testversion.online/
|
||||
# when:
|
||||
# branch: [dev]
|
||||
|
||||
- name: build
|
||||
image: node
|
||||
pull: if-not-exists
|
||||
volumes:
|
||||
- name: cache
|
||||
path: /cache
|
||||
image: node:18
|
||||
commands:
|
||||
- yarn build
|
||||
|
||||
- name: build ssr
|
||||
image: node
|
||||
pull: if-not-exists
|
||||
volumes:
|
||||
- name: cache
|
||||
path: /cache
|
||||
commands:
|
||||
- yarn build:server
|
||||
# - name: build admin
|
||||
# image: node:18
|
||||
# commands:
|
||||
# - yarn build:admin
|
||||
|
||||
- name: build legacy
|
||||
image: node
|
||||
pull: if-not-exists
|
||||
volumes:
|
||||
- name: cache
|
||||
path: /cache
|
||||
commands:
|
||||
- yarn build:legacy
|
||||
# - name: build ssr
|
||||
# image: node:18
|
||||
# commands:
|
||||
# - yarn build:server
|
||||
|
||||
# - name: build legacy
|
||||
# image: node:18
|
||||
# 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
|
||||
- bash scripts/preload-meta.sh public/spa.html > frontend/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
|
||||
- sed -i s/__TIMESTAMP__/$$stamp/g frontend/spa.html
|
||||
- sed -i s/__TIMESTAMP__/$$stamp/g frontend/serviceworker.js
|
||||
- cat frontend/serviceworker.js
|
||||
- cp frontend/spa.html api/templates/spa.html
|
||||
- cat frontend/spa.html
|
||||
- cat api/templates/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
|
||||
# environment:
|
||||
# RSYNC_USER: rkarchitekten_rsync_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: deploy dev
|
||||
- name: copy api config to staging
|
||||
image: instrumentisto/rsync-ssh
|
||||
pull: if-not-exists
|
||||
environment:
|
||||
RSYNC_USER: USER_PROJECT_dev
|
||||
RSYNC_PASS:
|
||||
from_secret: rsync_dev
|
||||
volumes:
|
||||
- name: data
|
||||
path: /data
|
||||
commands:
|
||||
- apk add --no-cache sshpass
|
||||
- scripts/deploy.sh ftp1.webmakers.de $${RSYNC_USER} $${RSYNC_PASS}
|
||||
- rsync -av api /data/
|
||||
when:
|
||||
branch: [dev]
|
||||
event: [push]
|
||||
|
||||
- name: prepare notify
|
||||
image: cypress/base
|
||||
pull: if-not-exists
|
||||
- name: review in staging
|
||||
image: docker/compose:1.22.0
|
||||
commands:
|
||||
- find cypress -type f -wholename "cypress/videos/*" -or -wholename "cypress/screenshots/*" | tar -cvf cypress-media.tar -T -
|
||||
- docker-compose -p ${DRONE_BRANCH}-${DRONE_REPO_NAME}-${DRONE_REPO_OWNER} up -d --build --remove-orphans
|
||||
volumes:
|
||||
- name: docker
|
||||
path: /var/run/docker.sock
|
||||
when:
|
||||
status:
|
||||
- failure
|
||||
branch: [dev]
|
||||
event: [push]
|
||||
|
||||
- name: notify
|
||||
image: drillster/drone-email
|
||||
pull: if-not-exists
|
||||
settings:
|
||||
from: noreply@ci.gitbase.de
|
||||
host: smtp.basehosts.de
|
||||
attachment: cypress-media.tar
|
||||
- name: deploy master
|
||||
image: instrumentisto/rsync-ssh
|
||||
environment:
|
||||
RSYNC_USER: rkarchitekten_rsync_master
|
||||
RSYNC_PASS:
|
||||
from_secret: rsync_master
|
||||
commands:
|
||||
- apk add --no-cache sshpass curl
|
||||
- scripts/deploy.sh ftp1.webmakers.de $${RSYNC_USER} $${RSYNC_PASS}
|
||||
- curl -X POST "https://tibi-svelte-starter.code.testversion.online//api/ssr?token=__SSR_TOKEN__&clear=1"
|
||||
when:
|
||||
status:
|
||||
- failure
|
||||
branch: [master]
|
||||
event: [push]
|
||||
|
||||
########
|
||||
volumes:
|
||||
- name: cache
|
||||
- name: data
|
||||
host:
|
||||
path: /tmp/cache/drone/${DRONE_REPO}
|
||||
path: /data/${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}/${DRONE_BRANCH}
|
||||
- name: docker
|
||||
host:
|
||||
path: /var/run/docker.sock
|
||||
|
2
.env
2
.env
@ -3,4 +3,4 @@ TIBI_PREFIX=tibi
|
||||
TIBI_NAMESPACE=__NAMESPACE__
|
||||
# code-server user
|
||||
UID=100
|
||||
GID=101
|
||||
GID=101
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,6 +1,6 @@
|
||||
_temp/
|
||||
node_modules/
|
||||
dist/
|
||||
frontend/
|
||||
build/
|
||||
build_ssr/
|
||||
stat/
|
||||
|
15
.vscode/launch.json
vendored
Normal file
15
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
// 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"
|
||||
}
|
||||
]
|
||||
}
|
27
.vscode/settings.json
vendored
27
.vscode/settings.json
vendored
@ -39,5 +39,30 @@
|
||||
"event": "onFileChange"
|
||||
}
|
||||
],
|
||||
"i18n-ally.localesPaths": []
|
||||
"i18n-ally.localesPaths": [],
|
||||
"workbench.colorCustomizations": {
|
||||
"activityBar.activeBackground": "#296221",
|
||||
"activityBar.background": "#296221",
|
||||
"activityBar.foreground": "#ffffff",
|
||||
"activityBar.inactiveForeground": "#ffffff99",
|
||||
"activityBarBadge.background": "#2fce11",
|
||||
"activityBarBadge.foreground": "#15202b",
|
||||
"commandCenter.border": "#00000099",
|
||||
"editorGroup.border": "#296221",
|
||||
"panel.border": "#296221",
|
||||
"sash.hoverBorder": "#296221",
|
||||
"sideBar.border": "#296221",
|
||||
"statusBar.background": "#58585a",
|
||||
"statusBar.border": "#58585a",
|
||||
"statusBar.foreground": "#ffffff",
|
||||
"statusBarItem.hoverBackground": "#296221",
|
||||
"statusBarItem.remoteBackground": "#58585a",
|
||||
"statusBarItem.remoteForeground": "#ffffff",
|
||||
"tab.activeBorder": "#296221",
|
||||
"titleBar.activeBackground": "#58585a",
|
||||
"titleBar.activeForeground": "#ffffff",
|
||||
"titleBar.border": "#58585a",
|
||||
"titleBar.inactiveBackground": "#58585a99",
|
||||
"titleBar.inactiveForeground": "#ffffff99"
|
||||
}
|
||||
}
|
||||
|
BIN
.yarn/cache/@ampproject-remapping-npm-2.1.2-d1536e36d6-e023f92cdd.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@ampproject-remapping-npm-2.1.2-d1536e36d6-e023f92cdd.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@ampproject-remapping-npm-2.2.0-114878fa50-d74d170d06.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@ampproject-remapping-npm-2.2.0-114878fa50-d74d170d06.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-crypto-ie11-detection-npm-2.0.2-58e49ef996-713293deea.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-crypto-ie11-detection-npm-2.0.2-58e49ef996-713293deea.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-crypto-sha256-browser-npm-2.0.0-cc43d01c67-7bc1ff042d.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-crypto-sha256-browser-npm-2.0.0-cc43d01c67-7bc1ff042d.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-crypto-sha256-js-npm-2.0.0-352a1e69d9-e4abf9baec.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-crypto-sha256-js-npm-2.0.0-352a1e69d9-e4abf9baec.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-crypto-sha256-js-npm-2.0.2-09dc003206-9125ec65a2.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-crypto-sha256-js-npm-2.0.2-09dc003206-9125ec65a2.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-crypto-supports-web-crypto-npm-2.0.2-8a95e196ac-03d04d2929.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-crypto-supports-web-crypto-npm-2.0.2-8a95e196ac-03d04d2929.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-crypto-util-npm-2.0.2-aebd3ca6c4-13cb33a390.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-crypto-util-npm-2.0.2-aebd3ca6c4-13cb33a390.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-abort-controller-npm-3.212.0-6506486df1-ba69d926f6.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-abort-controller-npm-3.212.0-6506486df1-ba69d926f6.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-client-cognito-identity-npm-3.212.0-8987577411-65725ee9ca.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-client-cognito-identity-npm-3.212.0-8987577411-65725ee9ca.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-client-sso-npm-3.212.0-af9e1bd554-14426e2001.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-client-sso-npm-3.212.0-af9e1bd554-14426e2001.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-client-sso-oidc-npm-3.212.0-52df0682c6-45f32b8c0a.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-client-sso-oidc-npm-3.212.0-52df0682c6-45f32b8c0a.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-client-sts-npm-3.212.0-e6a545cbba-6ac588957b.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-client-sts-npm-3.212.0-e6a545cbba-6ac588957b.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/psl-npm-1.8.0-226099d70e-6150048ed2.zip → .yarn/cache/@aws-sdk-config-resolver-npm-3.212.0-f9d6133b0d-2d2844b93c.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/psl-npm-1.8.0-226099d70e-6150048ed2.zip → .yarn/cache/@aws-sdk-config-resolver-npm-3.212.0-f9d6133b0d-2d2844b93c.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-credential-provider-cognito-identity-npm-3.212.0-4ce81eb386-4a96d5bcac.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-credential-provider-cognito-identity-npm-3.212.0-4ce81eb386-4a96d5bcac.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-credential-provider-env-npm-3.212.0-112714f16a-da7af6765a.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-credential-provider-env-npm-3.212.0-112714f16a-da7af6765a.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-credential-provider-imds-npm-3.212.0-ffe3fc32db-4b3c31bc88.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-credential-provider-imds-npm-3.212.0-ffe3fc32db-4b3c31bc88.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-credential-provider-ini-npm-3.212.0-1cd414a39e-de60d4729e.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-credential-provider-ini-npm-3.212.0-1cd414a39e-de60d4729e.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-credential-provider-node-npm-3.212.0-6ac44759c0-421a65b57c.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-credential-provider-node-npm-3.212.0-6ac44759c0-421a65b57c.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-credential-provider-process-npm-3.212.0-1a23c0dbee-4842577d8c.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-credential-provider-process-npm-3.212.0-1a23c0dbee-4842577d8c.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-credential-provider-sso-npm-3.212.0-b9b5c2f982-b575af71e2.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-credential-provider-sso-npm-3.212.0-b9b5c2f982-b575af71e2.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-credential-provider-web-identity-npm-3.212.0-535b6f61bb-1bef8b133f.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-credential-provider-web-identity-npm-3.212.0-535b6f61bb-1bef8b133f.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-credential-providers-npm-3.212.0-3f2adce2d8-d74428fade.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-credential-providers-npm-3.212.0-3f2adce2d8-d74428fade.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-fetch-http-handler-npm-3.212.0-2f06e7cc19-477601560d.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-fetch-http-handler-npm-3.212.0-2f06e7cc19-477601560d.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-hash-node-npm-3.212.0-12275bfb8c-f5855ff20e.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-hash-node-npm-3.212.0-12275bfb8c-f5855ff20e.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-invalid-dependency-npm-3.212.0-c92913e1a0-c71f32895f.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-invalid-dependency-npm-3.212.0-c92913e1a0-c71f32895f.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-is-array-buffer-npm-3.201.0-ecd842dff4-295450b417.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-is-array-buffer-npm-3.201.0-ecd842dff4-295450b417.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-content-length-npm-3.212.0-31b14ea8f9-ef6a5467b8.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-content-length-npm-3.212.0-31b14ea8f9-ef6a5467b8.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-endpoint-npm-3.212.0-b82c45b8a6-0b34bd25df.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-endpoint-npm-3.212.0-b82c45b8a6-0b34bd25df.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-host-header-npm-3.212.0-07032a8e25-c852de97a8.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-host-header-npm-3.212.0-07032a8e25-c852de97a8.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-logger-npm-3.212.0-7043fa72db-1bc12d88da.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-logger-npm-3.212.0-7043fa72db-1bc12d88da.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-recursion-detection-npm-3.212.0-67e052cf2c-65cb31460d.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-recursion-detection-npm-3.212.0-67e052cf2c-65cb31460d.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-retry-npm-3.212.0-bb19a165d3-1e221bf495.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-retry-npm-3.212.0-bb19a165d3-1e221bf495.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-sdk-sts-npm-3.212.0-2c8f0552d4-af3a03802e.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-sdk-sts-npm-3.212.0-2c8f0552d4-af3a03802e.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-serde-npm-3.212.0-23e638ed44-1d9438e1e3.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-serde-npm-3.212.0-23e638ed44-1d9438e1e3.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-signing-npm-3.212.0-b4020e1b37-f9e2c07a9e.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-signing-npm-3.212.0-b4020e1b37-f9e2c07a9e.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-stack-npm-3.212.0-cbe72a2bb8-b9ce8fdae5.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-stack-npm-3.212.0-cbe72a2bb8-b9ce8fdae5.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-middleware-user-agent-npm-3.212.0-3368020f1e-ef18b7b775.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-middleware-user-agent-npm-3.212.0-3368020f1e-ef18b7b775.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-node-config-provider-npm-3.212.0-7d9b9e74b7-c8e742c225.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-node-config-provider-npm-3.212.0-7d9b9e74b7-c8e742c225.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-node-http-handler-npm-3.212.0-6e14326df6-052e4a3854.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-node-http-handler-npm-3.212.0-6e14326df6-052e4a3854.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-property-provider-npm-3.212.0-0fa9a34660-ac30dd5777.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-property-provider-npm-3.212.0-0fa9a34660-ac30dd5777.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-protocol-http-npm-3.212.0-76444391f0-6330d3259a.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-protocol-http-npm-3.212.0-76444391f0-6330d3259a.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-querystring-builder-npm-3.212.0-8cf8ed4ace-0bbd748f54.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-querystring-builder-npm-3.212.0-8cf8ed4ace-0bbd748f54.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-querystring-parser-npm-3.212.0-225a339a24-ab73e0d3a4.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-querystring-parser-npm-3.212.0-225a339a24-ab73e0d3a4.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-service-error-classification-npm-3.212.0-ebdc3a85b4-844f149d4a.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-service-error-classification-npm-3.212.0-ebdc3a85b4-844f149d4a.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-shared-ini-file-loader-npm-3.212.0-6513db38d0-2c4f78b163.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-shared-ini-file-loader-npm-3.212.0-6513db38d0-2c4f78b163.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-signature-v4-npm-3.212.0-351297d360-dcbdb41fcb.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-signature-v4-npm-3.212.0-351297d360-dcbdb41fcb.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-smithy-client-npm-3.212.0-ef4b32aed3-ecaa51cd72.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-smithy-client-npm-3.212.0-ef4b32aed3-ecaa51cd72.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-token-providers-npm-3.212.0-7b2ed13f3c-be11407716.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-token-providers-npm-3.212.0-7b2ed13f3c-be11407716.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-types-npm-3.212.0-a8e918442e-ba085aa2f7.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-types-npm-3.212.0-a8e918442e-ba085aa2f7.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-url-parser-npm-3.212.0-998b61f48b-cd1c837a25.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-url-parser-npm-3.212.0-998b61f48b-cd1c837a25.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-base64-npm-3.208.0-5d53487036-2ccab3453a.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-base64-npm-3.208.0-5d53487036-2ccab3453a.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-body-length-browser-npm-3.188.0-373c33bcdb-1b08bd1e63.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-body-length-browser-npm-3.188.0-373c33bcdb-1b08bd1e63.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-body-length-node-npm-3.208.0-f5dbedc375-986b42b358.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-body-length-node-npm-3.208.0-f5dbedc375-986b42b358.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-buffer-from-npm-3.208.0-71caf9e48b-00bfa4d449.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-buffer-from-npm-3.208.0-71caf9e48b-00bfa4d449.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-config-provider-npm-3.208.0-0655efa646-97b0414b12.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-config-provider-npm-3.208.0-0655efa646-97b0414b12.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-defaults-mode-browser-npm-3.212.0-d0a893ef2f-75fd275426.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-defaults-mode-browser-npm-3.212.0-d0a893ef2f-75fd275426.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-defaults-mode-node-npm-3.212.0-527ffc0901-ab2151cce3.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-defaults-mode-node-npm-3.212.0-527ffc0901-ab2151cce3.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-endpoints-npm-3.212.0-915e8170c0-6c1d9e47de.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-endpoints-npm-3.212.0-915e8170c0-6c1d9e47de.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-hex-encoding-npm-3.201.0-77317d3d40-a27f3365df.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-hex-encoding-npm-3.201.0-77317d3d40-a27f3365df.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-locate-window-npm-3.208.0-a3531f344f-7518c110c4.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-locate-window-npm-3.208.0-a3531f344f-7518c110c4.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-middleware-npm-3.212.0-469103c5bc-d4bd527193.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-middleware-npm-3.212.0-469103c5bc-d4bd527193.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-uri-escape-npm-3.201.0-5b81898fe5-8bd751459e.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-uri-escape-npm-3.201.0-5b81898fe5-8bd751459e.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-user-agent-node-npm-3.212.0-12e21ef1f3-6d5f0bb7f6.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-user-agent-node-npm-3.212.0-12e21ef1f3-6d5f0bb7f6.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-utf8-browser-npm-3.188.0-2fece0e84a-dacd27164a.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-utf8-browser-npm-3.188.0-2fece0e84a-dacd27164a.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@aws-sdk-util-utf8-node-npm-3.208.0-1def8be722-0f4c1d0d3f.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@aws-sdk-util-utf8-node-npm-3.208.0-1def8be722-0f4c1d0d3f.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-code-frame-npm-7.16.0-13dafb7fe1-8961d0302e.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-code-frame-npm-7.16.0-13dafb7fe1-8961d0302e.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-compat-data-npm-7.16.4-9128f11195-4949ce54ea.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-compat-data-npm-7.16.4-9128f11195-4949ce54ea.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-compat-data-npm-7.17.7-cb4c3e4df9-bf13476676.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-compat-data-npm-7.17.7-cb4c3e4df9-bf13476676.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-compat-data-npm-7.19.1-f12bc5071a-f985887ea0.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-compat-data-npm-7.19.1-f12bc5071a-f985887ea0.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-compat-data-npm-7.19.4-579e57594f-757fdaeb67.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-compat-data-npm-7.19.4-579e57594f-757fdaeb67.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-compat-data-npm-7.20.1-4eea2d1c20-989b9b7a6f.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@babel-compat-data-npm-7.20.1-4eea2d1c20-989b9b7a6f.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-core-npm-7.16.0-5612f0ce31-a140f669da.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-core-npm-7.16.0-5612f0ce31-a140f669da.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-core-npm-7.19.3-24bbc57b64-dd88331120.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-core-npm-7.19.3-24bbc57b64-dd88331120.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-core-npm-7.20.2-7fb00344fc-98faaaef26.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@babel-core-npm-7.20.2-7fb00344fc-98faaaef26.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-generator-npm-7.16.0-3f22faa87e-9ff53e0db7.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-generator-npm-7.16.0-3f22faa87e-9ff53e0db7.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-generator-npm-7.19.0-30db665b14-aa3d5785cf.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-generator-npm-7.19.0-30db665b14-aa3d5785cf.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-generator-npm-7.19.5-a5fa486490-a66eafc540.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-generator-npm-7.19.5-a5fa486490-a66eafc540.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-generator-npm-7.20.4-97edf6df16-967b59f18e.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@babel-generator-npm-7.20.4-97edf6df16-967b59f18e.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-annotate-as-pure-npm-7.16.0-7d5d6eb28a-0db7610698.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-annotate-as-pure-npm-7.16.0-7d5d6eb28a-0db7610698.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.16.3-200287cc80-038bcd43ac.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.16.3-200287cc80-038bcd43ac.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.17.7-b0b90e42d8-24bf851539.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.17.7-b0b90e42d8-24bf851539.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.19.1-4f8302bda9-c2d3039265.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.19.1-4f8302bda9-c2d3039265.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.19.3-ba5dbffed2-aafcb4490c.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.19.3-ba5dbffed2-aafcb4490c.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.20.0-f842a8700a-bc183f2109.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@babel-helper-compilation-targets-npm-7.20.0-f842a8700a-bc183f2109.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.19.0-684397371f-f0c6fb77b6.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.19.0-684397371f-f0c6fb77b6.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.20.2-ec8dd54035-e89a8841db.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.20.2-ec8dd54035-e89a8841db.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@babel-helper-create-regexp-features-plugin-npm-7.16.0-9afb84be3e-d6230477e1.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-create-regexp-features-plugin-npm-7.16.0-9afb84be3e-d6230477e1.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-function-name-npm-7.16.0-c205b29083-8c02371d28.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-function-name-npm-7.16.0-c205b29083-8c02371d28.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-get-function-arity-npm-7.16.0-f1df8e3e32-1a68322c7b.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-get-function-arity-npm-7.16.0-f1df8e3e32-1a68322c7b.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-hoist-variables-npm-7.16.0-9526445efc-2ee5b400c2.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-hoist-variables-npm-7.16.0-9526445efc-2ee5b400c2.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-member-expression-to-functions-npm-7.16.0-714f06863b-58ef8e3a4a.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-member-expression-to-functions-npm-7.16.0-714f06863b-58ef8e3a4a.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-module-imports-npm-7.16.0-ae62b2ede7-8e1eb9ac39.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-module-imports-npm-7.16.0-ae62b2ede7-8e1eb9ac39.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@babel-helper-module-transforms-npm-7.16.0-928840049e-a3d0e5556f.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@babel-helper-module-transforms-npm-7.16.0-928840049e-a3d0e5556f.zip
(Stored with Git LFS)
vendored
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user