new docs folder

This commit is contained in:
lavrton 2015-01-15 10:11:37 +07:00
parent 73a4a573b1
commit b30f34d2e5
3 changed files with 8 additions and 3 deletions

1
.gitignore vendored
View File

@ -7,6 +7,7 @@ phantomjs.exe
docs
homedocs
jsdoc-template
api
test/sandbox.html
# Numerous always-ignore extensions

View File

@ -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`

View File

@ -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'
]);