From 4c9f3c290ecc9ccd56e8553c548f360285e78eff Mon Sep 17 00:00:00 2001 From: Luis Hernandez Date: Sun, 5 Jun 2016 05:04:03 -0600 Subject: [PATCH] Update 03-getting-started-with-plugins.md --- src/guide/03-getting-started-with-plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/03-getting-started-with-plugins.md b/src/guide/03-getting-started-with-plugins.md index b03e3ae..6852deb 100644 --- a/src/guide/03-getting-started-with-plugins.md +++ b/src/guide/03-getting-started-with-plugins.md @@ -22,7 +22,7 @@ We'll start by adding a `package.json` file to our project. A `package.json` fil Now, install rollup-plugin-json as a *development dependency*: ```bash -npm install --save-dev rollup-plugin-json # or rollup i -D rollup-plugin-json +npm install --save-dev rollup-plugin-json # or npm i -D rollup-plugin-json ``` (We're using `--save-dev` rather than `--save` because our code doesn't actually depend on the plugin when it runs – only when we're building the bundle.)