Files
Chamilo/web/assets/modernizr/grunt.js
T
Xes 73154ae174
Behat tests 1.11.x 🐞 / PHP 7.4 Test on ubuntu-latest (push) Canceled after 0s
PHP-CS-Fixer / composer_install (7.4) (push) Canceled after 0s
Chamilo 1.11.40 (ZIP oficial v1.11.40)
Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip
sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439
Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
2026-08-06 17:59:45 +02:00

70 lines
1.8 KiB
JavaScript

/*global module */
module.exports = function( grunt ) {
'use strict';
grunt.initConfig({
meta: {
version: '2.8.3',
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');
};