Forrest logo
back to context overview

stack

List of commands for stack:

  • stack:tldr:0a3c7 stack: Run tests inside a package.
    $ stack test
    try on your machine
    explain this command
  • stack:tldr:26c8b stack: Create a new package.
    $ stack new ${package_name} ${template_name}
    try on your machine
    explain this command
  • stack:tldr:cf3cb stack: Compile a project and execute a command after compilation.
    $ stack build --exec "${command}"
    try on your machine
    explain this command
  • stack:tldr:f03e9 stack: Compile a project and re-compile every time a file changes.
    $ stack build --file-watch
    try on your machine
    explain this command
  • stack:tldr:fbdea stack: Compile a package.
    $ stack build
    try on your machine
    explain this command
back to context overview