feat: Add functionality to delete notes

This commit is contained in:
Anton Stubenbord
2023-12-19 20:08:24 +01:00
parent 26b71e5f37
commit d7f297a4df
11 changed files with 288 additions and 151 deletions

View File

@@ -1,23 +1,20 @@
#!/usr/bin/env bash
set -Eeuo pipefail
set -Euo pipefail
__script_dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
readonly __script_dir
pushd "$__script_dir/../"
pushd packages/paperless_api
flutter packages pub get
dart run build_runner build --delete-conflicting-outputs
popd
pushd packages/mock_server
flutter packages pub get
popd
for dir in packages/*/ # list directories in the form "/tmp/dirname/"
do
pushd $dir
echo "Installing dependencies for $dir"
flutter packages pub get
dart run build_runner build --delete-conflicting-outputs
popd
done
flutter packages pub get
flutter gen-l10n
dart run build_runner build --delete-conflicting-outputs
popd
dart run build_runner build --delete-conflicting-outputs