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.
14 lines
410 B
14 lines
410 B
1 year ago
|
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
cp external/openapi-specification/examples/v3.0/petstore-expanded.json packages/dynamite/dynamite_petstore_example/lib/petstore.openapi.json
|
||
|
|
||
|
(
|
||
|
cd packages/dynamite/dynamite_petstore_example
|
||
|
rm -rf .dart_tool/build/generated/dynamite
|
||
|
fvm dart pub run build_runner build --delete-conflicting-outputs
|
||
|
fvm dart fix --apply lib/
|
||
|
melos run format
|
||
|
)
|