jquery/Gruntfile.js

147 lines
3.3 KiB
JavaScript
Raw Normal View History

2012-04-18 20:07:35 +00:00
module.exports = function( grunt ) {
"use strict";
function readOptionalJSON( filepath ) {
var data = {};
try {
data = grunt.file.readJSON( filepath );
} catch ( e ) {}
return data;
}
var gzip = require( "gzip-js" ),
srcHintOptions = readOptionalJSON( "src/.jshintrc" );
// The concatenated file won't pass onevar
// But our modules can
delete srcHintOptions.onevar;
2012-04-18 20:07:35 +00:00
grunt.initConfig({
pkg: grunt.file.readJSON( "package.json" ),
dst: readOptionalJSON( "dist/.destination.json" ),
2012-04-18 20:07:35 +00:00
compare_size: {
files: [ "dist/jquery.js", "dist/jquery.min.js" ],
options: {
compress: {
gz: function( contents ) {
return gzip.zip( contents, {} ).length;
}
},
cache: "build/.sizecache.json"
}
2012-04-18 20:07:35 +00:00
},
build: {
all: {
dest: "dist/jquery.js",
minimum: [
"core",
"selector"
],
removeWith: {
ajax: [ "manipulation/_evalUrl", "event/ajax" ],
callbacks: [ "deferred" ],
css: [ "effects", "dimensions", "offset" ]
}
}
2012-04-18 20:07:35 +00:00
},
npmcopy: {
all: {
options: {
destPrefix: "external"
},
files: {
"sizzle/dist": "sizzle/dist",
"sizzle/MIT-LICENSE.txt": "sizzle/MIT-LICENSE.txt",
"qunit/qunit.js": "qunitjs/qunit/qunit.js",
"qunit/qunit.css": "qunitjs/qunit/qunit.css",
"qunit/MIT-LICENSE.txt": "qunitjs/MIT-LICENSE.txt",
"requirejs/require.js": "requirejs/require.js",
2014-01-13 18:22:51 +00:00
"sinon/fake_timers.js": "sinon/lib/sinon/util/fake_timers.js",
"sinon/timers_ie.js": "sinon/lib/sinon/util/timers_ie.js",
"sinon/LICENSE.txt": "sinon/LICENSE"
}
}
},
2013-07-19 13:53:57 +00:00
jsonlint: {
pkg: {
src: [ "package.json" ]
},
2013-07-19 13:53:57 +00:00
bower: {
src: [ "bower.json" ]
}
},
jshint: {
all: {
src: [
"src/**/*.js", "Gruntfile.js", "test/**/*.js", "build/**/*.js"
],
options: {
jshintrc: true
}
},
dist: {
src: "dist/jquery.js",
options: srcHintOptions
}
},
jscs: {
src: "src/**/*.js",
gruntfile: "Gruntfile.js",
// Right know, check only test helpers
test: [ "test/data/testrunner.js", "test/data/testinit.js" ],
release: "build/*.js",
tasks: "build/tasks/*.js"
},
testswarm: {
tests: "ajax attributes callbacks core css data deferred dimensions effects event manipulation offset queue selector serialize support traversing".split( " " )
},
2012-04-18 20:07:35 +00:00
watch: {
2013-12-20 23:38:57 +00:00
files: [ "<%= jshint.all.src %>" ],
tasks: "dev"
2012-04-18 20:07:35 +00:00
},
uglify: {
all: {
files: {
"dist/jquery.min.js": [ "dist/jquery.js" ]
},
options: {
preserveComments: false,
2012-12-22 21:23:27 +00:00
sourceMap: "dist/jquery.min.map",
sourceMappingURL: "jquery.min.map",
report: "min",
beautify: {
ascii_only: true
},
banner: "/*! jQuery v<%= pkg.version %> | " +
"(c) 2005, <%= grunt.template.today('yyyy') %> jQuery Foundation, Inc. | " +
"jquery.org/license */",
compress: {
hoist_funs: false,
loops: false,
unused: false
}
}
}
}
2012-04-18 20:07:35 +00:00
});
// Load grunt tasks from NPM packages
require( "load-grunt-tasks" )( grunt );
// Integrate jQuery specific tasks
grunt.loadTasks( "build/tasks" );
2014-02-18 16:34:49 +00:00
grunt.registerTask( "lint", [ "jshint", "jscs" ] );
// Short list as a high frequency watch task
2014-02-18 16:34:49 +00:00
grunt.registerTask( "dev", [ "build:*:*", "lint" ] );
2013-07-19 13:53:57 +00:00
// Default grunt
grunt.registerTask( "default", [ "jsonlint", "dev", "uglify", "dist:*", "compare_size" ] );
2012-04-18 20:07:35 +00:00
};