Skip to content

Commit

Permalink
Clean up gruntfile formatting a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Jul 28, 2015
1 parent 263a08d commit 8128c05
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,13 @@ module.exports = function(grunt) {
grunt.registerTask('js', ['asciify', 'jshint', 'uglify']);
grunt.registerTask('tests', ['asciify', 'jshint', 'phpunit']);
grunt.registerTask('default', ['styles', 'js', 'tests']);
//Checktextdomain and makepot task(s)

// Checktextdomain and makepot task(s)
grunt.registerTask('build:i18n', ['checktextdomain', 'makepot', 'newer:potomo']);
//Makepot and push it on Transifex task(s).

// Makepot and push it on Transifex task(s).
grunt.registerTask('tx-push', ['makepot', 'exec:txpush_s']);
//Pull from Transifex and create .mo task(s).

// Pull from Transifex and create .mo task(s).
grunt.registerTask('tx-pull', ['exec:txpull', 'newer:potomo']);
};

0 comments on commit 8128c05

Please sign in to comment.