Skip to content

Commit dc5fc22

Browse files
JoeCortopassitimdorr
authored andcommitted
--save no longer needed (#217)
`--save` is on by default as of [npm 5](https://blog.npmjs.org/post/161081169345/v500), so `npm install aphrodite` is functionally equivalent to `npm install --save aphrodite` now
1 parent e5d15f5 commit dc5fc22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Thunk [middleware](https://redux.js.org/advanced/middleware) for Redux.
88
[![npm downloads](https://img.shields.io/npm/dm/redux-thunk.svg?style=flat-square)](https://www.npmjs.com/package/redux-thunk)
99

1010
```js
11-
npm install --save redux-thunk
11+
npm install redux-thunk
1212
```
1313

1414
## Note on 2.x Update
@@ -102,7 +102,7 @@ The term [originated](https://en.wikipedia.org/wiki/Thunk#cite_note-1) as a humo
102102
## Installation
103103

104104
```
105-
npm install --save redux-thunk
105+
npm install redux-thunk
106106
```
107107

108108
Then, to enable Redux Thunk, use [`applyMiddleware()`](https://redux.js.org/api-reference/applymiddleware):

0 commit comments

Comments
 (0)