-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (24 loc) · 843 Bytes
/
Makefile
File metadata and controls
33 lines (24 loc) · 843 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
regen-snapshots:
dart run scip_dart ./snapshots/input/basic-project --index-pubspec
scip snapshot --to ./snapshots/output/basic-project
dart run scip_dart ./snapshots/input/diagnostics --index-pubspec
scip snapshot --to ./snapshots/output/diagnostics
asdf set dart 3.7.2
dart pub upgrade
dart run scip_dart ./snapshots/input/dart3-features --index-pubspec
scip snapshot --to ./snapshots/output/dart3-features
asdf set dart 2.19.6
run:
dart run scip_dart ./snapshots/input/staging-project --verbose
snap:
scip snapshot --project-root ./snapshots/input/staging-project --to ./snapshots/output/staging-project
lint:
scip lint ./index.scip
stats:
scip stats
gen-proto:
protoc --dart_out=. ./lib/src/gen/scip.proto
print:
scip print ./index.scip
print-ast:
dart run ./tool/ast_printer.dart ./snapshots/input/staging-project