Skip to content

Commit e329b5e

Browse files
committed
Fix old reference to npm install in packages section
1 parent 3100a78 commit e329b5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorial/2-packages/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Congratulations, you installed and used a package!
2323

2424
- Run `yarn remove color`
2525

26-
**Note**: There are 2 kinds of package dependencies, `"dependencies"` and `"devDependencies"`. `"dependencies"` is more general than `"devDependencies"`, which are packages that you only need during development, not production (typically, build-related packages, linters, etc). For `"devDependencies"`, we will use the `--save-dev` parameter instead of `--save`.
26+
**Note**: There are 2 kinds of package dependencies, `"dependencies"` and `"devDependencies"`. `"dependencies"` is more general than `"devDependencies"`, which are packages that you only need during development, not production (typically, build-related packages, linters, etc). For `"devDependencies"`, we will use `yarn add [package] --dev` in addition to `yarn add [package]`.
2727

2828

2929
Next section: [3 - Setting up ES6 with Babel and Gulp](/tutorial/3-es6-babel-gulp)

0 commit comments

Comments
 (0)