diff --git a/.gitignore b/.gitignore index 49e18181..9edb6176 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ phantomjs.exe docs homedocs jsdoc-template +api test/sandbox.html # Numerous always-ignore extensions diff --git a/CHANGELOG.md b/CHANGELOG.md index ff12bcde..b45efac3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 5.1.10 + +* Bug Fixes + * working "this-example" as name for nodes + ## 5.1.9 2014-01-09 * Bug Fixes * Correct stage resizing with `FastLayer` diff --git a/Gruntfile.js b/Gruntfile.js index d25bbbdf..2abba737 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -225,7 +225,7 @@ module.exports = function(grunt) { dist : { src: ['README.md', './src/**/*.js'], options: { - destination: 'homedocs', + destination: 'api', template : './node_modules/grunt-jsdoc/node_modules/ink-docstrap/template', configure : './resources/jsdoc.conf.json' } @@ -265,8 +265,7 @@ module.exports = function(grunt) { 'shell:jsdoc' ]); - grunt.registerTask('homedocs', 'Generate docs for homepage', [ - 'full', + grunt.registerTask('api', 'Generate docs for homepage', [ 'jsdoc' ]);