UNPKG

backgrid-select2-cell

Version:

Backgrid.js extension to extend the core SelectCell using select2.

95 lines (81 loc) 2.02 kB
/* backgrid-select2-cell http://github.com/wyuenho/backgrid-select2-cell Copyright (c) 2013 Jimmy Yuen Ho Wong and contributors Licensed under the MIT license. */ // jshint globalstrict:true, node:true "use strict"; module.exports = function (grunt) { grunt.initConfig({ pkg: grunt.file.readJSON("package.json"), clean: { options: { force: true }, api: [ "api/**/*" ], "default": [ "*.min.*", "test/coverage/**/*" ] }, karma: { unit: { configFile: 'karma.conf.js', singleRun: true } }, jsduck: { main: { src: ["backgrid-select2-cell.js"], dest: "api", options: { "external": ["Backbone.Model,Backbone.Collection,Backbone.View,Backgrid.Grid,Backgrid.Column,Backgrid.SelectCellEditor,Backgrid.SelectCell"], "title": "backgrid-select2-cell", "no-source": true, "categories": "categories.json", "pretty-json": true } } }, recess: { csslint: { options: { compile: true }, files: { "backgrid-select2-cell.css": ["backgrid-select2-cell.css"] } }, "default": { options: { compress: true }, files: { "backgrid-select2-cell.min.css": ["backgrid-select2-cell.css"] } } }, uglify: { options: { mangle: true, compress: true, preserveComments: "some" }, "default": { files: { "backgrid-select2-cell.min.js": ["backgrid-select2-cell.js"] } } } }); grunt.loadNpmTasks("grunt-contrib-clean"); grunt.loadNpmTasks("grunt-contrib-uglify"); grunt.loadNpmTasks("grunt-recess"); grunt.loadNpmTasks("grunt-jsduck"); grunt.loadNpmTasks("grunt-karma"); grunt.registerTask("dist", ["uglify", "recess"]); grunt.registerTask("default", ["clean", "jsduck", "dist", "karma"]); };