diff --git a/docs-home.md b/DOCS-README.md similarity index 100% rename from docs-home.md rename to DOCS-README.md diff --git a/Gruntfile.js b/Gruntfile.js index 6b395980d2..6c0d976cb7 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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'); };