UNPKG

draggable

Version:

High performance, fully cross browser, full featured drag and drop in a tiny (2k gzipped), dependency-free package

25 lines (20 loc) 428 B
module.exports = function(grunt) { grunt.config.init({ concat: { dist: { src: [ 'src/lib/polyfills.js', 'src/lib/dom.js', 'src/lib/util.js', 'src/lib/template.js', 'src/microbox.js' ], dest: 'dist/microbox.min.js' } }, wrap: true }); grunt.loadNpmTasks('grunt-contrib-concat'); //grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.registerTask('default', ['concat']); };