From 767a0ca7ff9db152ca8df88c3ffc00e462937371 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Sun, 9 Apr 2017 14:45:42 +0100 Subject: [PATCH] Updated Getting started (markdown) --- Getting-started.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Getting-started.md b/Getting-started.md index 8a8bbdb..54bb317 100644 --- a/Getting-started.md +++ b/Getting-started.md @@ -16,18 +16,18 @@ npm will then install all the dependencies needed by Grunt. Grunt has been configured with several tasks to aid in the development process: +``` +grunt prod +``` +> When you are ready to create a production build, run this command. It will lint, test, concatenate and compress all the source files and create a production-ready build in `build/prod`. It will also create the inline version of CyberChef at the same location, called `cyberchef.htm`. + + ``` grunt dev ``` > Use this when developing new functionality. It will launch a persistent task which will automatically build an uncompressed, development version of CyberChef located in `build/dev`. Whenever a source file is modified, the development version will be rebuilt. -``` -grunt prod -``` -> When you are ready to create a production build, run this command. It will lint, test, concatenate, and compress all the source files and create a production-ready build in `build/prod`. It will also create the inline version of CyberChef at the same location, called `cyberchef.htm`. - - ``` grunt node ```