Skip to content

Commit

Permalink
added missing jsdoc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Zdrazil committed Feb 16, 2014
1 parent d7dfa03 commit 262eced
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions src/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ module.exports = function (grunt) {
}
}
},

// static analysis reporting- code health metrics
plato: {
main: {
options: {
Expand All @@ -119,11 +121,13 @@ module.exports = function (grunt) {
}
}
},

// auto-generated documentation; especially useful for libraries and reusable components
jsdoc : {
dist : {
src: ['app/**/*.js'],
options: {
destination: '../build-reports/jsdocs'
destination: '../build-reports/jsdoc'
}
}
}
Expand Down Expand Up @@ -157,7 +161,7 @@ module.exports = function (grunt) {
'uglify',
'karma:unit',
'plato',
'jsdocs',
'jsdoc',
'build:sass',
'build:js'
]);
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"ng-annotate": "~0.4.0",
"karma-jasmine": "~0.1.4",
"grunt-karma": "~0.6.2",
"grunt-jsdoc": "~0.4.2",
"grunt-jsdoc": "~0.5.1",
"grunt-contrib-sass": "~0.6.0",
"grunt-plato": "~0.2.1",
"grunt-contrib-uglify": "~0.3.2"
Expand Down

0 comments on commit 262eced

Please sign in to comment.