Skip to content

Commit

Permalink
Copy doc to index.html to fix the project page.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmlenz committed Apr 1, 2014
1 parent d4e7e8f commit 2141f3c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Gruntfile.js
Expand Up @@ -33,6 +33,13 @@ module.exports = function (grunt) {
}
}
},
copy: {
doc: {
src: 'docs/jquery.iframe-transport.html',
dest: 'docs/index.html',
nonull: true
}
},
'gh-pages': {
options: {
base: 'docs'
Expand All @@ -49,5 +56,5 @@ module.exports = function (grunt) {
}

grunt.registerTask('default', ['jshint', 'uglify']);
grunt.registerTask('doc', ['docco', 'gh-pages']);
grunt.registerTask('doc', ['docco', 'copy:doc', 'gh-pages']);
};

0 comments on commit 2141f3c

Please sign in to comment.