diff --git a/docs/blog/2017-02-21-1-0-progress-update-where-came-from-where-going/index.md b/docs/blog/2017-02-21-1-0-progress-update-where-came-from-where-going/index.md index 6489350600dcd..84d8745edf305 100644 --- a/docs/blog/2017-02-21-1-0-progress-update-where-came-from-where-going/index.md +++ b/docs/blog/2017-02-21-1-0-progress-update-where-came-from-where-going/index.md @@ -230,7 +230,7 @@ Themes (like plugins) will be published on npm. So soon, starting a new Gatsby blog will be as simple as: ```shell -npm install --save gatsby-super-cool-theme +npm install gatsby-super-cool-theme gatsby build --theme gatsby-super-cool-theme ``` diff --git a/docs/blog/2017-07-19-creating-a-blog-with-gatsby/index.md b/docs/blog/2017-07-19-creating-a-blog-with-gatsby/index.md index 13bbfa4109086..33e06d80c2d8a 100644 --- a/docs/blog/2017-07-19-creating-a-blog-with-gatsby/index.md +++ b/docs/blog/2017-07-19-creating-a-blog-with-gatsby/index.md @@ -84,7 +84,7 @@ with the following command: yarn add gatsby-plugin-catch-links gatsby-plugin-react-helmet ``` -You will be using [yarn][yarn], but npm can just as easily be used with `npm i --save [deps]`. +You will be using [yarn][yarn], but npm can just as easily be used with `npm install [deps]`. After installing each of these functional plugins, edit `gatsby-config.js`, which Gatsby loads at build-time to implement the exposed diff --git a/docs/blog/2017-10-01-migrating-my-blog-from-hexo-to-gatsby/index.md b/docs/blog/2017-10-01-migrating-my-blog-from-hexo-to-gatsby/index.md index 30ed13018971c..963ce6bff5528 100644 --- a/docs/blog/2017-10-01-migrating-my-blog-from-hexo-to-gatsby/index.md +++ b/docs/blog/2017-10-01-migrating-my-blog-from-hexo-to-gatsby/index.md @@ -181,7 +181,7 @@ Let's fix that. We need to teach Gatsby how to query the file system. Luckily this is so common it's been done for you. Install the file system source plugin: ```shell -npm i --save gatsby-source-filesystem +npm install gatsby-source-filesystem ``` Now modify `gatsby-config.js` to both use the plugin and tell it what directory @@ -230,7 +230,7 @@ files this is all you will need. But if you want to render markdown files as HTML you will need another plugin. Let's add that now: ```shell -npm i --save gatsby-transformer-remark +npm install gatsby-transformer-remark ``` As before, add it to the `plugins` field in `gatsby-config.js`: diff --git a/docs/blog/2017-10-17-building-i18n-with-gatsby/index.md b/docs/blog/2017-10-17-building-i18n-with-gatsby/index.md index 1e2597ee4b49b..5986326fc7c98 100644 --- a/docs/blog/2017-10-17-building-i18n-with-gatsby/index.md +++ b/docs/blog/2017-10-17-building-i18n-with-gatsby/index.md @@ -74,7 +74,7 @@ implementation in other projects. To get started, you'll need to install a few packages: -`npm i -S i18next i18next-xhr-backend i18next-browser-languagedetector react-i18next` +`npm install i18next i18next-xhr-backend i18next-browser-languagedetector react-i18next` ## Setting up diff --git a/docs/blog/2018-06-07-build-a-gatsby-blog-using-the-cosmic-js-source-plugin/index.md b/docs/blog/2018-06-07-build-a-gatsby-blog-using-the-cosmic-js-source-plugin/index.md index e2ad311992dbb..3149937170222 100644 --- a/docs/blog/2018-06-07-build-a-gatsby-blog-using-the-cosmic-js-source-plugin/index.md +++ b/docs/blog/2018-06-07-build-a-gatsby-blog-using-the-cosmic-js-source-plugin/index.md @@ -69,13 +69,13 @@ In our case, we are using [Cosmic](https://cosmicjs.com). We need a source plugi Install the source plugin with the following command: ```shell -npm install --save gatsby-source-cosmicjs +npm install gatsby-source-cosmicjs ``` We're going to use a couple other plugins later, so let's install them here: ```shell -npm install --save gatsby-plugin-offline gatsby-source-filesystem +npm install gatsby-plugin-offline gatsby-source-filesystem ``` These plugins need some configuration, so let's replace the content of `gatsby-config.js` with: @@ -424,7 +424,7 @@ Restart the Gatsby server, then visit the detail page by clicking on URLs displa In addition to the code covered in this tutorial, we also implemented `src/components/bio.js` to display author information & `src/layouts/index.js` to [create a generic layout](/tutorial/part-three/#our-first-layout-component) for the blog. -The source code for this tutorial is available [on GitHub](https://github.com/cosmicjs/gatsby-blog-cosmicjs). To see it live, clone the repository, and run (`cd gatsby-blog-cosmicjs && npm i && npm run develop`) or check out the [demo on Netlify](https://gatsby-blog-cosmicjs.netlify.app/). +The source code for this tutorial is available [on GitHub](https://github.com/cosmicjs/gatsby-blog-cosmicjs). To see it live, clone the repository, and run (`cd gatsby-blog-cosmicjs && npm install && npm run develop`) or check out the [demo on Netlify](https://gatsby-blog-cosmicjs.netlify.app/). The static website generated by Gatsby can easily be published on services like Netlify, S3/CloudFront, GitHub Pages, GitLab Pages, Heroku, etc. diff --git a/docs/blog/2018-1-18-strapi-and-gatsby/index.md b/docs/blog/2018-1-18-strapi-and-gatsby/index.md index 16ac8627b4efb..543fe380ad8c6 100644 --- a/docs/blog/2018-1-18-strapi-and-gatsby/index.md +++ b/docs/blog/2018-1-18-strapi-and-gatsby/index.md @@ -100,7 +100,7 @@ _Requirements: please make sure [Node 10](https://nodejs.org/en/download/) (or h Install Strapi using npm: ```shell -npm i strapi@alpha -g +npm install strapi@alpha -g ``` _Note: Strapi v3 is still an alpha version, but it will be fine for this tutorial._ @@ -256,7 +256,7 @@ In this example, we are using Strapi. Obviously, we are going to need a source p Let's install it: ```shell -npm install --save gatsby-source-strapi +npm install gatsby-source-strapi ``` This plugin needs to be configured. Replace the content of `gatsby-config.js` with: diff --git a/docs/blog/2018-10-26-export-a-drupal-site-to-gatsby/index.md b/docs/blog/2018-10-26-export-a-drupal-site-to-gatsby/index.md index 651b78f466f07..7e2d77cb4e0b1 100644 --- a/docs/blog/2018-10-26-export-a-drupal-site-to-gatsby/index.md +++ b/docs/blog/2018-10-26-export-a-drupal-site-to-gatsby/index.md @@ -21,8 +21,8 @@ To do this yourself, you'll build a simple blog using the excellent [gatsby-star ```shell gatsby new gatsby-blog https://github.com/gatsbyjs/gatsby-starter-blog git init # so you can keep track of the changes -npm i # to install regular gastby requirements -npm i --save-dev better-sqlite3 # to add an sqlite javascript client +npm install # to install regular gastby requirements +npm install --save-dev better-sqlite3 # to add an sqlite javascript client ``` The useful commands on a sqlite3 command line to explore are `.tables` to see all tables :) and `.schema table_name` to see information about a specific table. Oh! and `.help` to know more. diff --git a/docs/blog/2018-12-19-kentico-cloud-and-gatsby-take-you-beyond-static-websites/index.md b/docs/blog/2018-12-19-kentico-cloud-and-gatsby-take-you-beyond-static-websites/index.md index b253f83b8027b..107d87dda53ce 100644 --- a/docs/blog/2018-12-19-kentico-cloud-and-gatsby-take-you-beyond-static-websites/index.md +++ b/docs/blog/2018-12-19-kentico-cloud-and-gatsby-take-you-beyond-static-websites/index.md @@ -38,7 +38,7 @@ Kentico Cloud also makes it easy for editors to understand the hierarchical stru For us developers, the headless CMS tools are very important. Apart from great technical documentation and many SDKs (including [JavaScript](http://bit.ly/2Gsq0Tb)), Kentico Cloud has a [source plugin for Gatsby](http://bit.ly/2S8ZzTO). If you decide to build a static site like I did, it's just another package that you install via npm. ```shell -npm install --save gatsby-source-kentico-cloud +npm install gatsby-source-kentico-cloud ``` which updates packages.json diff --git a/docs/blog/2019-01-25-blazing-fast-development-with-gatsby-and-sanity-io/index.md b/docs/blog/2019-01-25-blazing-fast-development-with-gatsby-and-sanity-io/index.md index 60ae1ab7d39c4..be2edcad5f518 100644 --- a/docs/blog/2019-01-25-blazing-fast-development-with-gatsby-and-sanity-io/index.md +++ b/docs/blog/2019-01-25-blazing-fast-development-with-gatsby-and-sanity-io/index.md @@ -24,7 +24,7 @@ The Gatsby source plugin for Sanity comes with the ability to easily overlay dra Add the source plugin to your Gatsby project: ```shell -npm install --save gatsby-source-sanity +npm install gatsby-source-sanity ``` The source plugin gives you a comprehensive GraphQL API in Gatsby for your structured content from Sanity. We strongly recommend using the [GraphiQL explorer](/docs/running-queries-with-graphiql/) to test queries and familiarize yourself with the schema documentation. It's super useful! diff --git a/docs/blog/2019-03-18-releasing-new-schema-customization/index.md b/docs/blog/2019-03-18-releasing-new-schema-customization/index.md index 9f8725b210a15..83b468daa3c57 100644 --- a/docs/blog/2019-03-18-releasing-new-schema-customization/index.md +++ b/docs/blog/2019-03-18-releasing-new-schema-customization/index.md @@ -11,7 +11,7 @@ Two weeks ago, we announced our plans for a [new schema customization API](/blog First, install the latest and greatest version of `gatsby`, like so: ```shell -npm install gatsby --save +npm install gatsby ``` Next, continue reading below to see if any of the great, new features we've enabled scratch a particular itch. We feel very confident they will 💜 diff --git a/docs/blog/2019-03-21-migrating-from-wordpress-to-gatsby/index.md b/docs/blog/2019-03-21-migrating-from-wordpress-to-gatsby/index.md index 8155e1d0c5415..0abc49dc9414f 100644 --- a/docs/blog/2019-03-21-migrating-from-wordpress-to-gatsby/index.md +++ b/docs/blog/2019-03-21-migrating-from-wordpress-to-gatsby/index.md @@ -55,7 +55,7 @@ If you've been thinking about moving your blog from WordPress to a static site b - I used Prettier on all the Markdown files to try to make them consistent. Here is a little snippet I used to run Prettier on all the posts: ```shell -npm i -g prettier # install prettier globally +npm install -g prettier # install prettier globally cd content/posts # move to the directory that contains all your posts prettier --print-width 100 diff --git a/docs/blog/2019-11-21-how-to-convert-an-existing-gatsby-blog-to-use-mdx/index.md b/docs/blog/2019-11-21-how-to-convert-an-existing-gatsby-blog-to-use-mdx/index.md index 78e76e02658b0..01781f69e7c16 100644 --- a/docs/blog/2019-11-21-how-to-convert-an-existing-gatsby-blog-to-use-mdx/index.md +++ b/docs/blog/2019-11-21-how-to-convert-an-existing-gatsby-blog-to-use-mdx/index.md @@ -30,7 +30,7 @@ gatsby new my-blog-starter https://github.com/gatsbyjs/gatsby-starter-blog Install [gatsby-plugin-mdx](/packages/gatsby-plugin-mdx/), the official plugin for using MDX with Gatsby. Also install `gatsby-plugin-feed-mdx` for our RSS feeds. Finally, install `@mdx-js/mdx` and `@mdx-js/react`. ```shell -npm install --save gatsby-plugin-mdx gatsby-plugin-feed-mdx @mdx-js/mdx @mdx-js/react +npm install gatsby-plugin-mdx gatsby-plugin-feed-mdx @mdx-js/mdx @mdx-js/react ``` ### Step 2 @@ -103,7 +103,7 @@ Then, replace `gatsby-plugin-feed` with `gatsby-plugin-feed-mdx`. This will allo Now, since we're no longer using `gatsby-transformer-remark` and `gatsby-plugin-feed`, you can uninstall them. ```shell -npm uninstall --save gatsby-transformer-remark gatsby-plugin-feed +npm uninstall gatsby-transformer-remark gatsby-plugin-feed ``` ### Step 3 diff --git a/docs/blog/2020-08-04-Announcing-Gatsby-Recipes-Alpha-2/index.md b/docs/blog/2020-08-04-Announcing-Gatsby-Recipes-Alpha-2/index.md index 4b98c8e72ad73..2b2d1add94bcb 100644 --- a/docs/blog/2020-08-04-Announcing-Gatsby-Recipes-Alpha-2/index.md +++ b/docs/blog/2020-08-04-Announcing-Gatsby-Recipes-Alpha-2/index.md @@ -91,7 +91,7 @@ Try out recipes today! Install the latest version of `gatsby-cli` and gatsby to ```shell npm install -g gatsby-cli@latest -npm i gatsby@latest +npm install gatsby@latest ``` To stay current with future developments, follow the [Gatsby Recipes umbrella issue](https://github.com/gatsbyjs/gatsby/issues/22991). diff --git a/docs/docs/deploying-to-cloudflare-workers.md b/docs/docs/deploying-to-cloudflare-workers.md index 82a9dd41ac367..738b4101a4423 100644 --- a/docs/docs/deploying-to-cloudflare-workers.md +++ b/docs/docs/deploying-to-cloudflare-workers.md @@ -13,7 +13,7 @@ This guide will get you started in a few steps: Workers Sites requires [wrangler](https://developers.cloudflare.com/workers/tooling/wrangler/). The more straight forward way to install wrangler is with [npm](https://www.npmjs.com/), run the following command: ```shell -npm i -g @cloudflare/wrangler +npm install -g @cloudflare/wrangler ``` 2. Initialize the Project diff --git a/docs/docs/deploying-to-s3-cloudfront.md b/docs/docs/deploying-to-s3-cloudfront.md index cb37831496f46..419a0f643230b 100644 --- a/docs/docs/deploying-to-s3-cloudfront.md +++ b/docs/docs/deploying-to-s3-cloudfront.md @@ -26,7 +26,7 @@ Now that your Gatsby site is up and running and AWS access is sorted out, you'll First, install the Gatsby S3 plugin: ```shell -npm i gatsby-plugin-s3 +npm install gatsby-plugin-s3 ``` Add it to your `gatsby-config.js`: (don't forget to change the bucket name) diff --git a/docs/docs/maintaining-a-plugin.md b/docs/docs/maintaining-a-plugin.md index a71bbae3fd3e2..81e5654a634b1 100644 --- a/docs/docs/maintaining-a-plugin.md +++ b/docs/docs/maintaining-a-plugin.md @@ -47,7 +47,7 @@ There are a couple of useful tools that can help with keeping dependencies up to 1. Install the tool ```shell - npm i -g npm-check-updates + npm install -g npm-check-updates ``` 2. Run the command to update dependencies diff --git a/docs/docs/migrating-from-v1-to-v2.md b/docs/docs/migrating-from-v1-to-v2.md index d479656548096..1d4d4e728df00 100644 --- a/docs/docs/migrating-from-v1-to-v2.md +++ b/docs/docs/migrating-from-v1-to-v2.md @@ -91,7 +91,7 @@ You need to update your `package.json` to use the latest version of Gatsby. Or run ```shell -npm i gatsby@latest +npm install gatsby@latest ``` ### Update Gatsby related packages @@ -105,7 +105,7 @@ npm outdated And compare "Wanted" and "Latest" versions and update `package.json` file manually or run ```shell -npm i gatsby-plugin-google-analytics@latest gatsby-plugin-netlify@latest gatsby-plugin-sass@latest +npm install gatsby-plugin-google-analytics@latest gatsby-plugin-netlify@latest gatsby-plugin-sass@latest ``` **NOTE**: The above command is only an example - adjust packages to ones you are using. @@ -115,7 +115,7 @@ npm i gatsby-plugin-google-analytics@latest gatsby-plugin-netlify@latest gatsby- In v1, the `react` and `react-dom` packages were a part of the `gatsby` package. They are now `peerDependencies` in v2, so you need to install them into your project. ```shell -npm i react react-dom +npm install react react-dom ``` ### Install plugins' peer dependencies @@ -123,7 +123,7 @@ npm i react react-dom Some plugins had dependencies that were also made `peerDependencies`. For example, if you use [`gatsby-plugin-typography`](/packages/gatsby-plugin-typography/), you now need to install: ```shell -npm i typography react-typography +npm install typography react-typography ``` You should search for the plugins that you use in the [plugin library](/plugins). Then, check their installation instructions for extra packages that may need installation. diff --git a/docs/docs/recipes/deploying-your-site.md b/docs/docs/recipes/deploying-your-site.md index f07dc2827dde3..d20418699f56e 100644 --- a/docs/docs/recipes/deploying-your-site.md +++ b/docs/docs/recipes/deploying-your-site.md @@ -114,7 +114,7 @@ Use [`wrangler`](https://developers.cloudflare.com/workers/tooling/wrangler/) to - An account on [Cloudflare](https://dash.cloudflare.com/sign-up) - A [Workers Unlimited plan](https://developers.cloudflare.com/workers/about/pricing/) for \$5/month to enable the KV store, which is required to serve the Gatsby files. - A [Gatsby site](/docs/quick-start) set up with Gatsby's CLI -- [wrangler](https://developers.cloudflare.com/workers/tooling/wrangler/install/) installed globally (`npm i -g @cloudflare/wrangler`) +- [wrangler](https://developers.cloudflare.com/workers/tooling/wrangler/install/) installed globally (`npm install -g @cloudflare/wrangler`) ### Directions diff --git a/docs/tutorial/prismic-source-graphql-tutorial.md b/docs/tutorial/prismic-source-graphql-tutorial.md index 4fff683040ab8..8a8e5934a5f00 100644 --- a/docs/tutorial/prismic-source-graphql-tutorial.md +++ b/docs/tutorial/prismic-source-graphql-tutorial.md @@ -35,7 +35,7 @@ cd gatsby-prismic-blog Now, you will have to install missing packages. This command includes the Gatsby Prismic source plugin, and the Prismic kits for facilitating processes in React: ```shell -npm i gatsby-source-prismic-graphql prismic-javascript prismic-reactjs +npm install gatsby-source-prismic-graphql prismic-javascript prismic-reactjs ``` If you want to focus on learning how to fetch and render data from a Prismic repository, it's safe to just use the sample repository `gatsby-blog-scratch` but you should create your own so you can modify the content and test out previews. Otherwise, you can follow [this article](https://prismic.io/docs/reactjs/getting-started/create-repo-minimalist-blog) to create your own Prismic repository. You will want to write several blog posts to have some nice content to show off. diff --git a/examples/using-remark/src/pages/2018-01-27---custom-components/index.md b/examples/using-remark/src/pages/2018-01-27---custom-components/index.md index 4b66b838540fc..eae76876f945f 100644 --- a/examples/using-remark/src/pages/2018-01-27---custom-components/index.md +++ b/examples/using-remark/src/pages/2018-01-27---custom-components/index.md @@ -74,7 +74,7 @@ In order to display this component within a Markdown file, you'll need to add a yarn add rehype-react # If you use npm - npm install --save rehype-react + npm install rehype-react ``` 2. Import `rehype-react` and whichever components you wish to use diff --git a/packages/gatsby-core-utils/README.md b/packages/gatsby-core-utils/README.md index 4d058792bacb4..dd0493188e32a 100644 --- a/packages/gatsby-core-utils/README.md +++ b/packages/gatsby-core-utils/README.md @@ -5,7 +5,7 @@ A list of utilities used in multiple gatsby packages. ## Usage ```shell -npm install --save gatsby-core-utils +npm install gatsby-core-utils ``` ### createContentDigest diff --git a/packages/gatsby-image/README.md b/packages/gatsby-image/README.md index 337316257feb5..88e4274e7bc9d 100644 --- a/packages/gatsby-image/README.md +++ b/packages/gatsby-image/README.md @@ -80,12 +80,12 @@ effect as well as lazy loading of images further down the screen. ## Install -`npm install --save gatsby-image` +`npm install gatsby-image` Depending on the gatsby starter you used, you may need to include [gatsby-transformer-sharp](/packages/gatsby-transformer-sharp/) and [gatsby-plugin-sharp](/packages/gatsby-plugin-sharp/) as well, and make sure they are installed and included in your gatsby-config. ```shell -npm install --save gatsby-transformer-sharp gatsby-plugin-sharp +npm install gatsby-transformer-sharp gatsby-plugin-sharp ``` Then in your `gatsby-config.js`: diff --git a/packages/gatsby-plugin-canonical-urls/README.md b/packages/gatsby-plugin-canonical-urls/README.md index 48ce6136216f7..86e2b8aa0d262 100644 --- a/packages/gatsby-plugin-canonical-urls/README.md +++ b/packages/gatsby-plugin-canonical-urls/README.md @@ -8,7 +8,7 @@ paths to the same page. ## Install -`npm install --save gatsby-plugin-canonical-urls` +`npm install gatsby-plugin-canonical-urls` ## How to use diff --git a/packages/gatsby-plugin-catch-links/README.md b/packages/gatsby-plugin-catch-links/README.md index 2a3387797624a..4c6624184cda1 100644 --- a/packages/gatsby-plugin-catch-links/README.md +++ b/packages/gatsby-plugin-catch-links/README.md @@ -12,7 +12,7 @@ Example use cases: ## Installation ```shell -npm install --save gatsby-plugin-catch-links +npm install gatsby-plugin-catch-links ``` ## How to use diff --git a/packages/gatsby-plugin-coffeescript/README.md b/packages/gatsby-plugin-coffeescript/README.md index faac155b8b90f..ab765c4222e49 100644 --- a/packages/gatsby-plugin-coffeescript/README.md +++ b/packages/gatsby-plugin-coffeescript/README.md @@ -4,7 +4,7 @@ Provides drop-in support for CoffeeScript and CJSX. ## Install -`npm install --save gatsby-plugin-coffeescript` +`npm install gatsby-plugin-coffeescript` ## How to use diff --git a/packages/gatsby-plugin-create-client-paths/README.md b/packages/gatsby-plugin-create-client-paths/README.md index 70f824ecb7f83..ab4905e2b4405 100644 --- a/packages/gatsby-plugin-create-client-paths/README.md +++ b/packages/gatsby-plugin-create-client-paths/README.md @@ -9,7 +9,7 @@ For more information refer to [client-only routes & user authentication](https:/ Install: ```shell -npm install --save gatsby-plugin-create-client-paths +npm install gatsby-plugin-create-client-paths ``` Then configure via `gatsby-config.js`: diff --git a/packages/gatsby-plugin-cxs/README.md b/packages/gatsby-plugin-cxs/README.md index fe1fdabff66c3..7ec8fe3ef53ff 100644 --- a/packages/gatsby-plugin-cxs/README.md +++ b/packages/gatsby-plugin-cxs/README.md @@ -5,7 +5,7 @@ A [Gatsby](https://github.com/gatsbyjs/gatsby) plugin for ## Install -`npm install --save gatsby-plugin-cxs cxs` +`npm install gatsby-plugin-cxs cxs` ## How to use diff --git a/packages/gatsby-plugin-emotion/README.md b/packages/gatsby-plugin-emotion/README.md index 6d23ef3aa0af9..e2fe1383a2096 100644 --- a/packages/gatsby-plugin-emotion/README.md +++ b/packages/gatsby-plugin-emotion/README.md @@ -12,7 +12,7 @@ guide](https://emotion.sh/docs/migrating-to-emotion-10#incremental-migration) fo ## Install ```shell -npm install --save gatsby-plugin-emotion @emotion/core @emotion/styled +npm install gatsby-plugin-emotion @emotion/core @emotion/styled ``` ## How to use diff --git a/packages/gatsby-plugin-facebook-analytics/README.md b/packages/gatsby-plugin-facebook-analytics/README.md index 4edd82fa23b3d..bf74ecdbca507 100644 --- a/packages/gatsby-plugin-facebook-analytics/README.md +++ b/packages/gatsby-plugin-facebook-analytics/README.md @@ -8,7 +8,7 @@ This loads the Facebook JavaScript SDK which means that [Social Plugins](https:/ ## Install -`npm install --save gatsby-plugin-facebook-analytics` +`npm install gatsby-plugin-facebook-analytics` ## How to use diff --git a/packages/gatsby-plugin-feed/README.md b/packages/gatsby-plugin-feed/README.md index b6cb778cc4992..ced826685180a 100644 --- a/packages/gatsby-plugin-feed/README.md +++ b/packages/gatsby-plugin-feed/README.md @@ -4,7 +4,7 @@ Create an RSS feed (or multiple feeds) for your Gatsby site. ## Install -`npm install --save gatsby-plugin-feed` +`npm install gatsby-plugin-feed` ## How to Use diff --git a/packages/gatsby-plugin-fullstory/README.md b/packages/gatsby-plugin-fullstory/README.md index 140755d692e1f..4d3d74185ff2d 100644 --- a/packages/gatsby-plugin-fullstory/README.md +++ b/packages/gatsby-plugin-fullstory/README.md @@ -4,7 +4,7 @@ Fullstory is an analytics service for recording customer visits. This plugin add ## Install -`npm install --save gatsby-plugin-fullstory` +`npm install gatsby-plugin-fullstory` ## How to use diff --git a/packages/gatsby-plugin-glamor/README.md b/packages/gatsby-plugin-glamor/README.md index bbae925417254..9a270f4b7995b 100644 --- a/packages/gatsby-plugin-glamor/README.md +++ b/packages/gatsby-plugin-glamor/README.md @@ -10,7 +10,7 @@ rendering and start writing React components that carry their styles with them. ## Install -`npm install --save gatsby-plugin-glamor glamor` +`npm install gatsby-plugin-glamor glamor` ## How to use diff --git a/packages/gatsby-plugin-google-analytics/README.md b/packages/gatsby-plugin-google-analytics/README.md index 528c921818ec5..fb2f832e66ed6 100644 --- a/packages/gatsby-plugin-google-analytics/README.md +++ b/packages/gatsby-plugin-google-analytics/README.md @@ -4,7 +4,7 @@ Easily add Google Analytics to your Gatsby site. ## Install -`npm install --save gatsby-plugin-google-analytics` +`npm install gatsby-plugin-google-analytics` ## How to use diff --git a/packages/gatsby-plugin-google-gtag/README.md b/packages/gatsby-plugin-google-gtag/README.md index bd9a095092a1d..d600c8c94b91e 100644 --- a/packages/gatsby-plugin-google-gtag/README.md +++ b/packages/gatsby-plugin-google-gtag/README.md @@ -14,7 +14,7 @@ NOTE: This plugin only works in production mode! To test your Global Site Tag is ## Install -`npm install --save gatsby-plugin-google-gtag` +`npm install gatsby-plugin-google-gtag` ## How to use diff --git a/packages/gatsby-plugin-google-tagmanager/README.md b/packages/gatsby-plugin-google-tagmanager/README.md index 5edf37090548e..315f775d4014e 100644 --- a/packages/gatsby-plugin-google-tagmanager/README.md +++ b/packages/gatsby-plugin-google-tagmanager/README.md @@ -4,7 +4,7 @@ Easily add Google Tagmanager to your Gatsby site. ## Install -`npm install --save gatsby-plugin-google-tagmanager` +`npm install gatsby-plugin-google-tagmanager` ## How to use diff --git a/packages/gatsby-plugin-guess-js/README.md b/packages/gatsby-plugin-guess-js/README.md index ea7c39b5bfc8d..b1a9ce28d4a88 100644 --- a/packages/gatsby-plugin-guess-js/README.md +++ b/packages/gatsby-plugin-guess-js/README.md @@ -23,7 +23,7 @@ https://guess-gatsby-wikipedia-demo.firebaseapp.com ## Install -`npm install --save gatsby-plugin-guess-js` +`npm install gatsby-plugin-guess-js` ## How to use diff --git a/packages/gatsby-plugin-jss/README.md b/packages/gatsby-plugin-jss/README.md index 97f1472eb68f4..0b15ade8e68f1 100644 --- a/packages/gatsby-plugin-jss/README.md +++ b/packages/gatsby-plugin-jss/README.md @@ -5,7 +5,7 @@ Provide drop-in support for using the css-in-js library ## Install -`npm install --save gatsby-plugin-jss react-jss` +`npm install gatsby-plugin-jss react-jss` ## How to use diff --git a/packages/gatsby-plugin-layout/README.md b/packages/gatsby-plugin-layout/README.md index 7dd557aa5e7ad..5e0cfc647fab4 100644 --- a/packages/gatsby-plugin-layout/README.md +++ b/packages/gatsby-plugin-layout/README.md @@ -14,7 +14,7 @@ This plugin reimplements the behavior of layout components in `gatsby@1`, which ## Install ```shell -npm install --save gatsby-plugin-layout +npm install gatsby-plugin-layout ``` ## How to use diff --git a/packages/gatsby-plugin-less/README.md b/packages/gatsby-plugin-less/README.md index fea0c60a82c65..0b878be765d74 100644 --- a/packages/gatsby-plugin-less/README.md +++ b/packages/gatsby-plugin-less/README.md @@ -4,7 +4,7 @@ Provides drop-in support for Less stylesheets ## Install -`npm install --save gatsby-plugin-less` +`npm install gatsby-plugin-less` ## How to use @@ -90,7 +90,7 @@ plugins: [ ### v2.0.0 - `less` is moved to a peer dependency. Installing the package - alongside `gatsby-plugin-less` is now required. Use `npm install --save less` + alongside `gatsby-plugin-less` is now required. Use `npm install less` - support Gatsby v2 only diff --git a/packages/gatsby-plugin-lodash/README.md b/packages/gatsby-plugin-lodash/README.md index f7fa75482d9b4..3310883ff940f 100644 --- a/packages/gatsby-plugin-lodash/README.md +++ b/packages/gatsby-plugin-lodash/README.md @@ -4,7 +4,7 @@ Adds the Lodash webpack & Babel plugins for easy modular, small Lodash builds. ## Install -`npm install --save gatsby-plugin-lodash lodash` +`npm install gatsby-plugin-lodash lodash` ## How to use diff --git a/packages/gatsby-plugin-manifest/README.md b/packages/gatsby-plugin-manifest/README.md index d9aa0d5d3c272..3d396d096331a 100644 --- a/packages/gatsby-plugin-manifest/README.md +++ b/packages/gatsby-plugin-manifest/README.md @@ -18,7 +18,7 @@ This guide focuses on configuring the plugin. For more information on the web ap ## Install ```shell -npm install --save gatsby-plugin-manifest +npm install gatsby-plugin-manifest ``` ## How to use diff --git a/packages/gatsby-plugin-netlify-cms/README.md b/packages/gatsby-plugin-netlify-cms/README.md index b2af79f51474c..e0381723d446c 100644 --- a/packages/gatsby-plugin-netlify-cms/README.md +++ b/packages/gatsby-plugin-netlify-cms/README.md @@ -20,7 +20,7 @@ site](https://netlifycms.org). ## Install ```shell -npm install --save netlify-cms-app gatsby-plugin-netlify-cms +npm install netlify-cms-app gatsby-plugin-netlify-cms ``` ## How to use diff --git a/packages/gatsby-plugin-netlify/README.md b/packages/gatsby-plugin-netlify/README.md index f31b923bfe561..ed78c78254b20 100644 --- a/packages/gatsby-plugin-netlify/README.md +++ b/packages/gatsby-plugin-netlify/README.md @@ -7,7 +7,7 @@ By default, the plugin will add some basic security headers. You can easily add ## Install -`npm install --save gatsby-plugin-netlify` +`npm install gatsby-plugin-netlify` ## How to use diff --git a/packages/gatsby-plugin-no-sourcemaps/README.md b/packages/gatsby-plugin-no-sourcemaps/README.md index 6d32d3c6bb04d..f97b609e0e74d 100644 --- a/packages/gatsby-plugin-no-sourcemaps/README.md +++ b/packages/gatsby-plugin-no-sourcemaps/README.md @@ -5,7 +5,7 @@ For the times when your JavaScript sourcemaps are just too big to upload to your ## Install ```shell -npm install --save gatsby-plugin-no-sourcemaps +npm install gatsby-plugin-no-sourcemaps ``` ## Usage diff --git a/packages/gatsby-plugin-nprogress/README.md b/packages/gatsby-plugin-nprogress/README.md index de24d11dbab60..4ef35101a6c72 100644 --- a/packages/gatsby-plugin-nprogress/README.md +++ b/packages/gatsby-plugin-nprogress/README.md @@ -6,7 +6,7 @@ clicking on a link). ## Install -`npm install --save gatsby-plugin-nprogress` +`npm install gatsby-plugin-nprogress` ## How to use diff --git a/packages/gatsby-plugin-offline/README.md b/packages/gatsby-plugin-offline/README.md index f95f5561bd45f..b9c0b40eb6863 100644 --- a/packages/gatsby-plugin-offline/README.md +++ b/packages/gatsby-plugin-offline/README.md @@ -10,7 +10,7 @@ in the service worker. ## Install -`npm install --save gatsby-plugin-offline` +`npm install gatsby-plugin-offline` ## How to use diff --git a/packages/gatsby-plugin-page-creator/README.md b/packages/gatsby-plugin-page-creator/README.md index b454f4b520f0d..7f080b9872518 100644 --- a/packages/gatsby-plugin-page-creator/README.md +++ b/packages/gatsby-plugin-page-creator/README.md @@ -21,7 +21,7 @@ To exclude custom patterns, see [Ignoring Specific Files](#ignoring-specific-fil ## Install -`npm install --save gatsby-plugin-page-creator` +`npm install gatsby-plugin-page-creator` ## How to use diff --git a/packages/gatsby-plugin-postcss/README.md b/packages/gatsby-plugin-postcss/README.md index a03ef4a5d9bbe..1c8b313a55f28 100644 --- a/packages/gatsby-plugin-postcss/README.md +++ b/packages/gatsby-plugin-postcss/README.md @@ -4,7 +4,7 @@ Gatsby plugin to handle PostCSS. ## Install -`npm install --save postcss gatsby-plugin-postcss` +`npm install postcss gatsby-plugin-postcss` ## How to use diff --git a/packages/gatsby-plugin-preact/README.md b/packages/gatsby-plugin-preact/README.md index 029609b76b357..865c07d2dbbed 100644 --- a/packages/gatsby-plugin-preact/README.md +++ b/packages/gatsby-plugin-preact/README.md @@ -10,7 +10,7 @@ React. ## Install -`npm install --save gatsby-plugin-preact preact preact-render-to-string` +`npm install gatsby-plugin-preact preact preact-render-to-string` ## How to use diff --git a/packages/gatsby-plugin-preload-fonts/README.md b/packages/gatsby-plugin-preload-fonts/README.md index 2c7fc26fe5d97..bdf5fabbbbd54 100644 --- a/packages/gatsby-plugin-preload-fonts/README.md +++ b/packages/gatsby-plugin-preload-fonts/README.md @@ -7,7 +7,7 @@ link to stylesheets that in turn link to font files. ## Install ```shell -npm install --save gatsby-plugin-preload-fonts +npm install gatsby-plugin-preload-fonts ``` Once you've installed the plugin, you'll want to add the included script diff --git a/packages/gatsby-plugin-react-css-modules/README.md b/packages/gatsby-plugin-react-css-modules/README.md index 4f90e5f96b124..cc86d09b6ebde 100644 --- a/packages/gatsby-plugin-react-css-modules/README.md +++ b/packages/gatsby-plugin-react-css-modules/README.md @@ -11,7 +11,7 @@ for details. ## Install -`npm install --save gatsby-plugin-react-css-modules` +`npm install gatsby-plugin-react-css-modules` ## How to use diff --git a/packages/gatsby-plugin-react-helmet/README.md b/packages/gatsby-plugin-react-helmet/README.md index 855ace212c930..9fbbb3fc8ddec 100644 --- a/packages/gatsby-plugin-react-helmet/README.md +++ b/packages/gatsby-plugin-react-helmet/README.md @@ -13,7 +13,7 @@ This is important not just for site viewers, but also for SEO -- title and descr ## Install -`npm install --save gatsby-plugin-react-helmet react-helmet` +`npm install gatsby-plugin-react-helmet react-helmet` ## How to use diff --git a/packages/gatsby-plugin-sass/README.md b/packages/gatsby-plugin-sass/README.md index 5404893b3a228..4d1237ad40395 100644 --- a/packages/gatsby-plugin-sass/README.md +++ b/packages/gatsby-plugin-sass/README.md @@ -4,7 +4,7 @@ Provides drop-in support for Sass/SCSS stylesheets ## Install -`npm install --save node-sass gatsby-plugin-sass` +`npm install node-sass gatsby-plugin-sass` ## How to use @@ -213,6 +213,6 @@ plugins: [ ### v2.0.0 - `node-sass` is moved to a peer dependency. Installing the package - alongside `gatsby-plugin-sass` is now required. Use `npm install --save node-sass` + alongside `gatsby-plugin-sass` is now required. Use `npm install node-sass` - support Gatsby v2 only diff --git a/packages/gatsby-plugin-sharp/README.md b/packages/gatsby-plugin-sharp/README.md index dd9e8dc854007..719d084ac4ddd 100644 --- a/packages/gatsby-plugin-sharp/README.md +++ b/packages/gatsby-plugin-sharp/README.md @@ -20,7 +20,7 @@ of PNGs then it can significantly reduce build times. ## Install -`npm install --save gatsby-plugin-sharp` +`npm install gatsby-plugin-sharp` ## How to use diff --git a/packages/gatsby-plugin-sitemap/README.md b/packages/gatsby-plugin-sitemap/README.md index 06c346806de9b..a09e591e6c18b 100644 --- a/packages/gatsby-plugin-sitemap/README.md +++ b/packages/gatsby-plugin-sitemap/README.md @@ -6,7 +6,7 @@ _NOTE: This plugin only generates output when run in `production` mode! To test ## Install -`npm install --save gatsby-plugin-sitemap` +`npm install gatsby-plugin-sitemap` ## How to Use diff --git a/packages/gatsby-plugin-styled-components/README.md b/packages/gatsby-plugin-styled-components/README.md index 96ed1bcaaa5e0..3c33166aaed59 100644 --- a/packages/gatsby-plugin-styled-components/README.md +++ b/packages/gatsby-plugin-styled-components/README.md @@ -6,7 +6,7 @@ built-in server-side rendering support. ## Install -`npm install --save gatsby-plugin-styled-components styled-components babel-plugin-styled-components` +`npm install gatsby-plugin-styled-components styled-components babel-plugin-styled-components` ## How to use @@ -50,4 +50,4 @@ support Gatsby v2 only #### v2.0.1 `styled-components` is moved to a peer dependency. Installing the package -alongside `gatsby-plugin-styled-components` is now required. Use `npm install --save styled-components` +alongside `gatsby-plugin-styled-components` is now required. Use `npm install styled-components` diff --git a/packages/gatsby-plugin-styled-jsx/README.md b/packages/gatsby-plugin-styled-jsx/README.md index af81cff0c914a..609c7bc65ee26 100644 --- a/packages/gatsby-plugin-styled-jsx/README.md +++ b/packages/gatsby-plugin-styled-jsx/README.md @@ -4,7 +4,7 @@ Provides drop-in support for [styled-jsx](https://github.com/vercel/styled-jsx). ## Install -`npm install --save styled-jsx gatsby-plugin-styled-jsx` +`npm install styled-jsx gatsby-plugin-styled-jsx` ## How to use diff --git a/packages/gatsby-plugin-stylus/README.md b/packages/gatsby-plugin-stylus/README.md index fd8e671030338..17d28be5ffbb3 100644 --- a/packages/gatsby-plugin-stylus/README.md +++ b/packages/gatsby-plugin-stylus/README.md @@ -4,7 +4,7 @@ Provides drop-in support for Stylus with or without CSS Modules ## Install -`npm install --save gatsby-plugin-stylus` +`npm install gatsby-plugin-stylus` ## How to use diff --git a/packages/gatsby-plugin-subfont/README.md b/packages/gatsby-plugin-subfont/README.md index 265b7d4a5b42a..cb6787045d15b 100644 --- a/packages/gatsby-plugin-subfont/README.md +++ b/packages/gatsby-plugin-subfont/README.md @@ -6,7 +6,7 @@ ## Install -`npm install --save gatsby-plugin-subfont` +`npm install gatsby-plugin-subfont` If you want the ability to run font subsetting locally you'l need Python and install fonttools with this command line: diff --git a/packages/gatsby-plugin-typography/README.md b/packages/gatsby-plugin-typography/README.md index 13db131ae00fb..f51feb22415d4 100644 --- a/packages/gatsby-plugin-typography/README.md +++ b/packages/gatsby-plugin-typography/README.md @@ -7,7 +7,7 @@ See it in action in the [Tutorial](https://www.gatsbyjs.org/tutorial/part-three/ ## Install -`npm install --save gatsby-plugin-typography react-typography typography` +`npm install gatsby-plugin-typography react-typography typography` ## Why to use diff --git a/packages/gatsby-remark-autolink-headers/README.md b/packages/gatsby-remark-autolink-headers/README.md index 58ce2e809e9f4..0cb9355612a1c 100644 --- a/packages/gatsby-remark-autolink-headers/README.md +++ b/packages/gatsby-remark-autolink-headers/README.md @@ -6,7 +6,7 @@ This is a sub-plugin for `gatsby-transformer-remark`. As demoed below, add this ## Install -`npm install --save gatsby-remark-autolink-headers` +`npm install gatsby-remark-autolink-headers` ## How to use diff --git a/packages/gatsby-remark-code-repls/README.md b/packages/gatsby-remark-code-repls/README.md index edbebea26f74d..ca491b9acf5a7 100644 --- a/packages/gatsby-remark-code-repls/README.md +++ b/packages/gatsby-remark-code-repls/README.md @@ -120,7 +120,7 @@ specified examples directory. (This will avoid broken links at runtime.) ## Installation -`npm install --save gatsby-remark-code-repls` +`npm install gatsby-remark-code-repls` ## Usage diff --git a/packages/gatsby-remark-copy-linked-files/README.md b/packages/gatsby-remark-copy-linked-files/README.md index bdedbbfa3b931..e84328f7431bb 100644 --- a/packages/gatsby-remark-copy-linked-files/README.md +++ b/packages/gatsby-remark-copy-linked-files/README.md @@ -24,7 +24,7 @@ The `my-awesome-pdf.pdf` file will be copied to the root directory (i.e., `publi ## Install plugin -`npm install --save gatsby-remark-copy-linked-files` +`npm install gatsby-remark-copy-linked-files` ## Add plugin to Gatsby Config diff --git a/packages/gatsby-remark-custom-blocks/README.md b/packages/gatsby-remark-custom-blocks/README.md index d0ba46e8cc6aa..0b1192587ec62 100644 --- a/packages/gatsby-remark-custom-blocks/README.md +++ b/packages/gatsby-remark-custom-blocks/README.md @@ -6,7 +6,7 @@ Unlike in [gatsby-remark-component](https://www.gatsbyjs.org/packages/gatsby-rem ## Install -`npm install --save gatsby-remark-custom-blocks` +`npm install gatsby-remark-custom-blocks` ## How to use diff --git a/packages/gatsby-remark-embed-snippet/README.md b/packages/gatsby-remark-embed-snippet/README.md index 0452f3e603e2d..584aa510f5557 100644 --- a/packages/gatsby-remark-embed-snippet/README.md +++ b/packages/gatsby-remark-embed-snippet/README.md @@ -7,7 +7,7 @@ Embeds the contents of specified files as code snippets. **Note**: This plugin depends on [gatsby-remark-prismjs](https://www.gatsbyjs.org/packages/gatsby-remark-prismjs/) and [gatsby-transformer-remark](https://www.gatsbyjs.org/packages/gatsby-transformer-remark/) plugins ```shell -npm install --save gatsby-remark-embed-snippet gatsby-remark-prismjs gatsby-transformer-remark prismjs +npm install gatsby-remark-embed-snippet gatsby-remark-prismjs gatsby-transformer-remark prismjs ``` ## Configuration diff --git a/packages/gatsby-remark-graphviz/README.md b/packages/gatsby-remark-graphviz/README.md index 3efdd165b7198..24880dd06dfa9 100644 --- a/packages/gatsby-remark-graphviz/README.md +++ b/packages/gatsby-remark-graphviz/README.md @@ -6,7 +6,7 @@ Processes [graphviz](https://www.graphviz.org/) (`dot` and `circo`) code blocks ## Install -`npm install --save gatsby-remark-graphviz` +`npm install gatsby-remark-graphviz` Note that you do **not** need graphviz installed on your machine as this project depends on viz.js which is a pure JavaScript port of graphviz. diff --git a/packages/gatsby-remark-images-contentful/README.md b/packages/gatsby-remark-images-contentful/README.md index ce5e1db4b467d..c6d81abd45773 100644 --- a/packages/gatsby-remark-images-contentful/README.md +++ b/packages/gatsby-remark-images-contentful/README.md @@ -15,7 +15,7 @@ In the processing, it makes images responsive by: ## Install -`npm install --save gatsby-remark-images-contentful` +`npm install gatsby-remark-images-contentful` ## How to use diff --git a/packages/gatsby-remark-images/README.md b/packages/gatsby-remark-images/README.md index 7d61500ef6c13..ae2de2029fb9f 100644 --- a/packages/gatsby-remark-images/README.md +++ b/packages/gatsby-remark-images/README.md @@ -15,7 +15,7 @@ In the processing, it makes images responsive by: ## Install -`npm install --save gatsby-remark-images gatsby-plugin-sharp` +`npm install gatsby-remark-images gatsby-plugin-sharp` ## How to use diff --git a/packages/gatsby-remark-katex/README.md b/packages/gatsby-remark-katex/README.md index ddf3056f7b568..051f3b62da434 100644 --- a/packages/gatsby-remark-katex/README.md +++ b/packages/gatsby-remark-katex/README.md @@ -5,7 +5,7 @@ ## Install -`npm install --save gatsby-transformer-remark gatsby-remark-katex katex` +`npm install gatsby-transformer-remark gatsby-remark-katex katex` ## How to use diff --git a/packages/gatsby-remark-prismjs/README.md b/packages/gatsby-remark-prismjs/README.md index 6453fd60e7568..20e854ae5b314 100644 --- a/packages/gatsby-remark-prismjs/README.md +++ b/packages/gatsby-remark-prismjs/README.md @@ -5,7 +5,7 @@ Adds syntax highlighting to code blocks in markdown files using ## Install -`npm install --save gatsby-transformer-remark gatsby-remark-prismjs prismjs` +`npm install gatsby-transformer-remark gatsby-remark-prismjs prismjs` ## How to use diff --git a/packages/gatsby-remark-responsive-iframe/README.md b/packages/gatsby-remark-responsive-iframe/README.md index 7866d4194f5e2..095454d76a82f 100644 --- a/packages/gatsby-remark-responsive-iframe/README.md +++ b/packages/gatsby-remark-responsive-iframe/README.md @@ -7,7 +7,7 @@ container. ## Install -`npm install --save gatsby-remark-responsive-iframe` +`npm install gatsby-remark-responsive-iframe` ## How to use diff --git a/packages/gatsby-remark-smartypants/README.md b/packages/gatsby-remark-smartypants/README.md index 8836f2a9d6f54..214776c2dbcf6 100644 --- a/packages/gatsby-remark-smartypants/README.md +++ b/packages/gatsby-remark-smartypants/README.md @@ -5,7 +5,7 @@ Replaces “dumb” punctuation marks with “smart” punctuation marks using t ## Install -`npm install --save gatsby-remark-smartypants` +`npm install gatsby-remark-smartypants` ## How to use diff --git a/packages/gatsby-source-contentful/README.md b/packages/gatsby-source-contentful/README.md index 2a7f126cd6c77..640ac7592879c 100644 --- a/packages/gatsby-source-contentful/README.md +++ b/packages/gatsby-source-contentful/README.md @@ -10,7 +10,7 @@ https://using-contentful.gatsbyjs.org/ ## Install ```shell -npm install --save gatsby-source-contentful +npm install gatsby-source-contentful ``` ## How to use diff --git a/packages/gatsby-source-drupal/README.md b/packages/gatsby-source-drupal/README.md index 9bb598e7b6f52..3fc6951eab9d5 100644 --- a/packages/gatsby-source-drupal/README.md +++ b/packages/gatsby-source-drupal/README.md @@ -15,7 +15,7 @@ been used since jsonapi version `8.x-1.0-alpha4`. ## Install -`npm install --save gatsby-source-drupal` +`npm install gatsby-source-drupal` ## How to use diff --git a/packages/gatsby-source-faker/README.md b/packages/gatsby-source-faker/README.md index 5df72c0e89bf0..e37a3d17f8cda 100644 --- a/packages/gatsby-source-faker/README.md +++ b/packages/gatsby-source-faker/README.md @@ -7,7 +7,7 @@ This is a plugin that allows you to use [faker.js](https://github.com/marak/Fake Install `gatsby-source-faker` ```shell -npm install --save gatsby-source-faker +npm install gatsby-source-faker ``` or diff --git a/packages/gatsby-source-filesystem/README.md b/packages/gatsby-source-filesystem/README.md index 851dc211dbd92..f1d6c2944bf31 100644 --- a/packages/gatsby-source-filesystem/README.md +++ b/packages/gatsby-source-filesystem/README.md @@ -11,7 +11,7 @@ nodes from which you can query an HTML representation of the markdown. ## Install -`npm install --save gatsby-source-filesystem` +`npm install gatsby-source-filesystem` ## How to use diff --git a/packages/gatsby-source-graphql/README.md b/packages/gatsby-source-graphql/README.md index 39160efc04bd3..dec7a6ff3c470 100644 --- a/packages/gatsby-source-graphql/README.md +++ b/packages/gatsby-source-graphql/README.md @@ -7,7 +7,7 @@ Plugin for connecting arbitrary GraphQL APIs to Gatsby's GraphQL. Remote schemas ## Install -`npm install --save gatsby-source-graphql` +`npm install gatsby-source-graphql` ## How to use diff --git a/packages/gatsby-source-hacker-news/README.md b/packages/gatsby-source-hacker-news/README.md index b0e112e00bcce..b2bd4d17eba22 100644 --- a/packages/gatsby-source-hacker-news/README.md +++ b/packages/gatsby-source-hacker-news/README.md @@ -5,7 +5,7 @@ Source plugin for pulling data into Gatsby from the ## Install -`npm install --save gatsby-source-hacker-news` +`npm install gatsby-source-hacker-news` ## How to use diff --git a/packages/gatsby-source-lever/README.md b/packages/gatsby-source-lever/README.md index 8ff0d00847964..bc3e7eb28bf06 100644 --- a/packages/gatsby-source-lever/README.md +++ b/packages/gatsby-source-lever/README.md @@ -11,7 +11,7 @@ Source plugin for pulling data into [Gatsby](https://github.com/gatsbyjs) from ## Install -`npm install --save gatsby-source-lever` +`npm install gatsby-source-lever` ## How to use diff --git a/packages/gatsby-source-medium/README.md b/packages/gatsby-source-medium/README.md index 77d95dec8bb15..5337af1e3a38e 100644 --- a/packages/gatsby-source-medium/README.md +++ b/packages/gatsby-source-medium/README.md @@ -6,7 +6,7 @@ endpoint. Unfortunately the JSON endpoint does not provide the complete stories, ## Install -`npm install --save gatsby-source-medium` +`npm install gatsby-source-medium` ## How to use diff --git a/packages/gatsby-source-npm-package-search/README.md b/packages/gatsby-source-npm-package-search/README.md index 0de98e040a95a..a57370d96006f 100644 --- a/packages/gatsby-source-npm-package-search/README.md +++ b/packages/gatsby-source-npm-package-search/README.md @@ -4,7 +4,7 @@ This plugin uses Yarn's Algolia search to import all gatsby-related package info ## Install -`npm install --save gatsby-source-npm` +`npm install gatsby-source-npm` ## How to use diff --git a/packages/gatsby-source-shopify/README.md b/packages/gatsby-source-shopify/README.md index 0d91d28c811e6..4fb3c3f9b9c17 100644 --- a/packages/gatsby-source-shopify/README.md +++ b/packages/gatsby-source-shopify/README.md @@ -12,7 +12,7 @@ stores via the [Shopify Storefront API][shopify-storefront-api]. ## Install ```shell -npm install --save gatsby-source-shopify +npm install gatsby-source-shopify ``` ## How to use diff --git a/packages/gatsby-source-wikipedia/README.md b/packages/gatsby-source-wikipedia/README.md index 011b85c55b5a6..e7d3310eb3f5c 100644 --- a/packages/gatsby-source-wikipedia/README.md +++ b/packages/gatsby-source-wikipedia/README.md @@ -8,7 +8,7 @@ https://guess-gatsby-wikipedia-demo.firebaseapp.com ## Install -`npm install --save gatsby-source-wikipedia` +`npm install gatsby-source-wikipedia` ## How to use diff --git a/packages/gatsby-source-wordpress/README.md b/packages/gatsby-source-wordpress/README.md index 3744d2a4c6d12..cbe2d6f4a049f 100644 --- a/packages/gatsby-source-wordpress/README.md +++ b/packages/gatsby-source-wordpress/README.md @@ -46,7 +46,7 @@ Note : If some fields are missing, check [troubleshooting missing fields](#missi ## Install -`npm install --save gatsby-source-wordpress` +`npm install gatsby-source-wordpress` ## How to use diff --git a/packages/gatsby-transformer-asciidoc/README.md b/packages/gatsby-transformer-asciidoc/README.md index 76ea3fd245d64..2d9f6afbe4b75 100644 --- a/packages/gatsby-transformer-asciidoc/README.md +++ b/packages/gatsby-transformer-asciidoc/README.md @@ -4,7 +4,7 @@ Parses AsciiDoc files using [Asciidoctor.js](https://asciidoctor.org/docs/asciid ## Install -`npm install --save gatsby-transformer-asciidoc` +`npm install gatsby-transformer-asciidoc` ## How to use diff --git a/packages/gatsby-transformer-csv/README.md b/packages/gatsby-transformer-csv/README.md index e742d4636f440..1849bdc3bd7e7 100644 --- a/packages/gatsby-transformer-csv/README.md +++ b/packages/gatsby-transformer-csv/README.md @@ -4,7 +4,7 @@ Parses CSV files into JSON arrays. ## Install -`npm install --save gatsby-transformer-csv` +`npm install gatsby-transformer-csv` Note: You generally will use this plugin together with the [`gatsby-source-filesystem`](/packages/gatsby-source-filesystem/) plugin. `gatsby-source-filesystem` reads in the files then this plugin _transforms_ the files into data you can query. diff --git a/packages/gatsby-transformer-documentationjs/README.md b/packages/gatsby-transformer-documentationjs/README.md index 739d5f56b1e9c..6b69b82e25561 100644 --- a/packages/gatsby-transformer-documentationjs/README.md +++ b/packages/gatsby-transformer-documentationjs/README.md @@ -9,7 +9,7 @@ It's used on gatsbyjs.org and can be seen in use on several pages there e.g. ## Install -`npm install --save gatsby-transformer-documentationjs` +`npm install gatsby-transformer-documentationjs` ## How to use diff --git a/packages/gatsby-transformer-excel/README.md b/packages/gatsby-transformer-excel/README.md index 04d28e1f09112..0d87fe0797833 100644 --- a/packages/gatsby-transformer-excel/README.md +++ b/packages/gatsby-transformer-excel/README.md @@ -4,7 +4,7 @@ Parses Excel files into JSON arrays. ## Install -`npm install --save gatsby-transformer-excel` +`npm install gatsby-transformer-excel` Note: You generally will use this plugin together with the [`gatsby-source-filesystem`](/packages/gatsby-source-filesystem/) plugin. `gatsby-source-filesystem` reads in the files then this plugin _transforms_ the files into data you can query. diff --git a/packages/gatsby-transformer-hjson/README.md b/packages/gatsby-transformer-hjson/README.md index ba6b996502433..733deeed83bb6 100644 --- a/packages/gatsby-transformer-hjson/README.md +++ b/packages/gatsby-transformer-hjson/README.md @@ -5,7 +5,7 @@ HJSON files. Supports arrays of objects and single objects. ## Install -`npm install --save gatsby-transformer-hjson` +`npm install gatsby-transformer-hjson` You also need to have `gatsby-source-filesystem` installed and configured so it points to your files. diff --git a/packages/gatsby-transformer-javascript-frontmatter/README.md b/packages/gatsby-transformer-javascript-frontmatter/README.md index ba207fecafa8a..9855c0eca2249 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/README.md +++ b/packages/gatsby-transformer-javascript-frontmatter/README.md @@ -4,7 +4,7 @@ Parses JavaScript files to extract frontmatter from exports. ## Install -`npm install --save gatsby-source-filesystem gatsby-transformer-javascript-frontmatter` +`npm install gatsby-source-filesystem gatsby-transformer-javascript-frontmatter` ## How to use diff --git a/packages/gatsby-transformer-javascript-static-exports/README.md b/packages/gatsby-transformer-javascript-static-exports/README.md index 3c5df62ecf5d5..946c1ae30695d 100644 --- a/packages/gatsby-transformer-javascript-static-exports/README.md +++ b/packages/gatsby-transformer-javascript-static-exports/README.md @@ -4,7 +4,7 @@ Parses JavaScript files to extract data from exports. ## Install -`npm install --save gatsby-transformer-javascript-static-exports` +`npm install gatsby-transformer-javascript-static-exports` ## How to use diff --git a/packages/gatsby-transformer-json/README.md b/packages/gatsby-transformer-json/README.md index 96f38218866e5..a08ad6f346485 100644 --- a/packages/gatsby-transformer-json/README.md +++ b/packages/gatsby-transformer-json/README.md @@ -5,7 +5,7 @@ arrays of objects and single objects. ## Install -`npm install --save gatsby-transformer-json` +`npm install gatsby-transformer-json` If you want to transform json files, you also need to have `gatsby-source-filesystem` installed and configured so it points to your files. diff --git a/packages/gatsby-transformer-pdf/README.md b/packages/gatsby-transformer-pdf/README.md index e28944ee74fed..5ce8fdb7f9f81 100644 --- a/packages/gatsby-transformer-pdf/README.md +++ b/packages/gatsby-transformer-pdf/README.md @@ -4,7 +4,7 @@ Use [pdf2Json](https://github.com/modesty/pdf2json) to extract textual content o ## Install -`npm install --save gatsby-transformer-pdf` +`npm install gatsby-transformer-pdf` You also need to have gatsby-source-filesystem installed and configured so it points to your files. diff --git a/packages/gatsby-transformer-react-docgen/README.md b/packages/gatsby-transformer-react-docgen/README.md index 9f97accdafe1b..c3151df158dc6 100644 --- a/packages/gatsby-transformer-react-docgen/README.md +++ b/packages/gatsby-transformer-react-docgen/README.md @@ -6,7 +6,7 @@ Parses inline component-documentation using ## Install ```shell -npm install --save gatsby-transformer-react-docgen +npm install gatsby-transformer-react-docgen ``` ## Usage diff --git a/packages/gatsby-transformer-remark/README.md b/packages/gatsby-transformer-remark/README.md index 13dd3afd89852..678b212c90b5b 100644 --- a/packages/gatsby-transformer-remark/README.md +++ b/packages/gatsby-transformer-remark/README.md @@ -4,7 +4,7 @@ Parses Markdown files using [Remark](http://remark.js.org/). ## Install -`npm install --save gatsby-transformer-remark` +`npm install gatsby-transformer-remark` ## How to use diff --git a/packages/gatsby-transformer-sharp/README.md b/packages/gatsby-transformer-sharp/README.md index 3f53e7e04b9fc..31bb6585cb3bb 100644 --- a/packages/gatsby-transformer-sharp/README.md +++ b/packages/gatsby-transformer-sharp/README.md @@ -10,7 +10,7 @@ including resizing, cropping, and creating responsive images. ## Install -`npm install --save gatsby-transformer-sharp gatsby-plugin-sharp` +`npm install gatsby-transformer-sharp gatsby-plugin-sharp` ## How to use diff --git a/packages/gatsby-transformer-toml/README.md b/packages/gatsby-transformer-toml/README.md index 6050b122df361..0818d35232737 100644 --- a/packages/gatsby-transformer-toml/README.md +++ b/packages/gatsby-transformer-toml/README.md @@ -4,7 +4,7 @@ Parses TOML files. ## Install -`npm install --save gatsby-transformer-toml` +`npm install gatsby-transformer-toml` ## How to use diff --git a/packages/gatsby-transformer-xml/README.md b/packages/gatsby-transformer-xml/README.md index 3b5ce091cd5ee..536e405f33497 100644 --- a/packages/gatsby-transformer-xml/README.md +++ b/packages/gatsby-transformer-xml/README.md @@ -4,7 +4,7 @@ Parses XML files. It also supports attributes ## Install -`npm install --save gatsby-transformer-xml` +`npm install gatsby-transformer-xml` ## How to use diff --git a/packages/gatsby-transformer-yaml/README.md b/packages/gatsby-transformer-yaml/README.md index 40a591b958445..6eca02e0b10ce 100644 --- a/packages/gatsby-transformer-yaml/README.md +++ b/packages/gatsby-transformer-yaml/README.md @@ -8,7 +8,7 @@ Both `.yaml` and `.yml` are treated in the same way. This document uses both of ## Install -`npm install --save gatsby-transformer-yaml` +`npm install gatsby-transformer-yaml` **Note:** You also need to have `gatsby-source-filesystem` installed and configured so it points to your files.