tokchi
Version:
jQuery plugin that adds Mac OS X style tokens or Android style chips to a text input field
20 lines (17 loc) • 472 B
JavaScript
module.exports = function(grunt) {
var pkg = grunt.file.readJSON("package.json");
grunt.initConfig({
uglify : {
options : {
banner : '/*! Tokchi ' + pkg.version + ' - ' + pkg.copyright + ', https://github.com/tiguchi/tokchi - MIT license */\n',
},
my_target : {
files : {
'build/jquery.tokchi.min.js' : [ 'src/jquery.tokchi.js' ]
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask('default', [ 'uglify' ]);
};