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
parent b7a8f5f581
commit 432a33eef8
+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']);
};