UNPKG

backgrid-moment-cell

Version:

Backgrid.js datetime cell type formatted via moment.js.

95 lines (81 loc) 1.9 kB
/* backgrid-moment-cell http://github.com/wyuenho/backgrid-moment-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-moment-cell.js"], dest: "api", options: { "title": "backgrid-moment-cell", "no-source": true, "categories": "categories.json", "warnings": "-no_doc", "pretty-json": true } } }, recess: { csslint: { options: { compile: true }, files: { "backgrid-moment-cell.css": ["backgrid-moment-cell.css"] } }, "default": { options: { compress: true }, files: { "backgrid-moment-cell.min.css": ["backgrid-moment-cell.css"] } } }, uglify: { options: { mangle: true, compress: true, preserveComments: "some" }, "default": { files: { "backgrid-moment-cell.min.js": ["backgrid-moment-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"]); };