Skip to content

Commit

Permalink
fix issue with v8-debug and added missing dependencies
Browse files Browse the repository at this point in the history
also added grunt-simple-watch

node-inspector/v8-debug#7
  • Loading branch information
greben committed Aug 18, 2016
1 parent 719e6a9 commit e655678
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM node
FROM node:5.12.0

MAINTAINER Matthias Luebken, matthias@catalyst-zero.com

Expand Down
2 changes: 2 additions & 0 deletions gruntfile.js
Expand Up @@ -191,4 +191,6 @@ module.exports = function(grunt) {
grunt.registerTask('test', ['copy:localConfig', 'test:server', 'test:client']);
grunt.registerTask('test:server', ['env:test', 'mochaTest']);
grunt.registerTask('test:client', ['env:test', 'karma:unit']);

grunt.loadNpmTasks('grunt-simple-watch');
};
5 changes: 4 additions & 1 deletion package.json
Expand Up @@ -50,15 +50,18 @@
"devDependencies": {
"supertest": "~0.14.0",
"should": "~4.1.0",
"mocha": "~0.3.0",
"grunt": "~0.4.4",
"grunt-env": "~0.4.1",
"grunt-node-inspector": "~0.1.3",
"grunt-node-inspector": ">=0.2.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-csslint": "^0.3.1",
"grunt-ng-annotate": "~0.4.0",
"grunt-contrib-uglify": "~0.6.0",
"grunt-contrib-cssmin": "~0.10.0",
"grunt-nodemon": "~0.3.0",
"grunt-simple-watch": "^0.1.3",
"grunt-concurrent": "~1.0.0",
"grunt-mocha-test": "~0.12.1",
"grunt-karma": "~0.9.0",
Expand Down

0 comments on commit e655678

Please sign in to comment.