File tree Expand file tree Collapse file tree 3 files changed +15
-14
lines changed Expand file tree Collapse file tree 3 files changed +15
-14
lines changed Original file line number Diff line number Diff 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+
Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change @@ -7,16 +7,4 @@ var express = require('express');
77var compression = require ( 'compression' ) ;
88var commander = require ( 'commander' ) ;
99var 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!!!" ) ;
You can’t perform that action at this time.
0 commit comments