mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-14 07:52:15 +00:00
Removed Docker from Gruntfile. Changed Docs readme filename.
This commit is contained in:
parent
602c78c1be
commit
7e056e5278
2 changed files with 1 additions and 23 deletions
24
Gruntfile.js
24
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');
|
||||
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue