diff --git a/Gruntfile.js b/Gruntfile.js index 05e537e2..d96974e8 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -54,16 +54,6 @@ module.exports = function(grunt) { } }, - jsdoc: { - dist: { - src: [ '<%= config.sources %>/**/*.js' ], - options: { - destination: 'docs/api', - plugins: [ 'plugins/markdown' ] - } - } - }, - bundle: { viewer: { name: 'bpmn-viewer', @@ -108,5 +98,5 @@ module.exports = function(grunt) { grunt.registerTask('build', [ 'bundle', 'copy' ]); - grunt.registerTask('default', [ 'jshint', 'test', 'build', 'jsdoc' ]); + grunt.registerTask('default', [ 'jshint', 'test', 'build' ]); }; \ No newline at end of file diff --git a/package.json b/package.json index 1b5f7b8d..cc25f440 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,6 @@ "grunt": "^0.4.4", "grunt-contrib-copy": "^0.7.0", "grunt-contrib-jshint": "^0.7.2", - "grunt-jsdoc": "^0.5.1", "grunt-karma": "^0.12.0", "grunt-release": "^0.7.0", "jsondiffpatch": "^0.1.26",