Skip to content

Commit

Permalink
Created new grunt task to build, compress and create release tags nam…
Browse files Browse the repository at this point in the history
…ed createrelease
  • Loading branch information
santilland committed Jan 23, 2014
1 parent 5456d21 commit 303968e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,13 +343,6 @@ module.exports = function (grunt) {
grunt.task.run(['serve']);
});

grunt.registerTask('test', [
'clean:server',
'concurrent:test',
'autoprefixer',
'connect:test',
'mocha'
]);

grunt.registerTask('build', [
'clean:dist',
Expand All @@ -365,6 +358,13 @@ module.exports = function (grunt) {
'usemin'
]);


grunt.registerTask('createrelease', [
'build',
'compress',
'release'
]);

grunt.registerTask('default', [
'jshint',
'test',
Expand Down

0 comments on commit 303968e

Please sign in to comment.