Skip to content

Commit

Permalink
Fix #11 : wrong path in local install
Browse files Browse the repository at this point in the history
  • Loading branch information
krampstudio committed Jan 18, 2013
1 parent 57ce626 commit 86d48d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ Any contribution is welcome! Please check the [issues](https://github.com/kramps
* _0.1.4_ Use `child_process.spawn` instead of `exec` to run the command
* _0.2.0_ Migrate to grunt 0.4
* _0.2.1_ Fix [bug #10](https://github.com/krampstudio/grunt-jsdoc-plugin/issues/10)
* _0.2.2_ Fix [bug #11](https://github.com/krampstudio/grunt-jsdoc-plugin/issues/11)

[jsdoc3]: https://github.com/jsdoc3/jsdoc

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-contrib-jsdoc",
"description": "Integrates jsdoc3 generation into your Grunt build",
"version": "0.2.1",
"version": "0.2.2",
"homepage": "https://github.com/krampstudio/grunt-jsdoc-plugin",
"author": {
"name": "Bertrand Chevrier",
Expand Down
2 changes: 1 addition & 1 deletion tasks/jsdoc-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ module.exports = function jsDocTask(grunt) {
var jsDocLookup = function(){

var base = 'node_modules/jsdoc/jsdoc',
paths = [ base, 'node_modules/grunt-jsdoc-plugin/' + base ],
paths = [ base, 'node_modules/grunt-contrib-jsdoc/' + base ],
nodePath = process.env.NODE_PATH || '',
_ = grunt.util._;

Expand Down

0 comments on commit 86d48d5

Please sign in to comment.