Skip to content

Commit b53e232

Browse files
committed
Update react-scripts to 3.3.1
1 parent 63100cd commit b53e232

File tree

7 files changed

+659
-280
lines changed

7 files changed

+659
-280
lines changed
File renamed without changes.
File renamed without changes.

scripts/migrate_database.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ root_dir="$(git rev-parse --show-toplevel)"
66

77
source "${root_dir}/scripts/dev_db_creds.sh"
88

9-
pushd "${root_dir}/migrations"
9+
pushd "${root_dir}/db/migrations"
1010
echo "Migrating the database"
1111
flyway migrate \
1212
-url="jdbc:mysql://${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_NAME}" \
1313
-user="${DATABASE_USERNAME}" \
1414
-password="${DATABASE_PASSWORD}" \
15+
-validateMigrationNaming=true \
1516
-locations=filesystem:.
1617
popd

scripts/test.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,14 @@ export REFRESH_SECRET="refresh_secret"
7878

7979
if [[ "${skipBackend}" = "false" ]]; then
8080
echo "Running ginkgo for everything except integration"
81-
ginkgo -r -p -skip-package pkg/integration --output-interceptor-mode=none
81+
pushd ${root_dir}
82+
ginkgo -r -p -skip-package pkg/integration --output-interceptor-mode=none
83+
popd
8284
fi
8385

8486
if [[ "${skipIntegration}" = "false" ]]; then
8587
echo "Running ginkgo for integration"
86-
ginkgo -r pkg/integration --output-interceptor-mode=none
88+
pushd ${root_dir}
89+
ginkgo -r pkg/integration --output-interceptor-mode=none
90+
popd
8791
fi

ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"react-dom": "^16.12.0",
3030
"react-redux": "^7.1.3",
3131
"react-router-dom": "^5.1.2",
32-
"react-scripts": "3.3.0",
32+
"react-scripts": "3.3.1",
3333
"redux-devtools-extension": "latest",
3434
"redux-saga": "latest",
3535
"styled-components": "^5.0.1",

ui/yarn.lock

+650-272
Large diffs are not rendered by default.

yarn.lock

-4
This file was deleted.

0 commit comments

Comments
 (0)