require grunt libs
This commit is contained in:
parent
31fdc58cfe
commit
ec16656e0a
|
@ -51,7 +51,3 @@ module.exports = (grunt) ->
|
|||
)
|
||||
)
|
||||
|
||||
# loading external tasks (aka: plugins)
|
||||
# Loads all plugins that match "grunt-", in this case all of our current plugins
|
||||
require('matchdep').filterAll('grunt-*').forEach(grunt.loadNpmTasks)
|
||||
|
||||
|
|
|
@ -10,15 +10,6 @@
|
|||
"license": "ISC",
|
||||
"homepage": "",
|
||||
"devDependencies": {
|
||||
"embark-framework": "/Users/iurimatias/Projects/embark-framework",
|
||||
"grunt-contrib-clean": "^0.6.0",
|
||||
"grunt-contrib-coffee": "^0.13.0",
|
||||
"grunt-contrib-concat": "^0.5.1",
|
||||
"grunt-contrib-copy": "^0.8.0",
|
||||
"grunt-contrib-uglify": "^0.9.1",
|
||||
"grunt-contrib-watch": "^0.6.1",
|
||||
"grunt": "^0.4.5",
|
||||
"grunt-cli": "^0.1.13",
|
||||
"matchdep": "^0.3.0"
|
||||
"embark-framework": "^0.2.0"
|
||||
}
|
||||
}
|
||||
|
|
14
index.js
14
index.js
|
@ -7,4 +7,16 @@ var express = require('express');
|
|||
var compression = require('compression');
|
||||
var commander = require('commander');
|
||||
var wrench = require('wrench');
|
||||
console.log("dude!!!");
|
||||
|
||||
var grunt = require('grunt');
|
||||
var grunt_cli = require('grunt-cli');
|
||||
var grunt_clean = require('grunt-contrib-clean');
|
||||
var grunt_coffee = require('grunt-contrib-coffee');
|
||||
var grunt_concat = require('grunt-contrib-concat');
|
||||
var grunt_copy = require('grunt-contrib-copy');
|
||||
var grunt_uglify = require('grunt-contrib-uglify');
|
||||
var grunt_watch = require('grunt-contrib-watch');
|
||||
var matchdep = require('matchdep');
|
||||
|
||||
console.log("loaded embark-framework");
|
||||
|
||||
|
|
Loading…
Reference in New Issue