Removed Docker from Gruntfile. Changed Docs readme filename.

This commit is contained in:
Andre Casey 2013-09-28 11:43:01 -07:00
parent 602c78c1be
commit 7e056e5278
2 changed files with 1 additions and 23 deletions

View file

@ -4,27 +4,6 @@ module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Documentation Generator
// See -> https://github.com/jbt/docker & https://npmjs.org/package/grunt-docker
docker: {
app: {
expand: true,
src: ['src/*', 'views/*.jade', 'views/**/*.jade', 'public/css/*.styl', 'docs-home.md'],
dest: './public/docs',
options: {
onlyUpdated: true,
colourScheme: 'manni',
ignoreHidden: false,
sidebarState: true,
exclude: true,
lineNums: false,
js: [],
css: [],
extras: []
}
}
},
karma: {
unit: {
configFile: 'karma.conf.js'
@ -185,7 +164,7 @@ module.exports = function(grunt) {
// Register tasks.
grunt.registerTask('build:prod', ['clean:build', 'uglify', 'stylus', 'cssmin', 'copy:build', 'hashres']);
grunt.registerTask('build:dev', ['clean:build', 'stylus', 'cssmin', 'copy:build', 'hashres', 'docker']);
grunt.registerTask('build:dev', ['clean:build', 'stylus', 'cssmin', 'copy:build', 'hashres']);
grunt.registerTask('run:dev', [ 'build:dev', 'concurrent' ]);
@ -200,6 +179,5 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-hashres');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-docker');
};