Skip to content

Commit

Permalink
docs: include jasmine-core in installation instructions
Browse files Browse the repository at this point in the history
Update to include jasmine-core in install doc, which is a peer dependency of karma-jasmine
  • Loading branch information
camargo authored Jul 29, 2016
1 parent ca4e2c7 commit e6bf7ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/intro/01-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ the project's directory.
$ npm install karma --save-dev

# Install plugins that your project needs:
$ npm install karma-jasmine karma-chrome-launcher --save-dev
$ npm install karma-jasmine karma-chrome-launcher jasmine-core --save-dev

```

This will install `karma`, `karma-jasmine` and `karma-chrome-launcher` packages into `node_modules` in your current
This will install `karma`, `karma-jasmine`, `karma-chrome-launcher` and `jasmine-core` packages into `node_modules` in your current
working directory and also save these as `devDependencies` in `package.json`, so that any
other developer working on the project will only have to do `npm install` in order to get all these
dependencies installed.
Expand Down

0 comments on commit e6bf7ed

Please sign in to comment.