Skip to content

Commit

Permalink
chore(npm): update npm dependencies
Browse files Browse the repository at this point in the history
Some of previous dependencies versions (e.g. Karma) didn't work with
Node 0.11.14, see:
karma-runner/karma#1182

The only dependency not updated in this commit are:

1. grunt-jscs-checker: its
rules have changed a lot so it will require more work to use the newer
version
2. gulp-jshint: the update breaks docs linting, it requires investigation
  • Loading branch information
mgol committed Oct 11, 2014
1 parent b6f4d4b commit 6b852b6
Show file tree
Hide file tree
Showing 3 changed files with 839 additions and 305 deletions.
16 changes: 9 additions & 7 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ module.exports = function(grunt) {
base: '.',
keepalive: true,
middleware: function(connect, options){
var base = Array.isArray(options.base) ? options.base[options.base.length - 1] : options.base;
return [
util.conditionalCsp(),
util.rewrite(),
Expand All @@ -64,6 +65,7 @@ module.exports = function(grunt) {
port: 8000,
hostname: '0.0.0.0',
middleware: function(connect, options){
var base = Array.isArray(options.base) ? options.base[options.base.length - 1] : options.base;
return [
function(req, resp, next) {
// cache get requests to speed up tests on travis
Expand Down Expand Up @@ -287,14 +289,14 @@ module.exports = function(grunt) {
}
},

shell:{
"promises-aplus-tests":{
options:{
//stdout:true,
stderr:true,
failOnError:true
shell: {
"promises-aplus-tests": {
options: {
stdout: false,
stderr: true,
failOnError: true
},
command:path.normalize('./node_modules/.bin/promises-aplus-tests tmp/promises-aplus-adapter++.js')
command: path.normalize('./node_modules/.bin/promises-aplus-tests tmp/promises-aplus-adapter++.js')
}
},

Expand Down
Loading

0 comments on commit 6b852b6

Please sign in to comment.