-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
view instructions button in top right
References #24
- Loading branch information
Showing
3 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
|
||
{ | ||
// Automatically created by phoityne-vscode extension. | ||
|
||
"version": "2.0.0", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"tasks": [ | ||
{ | ||
// F7 | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"label": "haskell build", | ||
"type": "shell", | ||
//"command": "cabal configure && cabal build" | ||
"command": "stack build" | ||
}, | ||
{ | ||
// F6 | ||
"group": "build", | ||
"type": "shell", | ||
"label": "haskell clean & build", | ||
//"command": "cabal clean && cabal configure && cabal build" | ||
"command": "stack clean && stack build" | ||
//"command": "stack clean ; stack build" // for powershell | ||
}, | ||
{ | ||
// F8 | ||
"group": { | ||
"kind": "test", | ||
"isDefault": true | ||
}, | ||
"type": "shell", | ||
"label": "haskell test", | ||
//"command": "cabal test" | ||
"command": "stack test" | ||
}, | ||
{ | ||
// F6 | ||
"isBackground": true, | ||
"type": "shell", | ||
"label": "haskell watch", | ||
"command": "stack build --test --no-run-tests --file-watch" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters