From bf696e0ccd2fb849d432dee74e5926d4a25c355b Mon Sep 17 00:00:00 2001 From: Sibi Date: Mon, 25 Nov 2019 01:38:35 +0530 Subject: [PATCH] Clarify stack command (#3614) --- pages/common/stack.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pages/common/stack.md b/pages/common/stack.md index af439fa06d..7e8fa0544b 100644 --- a/pages/common/stack.md +++ b/pages/common/stack.md @@ -3,19 +3,15 @@ > Tool for managing Haskell projects. > More information: . -- Create a new project: +- Create a new package: -`stack new {{project_name}}` +`stack new {{package_name}} {{template_name}}` -- Install all packages needed by a project: - -`stack install` - -- Compile a project: +- Compile a package: `stack build` -- Run tests inside a project: +- Run tests inside a package: `stack test`