From d39bbe50e5c016e3352bcad6421c53b0c034b910 Mon Sep 17 00:00:00 2001 From: Mounish Sai Date: Tue, 19 Feb 2019 10:15:38 +0530 Subject: [PATCH] docs: remove --save flag --save is no longer needed. --- docs/Overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Overview.md b/docs/Overview.md index c0891351b7..530bac8884 100644 --- a/docs/Overview.md +++ b/docs/Overview.md @@ -17,7 +17,7 @@ Draft.js was introduced at [React.js Conf](http://conf.reactjs.com/) in February Draft.js is distributed via npm. It depends on React and React DOM which must also be installed. ```sh -npm install --save draft-js react react-dom +npm install draft-js react react-dom # or alternately yarn add draft-js react react-dom ``` @@ -25,7 +25,7 @@ yarn add draft-js react react-dom Draft.js uses some modern ecmascript features which are not available to IE11 and not part of create-react-app's default babel config. If you're running into problems out-of-the-box try installing a shim or polyfill alongside Draft. ```sh -npm install --save draft-js react react-dom babel-polyfill +npm install draft-js react react-dom babel-polyfill # or yarn add draft-js react react-dom es6-shim ```