Move Gruntfile.js composer task and apigen task to separate tasks (#1278)

This commit is contained in:
FrancescoUK
2017-04-30 13:40:22 +01:00
parent f9fb9e44b3
commit e89fc6afb2
2 changed files with 4 additions and 3 deletions

View File

@@ -234,7 +234,9 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-composer');
grunt.loadNpmTasks('grunt-apigen');
grunt.registerTask('default', ['composer:update', 'apigen:generate', 'wiredep', 'bower_concat', 'bowercopy', 'concat', 'uglify', 'cssmin', 'tags', 'cachebreaker']);
grunt.registerTask('default', ['wiredep', 'bower_concat', 'bowercopy', 'concat', 'uglify', 'cssmin', 'tags', 'cachebreaker']);
grunt.registerTask('genlicense', ['clean:license', 'license', 'bower-licensechecker']);
grunt.registerTask('packages', ['composer:update']);
grunt.registerTask('gendocs', ['apigen:generate']);
};

View File

@@ -44,7 +44,6 @@
"wd": "^0.3.3"
},
"dependencies": {
"grunt-script-link-tags": "git://github.com/jekkos/grunt-script-link-tags.git#master",
"grunt-apigen": "git://github.com/daN4cat/grunt-apigen#master"
"grunt-script-link-tags": "git://github.com/jekkos/grunt-script-link-tags.git#master"
}
}