Skip to content

Commit

Permalink
Issue #20 - Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Sweetchuck committed Jan 14, 2016
1 parent 136f467 commit 45c5574
Show file tree
Hide file tree
Showing 4 changed files with 277 additions and 144 deletions.
30 changes: 3 additions & 27 deletions Gruntfile.js
Expand Up @@ -2,26 +2,7 @@
module.exports = function(grunt) {
'use strict';

var cfg = {
jshint: {
options: {
boss: true,
node: true
},

all: ["tasks/**/*.js", "test/**/*.js", "Gruntfile.js"]
},

simplemocha: {
options: {
reporter: "spec",
ui: "bdd",
compilers: "coffee:coffee-script"
},

all: ["test/*_spec.js"]
},

grunt.initConfig({
phplint: {
good: ["test/rsrc/*-good.php"],
good_nocache: {
Expand All @@ -42,13 +23,8 @@ module.exports = function(grunt) {
src: ["test/rsrc/*-good.php"]
}
}
};
});

grunt.initConfig(cfg);

grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-simple-mocha");
grunt.loadTasks("./tasks");

grunt.registerTask("default", ["jshint:all", "simplemocha:all", "phplint:good", "phplint:good_nocache"]);
grunt.registerTask("default", ["phplint:good", "phplint:good_nocache"]);
};

0 comments on commit 45c5574

Please sign in to comment.