grunt-better-classify
Version:
Small hack of ng-classify to support better module names and requirejs
26 lines (24 loc) • 533 B
JavaScript
;
module.exports = function(grunt) {
grunt.initConfig({
better_classify: {
default_options: {
options: {
},
files: {
'tmp/default_options': ['test/fixtures/testing', 'test/fixtures/123']
}
},
custom_options: {
options: {
separator: ': ',
punctuation: ' !!!'
},
files: {
'tmp/custom_options': ['test/fixtures/testing', 'test/fixtures/123']
}
}
}
});
grunt.loadTasks('tasks');
};