From 6f3de783f4ed5d68bf4ef94d381584bed4bff67b Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Sun, 31 Aug 2014 18:30:30 +0200 Subject: [PATCH] simplify dependency installation --- README.md | 2 +- package.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bc0715fc..f78e25c3 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Image size generation for post teaser images and photos is done with [jekyll-pic Run the following command from the repository's root folder to install all dependencies. ```bash -npm install && bower install && bundle install +npm install ``` ### Development build diff --git a/package.json b/package.json index 87621fee..9acaccb5 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,9 @@ "description": "Blog of Matthias Kretschmann", "version": "3.0.0", "main": "Gruntfile.js", + "scripts": { + "postinstall": "bower install && bundle install" + }, "dependencies": {}, "devDependencies": { "stylus": ">=0.45.0",