You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
481 B
15 lines
481 B
#!/bin/bash |
|
set -euxo pipefail |
|
cd "$(dirname "$0")/.." |
|
|
|
( |
|
cd packages/dynamite/dynamite_end_to_end_test |
|
wget https://petstore3.swagger.io/api/v3/openapi.json -O lib/src/petstore.openapi.json |
|
rm -rf .dart_tool/build |
|
fvm dart pub run build_runner build --delete-conflicting-outputs |
|
# For some reason we need to fix and format twice, otherwise not everything gets fixed |
|
fvm dart fix --apply lib/src/ |
|
melos run format |
|
fvm dart fix --apply lib/src/ |
|
melos run format |
|
)
|
|
|