aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands/cargo_watch.ts
Commit message (Collapse)AuthorAgeFilesLines
* Pass `--all-targets` to `cargo watch`Aleksi Juvani2019-05-211-1/+1
|
* cargo watch start and stop commandsBernardo2019-04-191-44/+58
|
* Fix eslint errorsEmil Lauridsen2019-04-031-1/+1
|
* Add extra double quotes only on Windows.Emil Lauridsen2019-04-031-0/+4
| | | | | | As tested by @edwin0cheng, Windows requires the quotes removed in the previous commit. This commit re-adds the quotes gated by an if statement on the node environment, so that quotes are only added on Windows.
* Fix VSCode cargo-watch functionality on Linux.Emil Lauridsen2019-04-031-2/+1
| | | | | | | | | | | | | As of #1079 the VSCode cargo-watch functionality has been broken on Linux systems. The cause seems to be that linux takes the added quotes inside process arguments literally, so it attempts to make cargo-watch run the command `cargo "check --message-format json"` with the entire quoted part being treated as a single long subcommand, which cargo doesn't know how to handle. Removing the extra quotes solves the issue.
* Add cargo-watch package animation and refactoringEdwin Cheng2019-04-021-43/+67
|
* Add Cargo.toml file check before cargo watch startEdwin Cheng2019-04-021-0/+22
|
* Add cargo-watch.check-argumentsEdwin Cheng2019-04-021-28/+50
|
* Add config for cargo-watch traceEdwin Cheng2019-04-021-7/+34
|
* Add proper process teminate methodEdwin Cheng2019-04-021-7/+10
|
* Fix prettier errorEdwin Cheng2019-04-021-11/+15
|
* Fix tslint errorEdwin Cheng2019-04-021-63/+28
|
* Improve cargo-watch usageEdwin Cheng2019-04-021-0/+168