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

Commit

Permalink
Removing Grunt Task
Browse files Browse the repository at this point in the history
  • Loading branch information
amoshaviv committed Oct 13, 2013
1 parent 40a643a commit b8a23eb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 8 additions & 0 deletions README.md
Expand Up @@ -6,6 +6,14 @@ MEAN is a boilerplate that provides a nice starting point for [MongoDB](http://w
* 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
* MongoDB - Download and Install [MongoDB](http://www.mongodb.org/downloads) - Make sure it's running on the default port (27017).

### Tools Prerequisites
* NPM - Node.js package manager, should be installed when you install node.js.
* Bower - Web package manager, installing [Bower](http://bower.io/) is simple when you have npm:

```
$ npm install -g bower
```

### Optional
* Grunt - Download and Install [Grunt](http://gruntjs.com).

Expand Down
4 changes: 0 additions & 4 deletions gruntfile.js
Expand Up @@ -69,7 +69,6 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-mocha-test');
grunt.loadNpmTasks('grunt-nodemon');
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-bower-task');

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

//Test task.
grunt.registerTask('test', ['mochaTest']);

//Bower task.
grunt.registerTask('install', ['bower']);
};
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -15,7 +15,7 @@
"scripts": {
"start": "node node_modules/grunt-cli/bin/grunt",
"test": "node node_modules/grunt-cli/bin/grunt test",
"postinstall": "node node_modules/grunt-cli/bin/grunt install"
"postinstall": "bower install"
},
"dependencies": {
"express": "latest",
Expand Down

0 comments on commit b8a23eb

Please sign in to comment.