Skip to content

Commit 1913a38

Browse files
committed
Revert "require grunt libs"
This reverts commit ec16656.
1 parent 8a2fdc7 commit 1913a38

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

boilerplate/Gruntfile.coffee

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,7 @@ module.exports = (grunt) ->
5151
)
5252
)
5353

54+
# loading external tasks (aka: plugins)
55+
# Loads all plugins that match "grunt-", in this case all of our current plugins
56+
require('matchdep').filterAll('grunt-*').forEach(grunt.loadNpmTasks)
57+

boilerplate/package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@
1010
"license": "ISC",
1111
"homepage": "",
1212
"devDependencies": {
13-
"embark-framework": "^0.2.0"
13+
"embark-framework": "/Users/iurimatias/Projects/embark-framework",
14+
"grunt-contrib-clean": "^0.6.0",
15+
"grunt-contrib-coffee": "^0.13.0",
16+
"grunt-contrib-concat": "^0.5.1",
17+
"grunt-contrib-copy": "^0.8.0",
18+
"grunt-contrib-uglify": "^0.9.1",
19+
"grunt-contrib-watch": "^0.6.1",
20+
"grunt": "^0.4.5",
21+
"grunt-cli": "^0.1.13",
22+
"matchdep": "^0.3.0"
1423
}
1524
}

index.js

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,4 @@ var express = require('express');
77
var compression = require('compression');
88
var commander = require('commander');
99
var wrench = require('wrench');
10-
11-
var grunt = require('grunt');
12-
var grunt_cli = require('grunt-cli');
13-
var grunt_clean = require('grunt-contrib-clean');
14-
var grunt_coffee = require('grunt-contrib-coffee');
15-
var grunt_concat = require('grunt-contrib-concat');
16-
var grunt_copy = require('grunt-contrib-copy');
17-
var grunt_uglify = require('grunt-contrib-uglify');
18-
var grunt_watch = require('grunt-contrib-watch');
19-
var matchdep = require('matchdep');
20-
21-
console.log("loaded embark-framework");
22-
10+
console.log("dude!!!");

0 commit comments

Comments
 (0)