From 6c62f050d8ce9c45883f55c1ac176f2ea544971b Mon Sep 17 00:00:00 2001 From: Jefferson Neves Date: Thu, 10 Aug 2017 04:01:39 -0300 Subject: [PATCH] docs(Contributing): Add a mention to bower install (#380) --- CONTRIBUTING.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3fd1ee5a..6524ac4e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -89,7 +89,7 @@ Software development life-cycle ------------------------------- There are a some Grunt tasks defined to ease the development cycle. Let's see how to use them: -First, make sure you have npm and grunt-cli installed globally. Let's install the dependencies. +First, make sure you have npm, bower and grunt-cli installed globally. Let's install the dependencies. ``` # Inside the project dir, install the dependencies @@ -110,6 +110,17 @@ npm http GET https://registry.npmjs.org/grunt-ngmin ├── useragent@2.0.7 (lru-cache@2.2.4) ├── connect@2.8.8 (methods@0.0.1, uid2@0.0.2, fresh@0.2.0, cookie@0.1.0, ..., send@0.1.4) └── socket.io@0.9.16 (base64id@0.1.0, policyfile@0.0.4, redis@0.7.3, socket.io-client@0.9.16) +... +$ bower install +... +bower jquery#* install jquery#3.2.1 +bower angular#1.4.9 install angular#1.4.9 +bower angular-sanitize#1.4.9 install angular-sanitize#1.4.9 +bower js-polyfills#^0.1.20 install js-polyfills#0.1.34 +bower angular-mocks#1.4.9 install angular-mocks#1.4.9 +bower angular-route#1.4.9 install angular-route#1.4.9 +bower openlayers#* install openlayers#e-tag:a8ff409d6 +... $ ```