forked from sneurlax/nix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpubspec.yaml
More file actions
38 lines (34 loc) · 765 Bytes
/
pubspec.yaml
File metadata and controls
38 lines (34 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: nix_workspace
publish_to: 'none'
environment:
sdk: ^3.5.0
dev_dependencies:
melos: ^7.4.0
workspace:
- apps/example
- packages/nix
melos:
repository: https://github.com/ManyMath/nix
command:
bootstrap:
usePubspecOverrides: true
scripts:
test:
run: melos run test:dart --no-select && melos run test:flutter --no-select
description: Run all tests.
test:dart:
run: dart test
exec:
concurrency: 1
packageFilters:
dirExists: test
dependsOn: test
description: Run Dart tests.
test:flutter:
run: flutter test
exec:
concurrency: 1
packageFilters:
dirExists: test
dependsOn: flutter_test
description: Run Flutter tests.