Add package task that creates both packages to simplify CI

Duplicated task steps to prevent needing to build multiple times but maintaining 'full build' in the individual package tasks
This commit is contained in:
Tom Fulton
2014-05-03 00:32:18 -06:00
committed by kjac
parent 481259f0b7
commit ff39bce262
+2 -1
View File
@@ -208,6 +208,7 @@ module.exports = function(grunt) {
grunt.registerTask('default', ['clean', 'less', 'concat', 'assemblyinfo', 'msbuild:dist', 'copy:dll', 'copy:config', 'copy:html']);
grunt.registerTask('nuget', ['clean:tmp', 'default', 'copy:nuget', 'template:nuspec', 'nugetpack', 'clean:tmp']);
grunt.registerTask('nuget', ['clean:tmp', 'default', 'copy:nuget', 'template:nuspec', 'nugetpack', 'clean:tmp']);
grunt.registerTask('umbraco', ['clean:tmp', 'default', 'copy:umbraco', 'umbracoPackage', 'clean:tmp']);
grunt.registerTask('package', ['clean:tmp', 'default', 'copy:nuget', 'template:nuspec', 'nugetpack', 'copy:umbraco', 'umbracoPackage', 'clean:tmp']);
};