From 11e2714cfe424965a47b7a8d97506fe05d994ef4 Mon Sep 17 00:00:00 2001 From: Peter Varholak Date: Wed, 15 May 2019 23:58:17 -0700 Subject: [PATCH] change yarn to npm in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ca9c0f2..e0453fe 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ When using Svelte components installed from npm, such as [@sveltejs/svelte-virtu Because of that, it's essential that webpack doesn't treat the package as an *external dependency*. You can either modify the `externals` option in [webpack/server.config.js](webpack/server.config.js), or simply install the package to `devDependencies` rather than `dependencies`, which will cause it to get bundled (and therefore compiled) with your app: ```bash -yarn add -D @sveltejs/svelte-virtual-list +npm install -D @sveltejs/svelte-virtual-list ```