@open-xchange/bootstrap-tokenfield
Version:
Advanced tagging/tokenizing plugin for input fields with a focus on keyboard and copy-paste support. Fork of sliptree/bootstrap-tokenfield
26 lines (24 loc) • 731 B
JavaScript
module.exports = function (grunt) {
'use strict';
grunt.config.merge({
copy: {
dist: {
files: {
'dist/<%= pkg.name %>.js': 'js/<%= pkg.name %>.js'
}
},
assets: {
files: [{
expand: true,
flatten: true,
src: [
'bower_components/bootstrap/js/affix.js',
'bower_components/bootstrap/js/scrollspy.js',
'bower_components/typeahead.js/dist/typeahead.bundle.min.js'
],
dest: 'docs-assets/js/'
}]
}
}
});
};