Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit b8a23eb

Browse files
committed
Removing Grunt Task
1 parent 40a643a commit b8a23eb

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ MEAN is a boilerplate that provides a nice starting point for [MongoDB](http://w
66
* Node.js - Download and Install [Node.js](http://www.nodejs.org/download/). You can also follow [this gist](https://gist.github.com/isaacs/579814) for a quick and easy way to install Node.js and npm
77
* MongoDB - Download and Install [MongoDB](http://www.mongodb.org/downloads) - Make sure it's running on the default port (27017).
88

9+
### Tools Prerequisites
10+
* NPM - Node.js package manager, should be installed when you install node.js.
11+
* Bower - Web package manager, installing [Bower](http://bower.io/) is simple when you have npm:
12+
13+
```
14+
$ npm install -g bower
15+
```
16+
917
### Optional
1018
* Grunt - Download and Install [Grunt](http://gruntjs.com).
1119

gruntfile.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ module.exports = function(grunt) {
6969
grunt.loadNpmTasks('grunt-mocha-test');
7070
grunt.loadNpmTasks('grunt-nodemon');
7171
grunt.loadNpmTasks('grunt-concurrent');
72-
grunt.loadNpmTasks('grunt-bower-task');
7372

7473
//Making grunt default to force in order not to break the project.
7574
grunt.option('force', true);
@@ -79,7 +78,4 @@ module.exports = function(grunt) {
7978

8079
//Test task.
8180
grunt.registerTask('test', ['mochaTest']);
82-
83-
//Bower task.
84-
grunt.registerTask('install', ['bower']);
8581
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"scripts": {
1616
"start": "node node_modules/grunt-cli/bin/grunt",
1717
"test": "node node_modules/grunt-cli/bin/grunt test",
18-
"postinstall": "node node_modules/grunt-cli/bin/grunt install"
18+
"postinstall": "bower install"
1919
},
2020
"dependencies": {
2121
"express": "latest",

0 commit comments

Comments
 (0)