From 4030dc6b349f60028dcafdd0a2d09c973f0328fa Mon Sep 17 00:00:00 2001 From: n1474335 Date: Wed, 23 May 2018 16:17:52 -0700 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 f1d57cc..2659803 100644 --- a/Getting-started.md +++ b/Getting-started.md @@ -16,12 +16,6 @@ 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, compile 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 ``` @@ -30,6 +24,12 @@ grunt dev > Note: This task will initially result in an error relating to the `MetaConfig.js` file but will quickly rebuild and should complete successfully. This is due to the `MetaConfig.js` file being built at the same time as the rest of the app and therefore not being available for compilation immediately. +``` +grunt prod +``` +> When you are ready to create a production build, run this command. It will lint, test, compile 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 ```