UNPKG

256 BJavaScriptView Raw
1module.exports = function(grunt) {
2 var Commands = require('../dist/lib/main').Commands;
3 grunt.registerTask('i18nline', function(command) {
4 Commands.run(command) || grunt.fail.fatal(command + " command encountered 1 or more errors");
5 });
6};