Skip to content

Commit

Permalink
Change 'dependencies' to 'devDependencies'. (#14736)
Browse files Browse the repository at this point in the history
Because it says to run npm install with --save-dev flag
"dependencies": {
    "@wordpress/scripts": "3.1.0"
}
```
Should say:
```
"devDependencies": {
    "@wordpress/scripts": "3.1.0"
}
```
  • Loading branch information
Michael Chavez authored and gziolo committed Apr 1, 2019
1 parent 603709d commit 0d58c70
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ After installing, a `node_modules` directory is created with the modules and the
Also, if you look at package.json file it will include a new section:

```json
"dependencies": {
"devDependencies": {
"@wordpress/scripts": "3.1.0"
}
```
Expand Down

0 comments on commit 0d58c70

Please sign in to comment.