From 9bc7261c0c7798e5d5805e7759b24ffbf8ec77b6 Mon Sep 17 00:00:00 2001 From: Alexey Schebelev Date: Thu, 25 Apr 2019 16:50:23 +0300 Subject: [PATCH 1/2] add `npm run update` command `npm run update` script should be executed before dev site will be run. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 605eee8fa8..7af015e016 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ The source code for https://svelte.dev, including all the documentation, lives i ```bash cd site npm install +npm update npm run dev ``` From a6970d7a3986ef70e664b20854aa09616ee9fd76 Mon Sep 17 00:00:00 2001 From: Alexey Schebelev Date: Thu, 25 Apr 2019 16:52:22 +0300 Subject: [PATCH 2/2] better look --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 7af015e016..96190a8c66 100644 --- a/README.md +++ b/README.md @@ -58,8 +58,7 @@ The source code for https://svelte.dev, including all the documentation, lives i ```bash cd site -npm install -npm update +npm install && npm run update npm run dev ```