1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:02:08 +02:00
tldr/pages/common/stack.md
2017-10-01 18:54:34 +01:00

27 lines
435 B
Markdown

# stack
> Tool for managing Haskell projects.
- Create a new project:
`stack new {{project_name}}`
- Install all packages needed by a project:
`stack install`
- Compile a project:
`stack build`
- Run tests inside a project:
`stack test`
- Compile a project and re-compile every time a file changes:
`stack build --file-watch`
- Compile a project and execute a command after compilation:
`stack build --exec "{{command}}"`