2025-05-02 11:41:18 +03:00
|
|
|
name: cherrypick_workspace
|
|
|
|
|
|
|
|
|
|
sdkPath: .fvm/flutter_sdk
|
|
|
|
|
|
|
|
|
|
packages:
|
2025-08-07 10:34:50 +03:00
|
|
|
- benchmark_di
|
2025-05-02 11:42:32 +03:00
|
|
|
- cherrypick
|
2025-05-02 11:53:29 +03:00
|
|
|
- cherrypick_flutter
|
2025-05-16 09:30:30 +03:00
|
|
|
- cherrypick_annotations
|
|
|
|
|
- cherrypick_generator
|
2025-05-16 17:58:02 +03:00
|
|
|
- examples/client_app
|
|
|
|
|
- examples/postly
|
2025-05-02 11:53:29 +03:00
|
|
|
|
|
|
|
|
scripts:
|
|
|
|
|
analyze:
|
2025-05-13 23:12:17 +03:00
|
|
|
exec: dart analyze
|
|
|
|
|
|
2025-05-02 11:53:29 +03:00
|
|
|
format:
|
2025-05-16 09:30:30 +03:00
|
|
|
exec: dart format lib
|
2025-05-13 23:12:17 +03:00
|
|
|
|
|
|
|
|
test:
|
2025-06-11 18:34:19 +03:00
|
|
|
run: |
|
|
|
|
|
echo "Running Dart tests..."
|
|
|
|
|
melos exec --scope="cherrypick,cherrypick_annotations,cherrypick_generator" -- dart test --reporter=compact
|
|
|
|
|
echo "Running Flutter tests..."
|
|
|
|
|
melos exec --scope="cherrypick_flutter" -- flutter test --reporter=compact
|
|
|
|
|
|
|
|
|
|
test:dart:
|
|
|
|
|
description: "Run tests for Dart packages only"
|
|
|
|
|
exec: dart test --reporter=compact
|
|
|
|
|
packageFilters:
|
|
|
|
|
scope: ["cherrypick", "cherrypick_annotations", "cherrypick_generator"]
|
|
|
|
|
|
|
|
|
|
test:flutter:
|
|
|
|
|
description: "Run tests for Flutter packages only"
|
|
|
|
|
exec: flutter test --reporter=compact
|
|
|
|
|
packageFilters:
|
|
|
|
|
scope: ["cherrypick_flutter"]
|
2025-05-18 16:41:48 +03:00
|
|
|
|
|
|
|
|
codegen:
|
|
|
|
|
run: |
|
|
|
|
|
melos exec --scope="postly" -- dart run build_runner build --delete-conflicting-outputs
|
|
|
|
|
|
2025-05-22 23:50:55 +03:00
|
|
|
outdated:
|
|
|
|
|
exec: dart pub outdated
|
|
|
|
|
|
2025-05-16 09:30:30 +03:00
|
|
|
upgrade:
|
2025-05-22 23:50:55 +03:00
|
|
|
exec: dart pub upgrade --major-versions
|
2025-05-16 09:30:30 +03:00
|
|
|
|
|
|
|
|
drop:
|
2025-06-11 18:34:19 +03:00
|
|
|
exec: flutter clean
|