File tree Expand file tree Collapse file tree
packages/cli/snap-tests/task-no-trailing-newline Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -167,6 +167,8 @@ impl ExecutionPlan {
167167
168168 // Execute or replay the task
169169 let exit_status = execute_or_replay. await ?;
170+
171+ // FIXME: Print a new line to separate the tasks output, need a better solution
170172 println ! ( ) ;
171173 Ok ( ExecutionStatus {
172174 execution_id,
Original file line number Diff line number Diff line change 1+ {
2+ "scripts" : {
3+ "hello" : " echo -n foo && echo bar"
4+ }
5+ }
Original file line number Diff line number Diff line change 1+ > vite run hello
2+ $ echo -n foo
3+ foo
4+ $ echo bar
5+ bar
6+
7+
8+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
9+ Vite+ Task Runner • Execution Summary
10+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
11+
12+ Statistics: 2 tasks • 0 cache hits • 2 cache misses
13+ Performance: 0% cache hit rate
14+
15+ Task Details:
16+ ────────────────────────────────────────────────
17+ [1] hello(subcommand 0): $ echo -n foo ✓
18+ → Cache miss: no previous cache entry found
19+ ·······················································
20+ [2] hello: $ echo bar ✓
21+ → Cache miss: no previous cache entry found
22+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Original file line number Diff line number Diff line change 1+ {
2+ "env" : {
3+ "VITE_DISABLE_AUTO_INSTALL" : " 1"
4+ },
5+ "commands" : [
6+ " vite run hello"
7+ ]
8+ }
You can’t perform that action at this time.
0 commit comments