-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpubspec.yaml
More file actions
70 lines (63 loc) · 1.42 KB
/
Copy pathpubspec.yaml
File metadata and controls
70 lines (63 loc) · 1.42 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: obs_websocket_workspace
publish_to: none
environment:
sdk: ^3.8.0
workspace:
- packages/obs_websocket
- packages/obs_cli
- packages/obs_mcp
- packages/obs_websocket_js
- packages/obs_mcp_js
dev_dependencies:
melos: ^7.8.2
melos:
name: obs_websocket_workspace
packages:
- packages/**
- '!packages/**/example'
command:
bootstrap:
runPubGetInParallel: false
usePubspecOverrides: true
scripts:
lint:all:
run: melos run analyze && melos run format-check
dep:
run: dart pub get
exec:
concurrency: 1
build:
run: dart run build_runner build --delete-conflicting-outputs
packageFilters:
fileExists: build.yaml
analyze:
run: dart analyze --fatal-infos
exec:
concurrency: 1
format:
run: dart format .
exec:
concurrency: 1
format-check:
run: dart format --output=none --set-exit-if-changed .
packageFilters:
dirExists: test
ignore:
- obs_websocket_js
- obs_mcp_js
test:
run: melos run _test_internal --no-select
exec:
concurrency: 1
dartdoc:
run: dart doc
packageFilters:
scope: obs_websocket
# The internal command that actually does the work
_test_internal:
exec: dart test
packageFilters:
dirExists: test
ignore:
- obs_websocket_js
- obs_mcp_js