From a6a787b18f2286f24cbe57223d9d2572334790fb Mon Sep 17 00:00:00 2001 From: Denny Biasiolli Date: Wed, 4 Jan 2017 14:36:57 +0100 Subject: [PATCH] fix: removing `bower install` in `postinstall` script --- CONTRIBUTING.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d8337ac..d9b5302 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,10 +5,10 @@ ## for fixes 1. This is for a fix or a patch for a found bug -- Fork this project and install the packages with npm +- Fork this project and install the packages with npm and bower ``` - npm install + npm install && npm run bower install ``` - Create a new patch branch - Code code code and amend the file `src/angular-pdf.js` diff --git a/package.json b/package.json index b31328b..bb4b9c2 100644 --- a/package.json +++ b/package.json @@ -35,8 +35,8 @@ "phantomjs-prebuilt": "^2.1.4" }, "scripts": { + "bower": "bower", "build": "grunt", - "postinstall": "bower install", "start": "http-server ./example -p 8081", "test": "grunt --verbose" }