File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ inheritedBy :
2+ toolchains : ['javascript', 'typescript']
3+
4+ tasks :
5+ ensure-deps :
6+ command : ' pnpm install'
7+ inputs :
8+ - ' /pnpm-lock.yaml'
9+ - ' /pnpm-workspace.yaml'
10+ - ' package.json'
11+ outputs :
12+ - ' node_modules'
13+ options :
14+ cache : true
Original file line number Diff line number Diff line change @@ -12,17 +12,6 @@ tasks:
1212 options :
1313 runInCI : false
1414
15- ensure-deps :
16- command : " pnpm install"
17- inputs :
18- - " /pnpm-lock.yaml"
19- - " /pnpm-workspace.yaml"
20- - " package.json"
21- outputs :
22- - " node_modules"
23- options :
24- cache : true
25-
2615 build :
2716 command : " pnpm"
2817 args : ["run", "build"]
Original file line number Diff line number Diff line change 88 options :
99 cache : false
1010 mutex : ' playwright-install'
11+ deps :
12+ - ~:ensure-deps
1113 e2e :
1214 command : ' pnpm'
1315 args : ['run', 'e2e']
Original file line number Diff line number Diff line change 66 build :
77 command : ' pnpm'
88 args : ['run', 'build']
9+ deps :
10+ - ~:ensure-deps
911 test :
1012 command : ' pnpm'
1113 args : ['run', 'test']
14+ deps :
15+ - ~:ensure-deps
1216 typecheck :
1317 command : ' pnpm'
1418 args : ['run', 'typecheck']
19+ deps :
20+ - ~:ensure-deps
1521 preview :
1622 command : ' pnpm'
1723 args : ['run', 'preview']
Original file line number Diff line number Diff line change 11language : ' typescript'
22layer : ' library'
33tags : ['lit', 'web-components']
4+
5+ tasks :
6+ build :
7+ deps :
8+ - ~:ensure-deps
You can’t perform that action at this time.
0 commit comments