Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. {
  2. "version": "0.1.0",
  3. "command": "mix",
  4. "isShellCommand": true,
  5. "showOutput": "always",
  6. "suppressTaskName": true,
  7. "tasks": [
  8. {
  9. "taskName": "build",
  10. "args": [
  11. "compile"
  12. ],
  13. "problemMatcher": [
  14. "$mixCompileError",
  15. "$mixCompileWarning"
  16. ],
  17. "isBuildCommand": true
  18. },
  19. {
  20. "taskName": "test",
  21. "args": [
  22. "test"
  23. ],
  24. "problemMatcher": [
  25. "$mixCompileError",
  26. "$mixCompileWarning",
  27. "$mixTestFailure"
  28. ],
  29. "isTestCommand": true
  30. }
  31. ]
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement