commit 90d8ebb321c8f7c4dd8ad3178717bd5685a2e0d8
parent aec44db26fe9c8e50fdbdec440db083e8de45b7e
Author: Pavel Lang <langpavel@phpskelet.org>
Date: Sun, 11 Dec 2016 04:53:46 +0100
Better note: double dashes are required
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/docs/getting-started.md b/docs/getting-started.md
@@ -96,6 +96,8 @@ in release (production) mode:
```shell
$ npm start -- --release
```
+*NOTE: double dashes are required*
+
### How to Build, Test, Deploy
@@ -105,11 +107,12 @@ If you need just to build the app (without running a dev server), simply run:
$ npm run build
```
-or, for a production build (NOTE: double dashes are required):
+or, for a production build:
```shell
$ npm run build -- --release
```
+*NOTE: double dashes are required*
After running this command, the `/build` folder will contain the compiled
version of the app. For example, you can launch Node.js server normally by