-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'uat' into dependabot/npm_and_yarn/uat/testing-library/r…
…eact-14.1.2
- Loading branch information
Showing
27 changed files
with
525 additions
and
378 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,12 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
target-branch: "uat" |
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 |
---|---|---|
|
@@ -32,6 +32,16 @@ jobs: | |
run: npm install | ||
- name: Run build task | ||
run: npm run build | ||
- name: executing remote ssh command to backup app | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.PROD_REMOTE_HOST }} | ||
username: ${{ secrets.PROD_REMOTE_USER }} | ||
key: ${{ secrets.PROD_SSH_PRIVATE_KEY }} | ||
port: ${{ secrets.PROD_REMOTE_PORT }} | ||
script: | | ||
rm -r /root/suchseite/app-backup/ | ||
cp -r /root/suchseite/app/ /root/suchseite/app-backup/ | ||
- name: Deploy to Server | ||
uses: easingthemes/ssh-deploy@main | ||
with: | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"url": "https://github.com/bahnzumberg/zuugle-suchseite/issues/", | ||
"email": "[email protected]" | ||
}, | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"private": true, | ||
"dependencies": { | ||
"@alwaysmeticulous/recorder-loader": "^2.79.0", | ||
|
@@ -15,29 +15,30 @@ | |
"@jonkoops/matomo-tracker-react": "^0.7.0", | ||
"@mui/icons-material": "^5.14.15", | ||
"@mui/lab": "^5.0.0-alpha.71", | ||
"@mui/material": "^5.4.3", | ||
"@mui/material": "^5.15.3", | ||
"@mui/x-date-pickers": "^6.17.0", | ||
"@react-leaflet/core": "^2.1.0", | ||
"@testing-library/jest-dom": "^5.16.2", | ||
"@testing-library/react": "^14.1.2", | ||
"@testing-library/user-event": "^14.4.3", | ||
"@testing-library/user-event": "^14.5.2", | ||
"again": "0.0.1", | ||
"ajv": "^8.12.0", | ||
"axios": "^1.6.0", | ||
"axios": "^1.6.2", | ||
"buffer": "^6.0.3", | ||
"downshift": "^8.2.2", | ||
"express-rate-limit": "^7.1.4", | ||
"fast-memoize": "^2.5.2", | ||
"gpxparser": "^3.0.0", | ||
"history": "^5.3.0", | ||
"i18next": "^22.4.15", | ||
"i18next-browser-languagedetector": "^7.0.1", | ||
"i18next-browser-languagedetector": "^7.2.0", | ||
"i18next-http-backend": "^2.2.0", | ||
"js-file-download": "^0.4.12", | ||
"leaflet": "^1.9.3", | ||
"lodash": "^4.17.21", | ||
"moment": "^2.29.1", | ||
"react": "^18.2.0", | ||
"react-cache-buster": "^0.1.8", | ||
"react-dom": "^18.2.0", | ||
"react-file-download": "^0.3.5", | ||
"react-full-screen": "^1.1.0", | ||
|
@@ -62,8 +63,10 @@ | |
"@types/react": "^18.0.0" | ||
}, | ||
"scripts": { | ||
"generate-meta-tag": "node ./node_modules/react-cache-buster/dist/generate-meta-tag.js", | ||
"start": "webpack serve --mode development --port 3000 --open --hot --progress --host localhost --static .", | ||
"build": "webpack --config webpack.config_prod.js", | ||
"build": "npm run generate-meta-tag && npm run build-app", | ||
"build-app": "webpack --config webpack.config_prod.js", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject" | ||
}, | ||
|
@@ -76,9 +79,9 @@ | |
"devDependencies": { | ||
"@babel/core": "^7.13.10", | ||
"@babel/preset-env": "^7.13.10", | ||
"@babel/preset-react": "^7.16.7", | ||
"@babel/preset-react": "^7.23.3", | ||
"@svgr/plugin-svgo": "^8.1.0", | ||
"@svgr/webpack": "^7.0.0", | ||
"@svgr/webpack": "^8.1.0", | ||
"babel-loader": "^9.1.2", | ||
"copy-webpack-plugin": "^11.0.0", | ||
"css-loader": "^6.7.3", | ||
|
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react' | ||
|
||
function LoadingVersionCheck() { | ||
return ( | ||
<div> version check in progress ...</div> | ||
) | ||
} | ||
|
||
export default LoadingVersionCheck |
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
Oops, something went wrong.