summaryrefslogtreecommitdiff
path: root/docs/dev/getting-started.md
diff options
context:
space:
mode:
authorJonas Zohren2019-10-25 19:47:14 +0200
committerJonas Zohren2019-10-25 19:51:13 +0200
commit625f4e336bf3c77e8a7846883dc7d44629c702b4 (patch)
tree93a2f0f09fe2bc87d8030786d7d304a9a1cf21a0 /docs/dev/getting-started.md
parent20a67e3446723231961043bffeb5a7b974e891c0 (diff)
Replaces `npm` with `yarn` commands in docs.
Signed-off-by: Jonas Zohren <jonas.zohren@tu-dortmund.de>
Diffstat (limited to '')
-rw-r--r--docs/dev/getting-started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/dev/getting-started.md b/docs/dev/getting-started.md
index 07524971..9a35b71a 100644
--- a/docs/dev/getting-started.md
+++ b/docs/dev/getting-started.md
@@ -18,7 +18,7 @@ Developer Notes
Now that everything is in place, we can start CodiMD:
-4. `npm run build` will build the frontend bundle. It uses webpack to do that.
+4. `yarn run build` will build the frontend bundle. It uses webpack to do that.
5. Run the server with `node app.js`
@@ -32,7 +32,7 @@ rebuild the frontend or restart the server if necessary.
The commands will stay active in your terminal, so you will need multiple tabs
to run both at the same time.
-4. Use `npm run dev` if you want webpack to continuously rebuild the frontend
+4. Use `yarn run dev` if you want webpack to continuously rebuild the frontend
code.
5. To auto-reload the server, the easiest method is to install [nodemon](https://www.npmjs.com/package/nodemon)
and run `nodemon --watch app.js --watch lib --watch locales app.js`.