-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpubspec.yaml
More file actions
45 lines (39 loc) · 1000 Bytes
/
pubspec.yaml
File metadata and controls
45 lines (39 loc) · 1000 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
39
40
41
42
43
44
45
name: wds
version: 0.0.18
publish_to: none
description: WINC Design System
environment:
sdk: ^3.10.0
workspace:
- packages/components
- packages/foundation
- packages/tokens
- tools/token_generator
dependencies:
flutter:
sdk: flutter
wds_components:
path: packages/components
wds_foundation:
path: packages/foundation
dev_dependencies:
flutter_lints: ^6.0.0
melos: ^7.3.0
melos:
name: wds_flutter
packages:
- packages/**
- tools/**
scripts:
# Install: flutter pub get
install:
description: "Install all the dependencies"
run: flutter pub get && melos exec -c 1 -- "flutter pub get"
# Build: Widgetbook
build-widgetbook:
description: "Build Widgetbook"
run: cd packages/widgetbook && fvm exec dart run build_runner build --delete-conflicting-outputs && cd ../..
# Format: All
format:
description: "Format all the files"
run: fvm exec melos exec -c 2 -- "dart fix --apply && dart format ."