From 1f661580c4c0cdecbe4659adf77b6a3f2272541b Mon Sep 17 00:00:00 2001 From: Jan C Date: Sun, 23 Jun 2019 09:22:00 +0200 Subject: [PATCH] Fix site README pointing to wrong npm script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The README used “npm run build” but the correct build script seems to be “npm run sapper”. --- site/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/README.md b/site/README.md index 59380feffc..0068f09632 100644 --- a/site/README.md +++ b/site/README.md @@ -15,7 +15,7 @@ Start the server with `npm run dev`, and navigate to [localhost:3000](http://loc By default, the REPL will fetch the most recent version of Svelte from https://unpkg.com/svelte. When running the site locally, you can also use your local copy of Svelte. -To produce the proper browser-compatible UMD build of the compiler, you will need to run `npm run build` (or `npm run dev`) in the root of this repository with the `PUBLISH` environment variable set to any non-empty string. +To produce the proper browser-compatible UMD build of the compiler, you will need to run `npm run sapper` (or `npm run dev`) in the root of this repository with the `PUBLISH` environment variable set to any non-empty string. Then visit the REPL at [localhost:3000/repl?version=local](http://localhost:3000/repl?version=local).