Sha256: 27b84c7a72417ecdceb9d5a973671aea57e9acdeccf333cc6f0cdca582978d3a
Contents?: true
Size: 1.78 KB
Versions: 2
Compression:
Stored size: 1.78 KB
Contents
/*global module */ module.exports = function( grunt ) { 'use strict'; grunt.initConfig({ meta: { version: '2.8.2', banner: '/*!\n' + ' * Modernizr v<%= meta.version %>\n' + ' * www.modernizr.com\n *\n' + ' * Copyright (c) Faruk Ates, Paul Irish, Alex Sexton\n' + ' * Available under the BSD and MIT licenses: www.modernizr.com/license/\n */' }, qunit: { files: ['test/index.html'] }, lint: { files: [ 'grunt.js', 'modernizr.js', 'feature-detects/*.js' ] }, min: { dist: { src: [ '<banner:meta.banner>', 'modernizr.js' ], dest: 'modernizr.min.js' } }, watch: { files: '<config:lint.files>', tasks: 'lint' }, jshint: { options: { boss: true, browser: true, curly: false, devel: true, eqeqeq: false, eqnull: true, expr: true, evil: true, immed: false, laxcomma: true, newcap: false, noarg: true, smarttabs: true, sub: true, undef: true }, globals: { Modernizr: true, DocumentTouch: true, TEST: true, SVGFEColorMatrixElement : true, Blob: true } } }); grunt.registerTask('default', 'min'); // Travis CI task. grunt.registerTask('travis', 'qunit'); };
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
TokiCLI-0.2.1 | lib/TokiServer/bower_components/modernizr/grunt.js |
TokiCLI-0.2.0 | lib/TokiServer/bower_components/modernizr/grunt.js |