From e6bf7ed0264b9329b4ca6c2bd1b733e5b5550092 Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 29 Jul 2016 12:58:37 -0700 Subject: [PATCH] docs: include jasmine-core in installation instructions Update to include jasmine-core in install doc, which is a peer dependency of karma-jasmine --- docs/intro/01-installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/intro/01-installation.md b/docs/intro/01-installation.md index de8233954..4067ebad8 100644 --- a/docs/intro/01-installation.md +++ b/docs/intro/01-installation.md @@ -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.