Skip to content

Commit

Permalink
Removed Docker from Gruntfile. Changed Docs readme filename.
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreCaseyScott committed Sep 28, 2013
1 parent 602c78c commit 7e056e5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 23 deletions.
File renamed without changes.
24 changes: 1 addition & 23 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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' ]);

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

};

0 comments on commit 7e056e5

Please sign in to comment.