From 60eca39660c41cfa28d3ad95a944299081df23fe Mon Sep 17 00:00:00 2001 From: Private Maker <49612519+privatemaker@users.noreply.github.com> Date: Tue, 19 Sep 2023 22:15:37 +0200 Subject: [PATCH] Update developer_manual/core/code-front-end.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: John Molakvoæ Signed-off-by: Private Maker <49612519+privatemaker@users.noreply.github.com> --- developer_manual/core/code-front-end.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/developer_manual/core/code-front-end.rst b/developer_manual/core/code-front-end.rst index 4043c253a..d8139f1c6 100644 --- a/developer_manual/core/code-front-end.rst +++ b/developer_manual/core/code-front-end.rst @@ -10,16 +10,16 @@ We are moving more and more toward using Vue.js in the front-end, starting with .. code-block:: console # install dependencies - make dev-setup + npm install # build for development - make build-js + npm run dev # build for development and watch edits - make watch-js + npm run watch # build for production with minification - make build-js-production + npm run build Building styles