2012-04-18 20:07:35 +00:00
|
|
|
module.exports = function( grunt ) {
|
2012-10-16 14:10:17 +00:00
|
|
|
"use strict";
|
|
|
|
|
2013-09-12 20:51:59 +00:00
|
|
|
function readOptionalJSON( filepath ) {
|
|
|
|
var data = {};
|
|
|
|
try {
|
2015-08-01 23:48:54 +00:00
|
|
|
data = JSON.parse( stripJSONComments(
|
|
|
|
fs.readFileSync( filepath, { encoding: "utf8" } )
|
|
|
|
) );
|
2013-11-09 22:12:06 +00:00
|
|
|
} catch ( e ) {}
|
2013-09-12 20:51:59 +00:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2015-08-01 23:48:54 +00:00
|
|
|
var fs = require( "fs" ),
|
|
|
|
stripJSONComments = require( "strip-json-comments" ),
|
|
|
|
gzip = require( "gzip-js" ),
|
2015-08-03 18:28:37 +00:00
|
|
|
srcHintOptions = readOptionalJSON( "src/.jshintrc" ),
|
|
|
|
newNode = !/^v0/.test( process.version ),
|
|
|
|
|
|
|
|
// Allow to skip jsdom-related tests in Node.js < 1.0.0
|
|
|
|
runJsdomTests = newNode || ( function() {
|
|
|
|
try {
|
|
|
|
require( "jsdom" );
|
|
|
|
return true;
|
|
|
|
} catch ( e ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} )();
|
2013-04-09 16:48:34 +00:00
|
|
|
|
|
|
|
// The concatenated file won't pass onevar
|
|
|
|
// But our modules can
|
|
|
|
delete srcHintOptions.onevar;
|
2012-04-18 20:07:35 +00:00
|
|
|
|
2015-09-02 23:52:01 +00:00
|
|
|
grunt.initConfig( {
|
2013-11-09 22:12:06 +00:00
|
|
|
pkg: grunt.file.readJSON( "package.json" ),
|
|
|
|
dst: readOptionalJSON( "dist/.destination.json" ),
|
2014-07-17 17:25:59 +00:00
|
|
|
"compare_size": {
|
2013-03-25 04:47:46 +00:00
|
|
|
files: [ "dist/jquery.js", "dist/jquery.min.js" ],
|
|
|
|
options: {
|
|
|
|
compress: {
|
|
|
|
gz: function( contents ) {
|
|
|
|
return gzip.zip( contents, {} ).length;
|
|
|
|
}
|
|
|
|
},
|
2013-11-10 21:34:46 +00:00
|
|
|
cache: "build/.sizecache.json"
|
2013-03-25 04:47:46 +00:00
|
|
|
}
|
2012-04-18 20:07:35 +00:00
|
|
|
},
|
2015-07-28 10:58:44 +00:00
|
|
|
babel: {
|
|
|
|
options: {
|
|
|
|
sourceMap: "inline",
|
|
|
|
retainLines: true
|
|
|
|
},
|
|
|
|
nodeSmokeTests: {
|
|
|
|
files: {
|
|
|
|
"test/node_smoke_tests/lib/ensure_iterability.js":
|
|
|
|
"test/node_smoke_tests/lib/ensure_iterability_es6.js"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2012-04-18 20:07:35 +00:00
|
|
|
build: {
|
2013-04-18 17:19:22 +00:00
|
|
|
all: {
|
2013-01-26 18:38:04 +00:00
|
|
|
dest: "dist/jquery.js",
|
2013-08-15 18:15:49 +00:00
|
|
|
minimum: [
|
|
|
|
"core",
|
|
|
|
"selector"
|
|
|
|
],
|
|
|
|
removeWith: {
|
2014-06-02 16:39:11 +00:00
|
|
|
ajax: [ "manipulation/_evalUrl", "event/ajax" ],
|
2013-08-15 18:15:49 +00:00
|
|
|
callbacks: [ "deferred" ],
|
2015-12-22 11:24:15 +00:00
|
|
|
css: [ "effects", "dimensions", "offset" ]
|
2013-08-15 18:15:49 +00:00
|
|
|
}
|
2013-01-26 18:38:04 +00:00
|
|
|
}
|
2012-04-18 20:07:35 +00:00
|
|
|
},
|
2014-07-17 16:02:59 +00:00
|
|
|
npmcopy: {
|
2014-06-10 19:32:25 +00:00
|
|
|
all: {
|
2013-11-14 15:17:18 +00:00
|
|
|
options: {
|
2014-06-10 19:32:25 +00:00
|
|
|
destPrefix: "external"
|
2013-12-06 20:55:55 +00:00
|
|
|
},
|
|
|
|
files: {
|
2014-06-10 19:32:25 +00:00
|
|
|
"sizzle/dist": "sizzle/dist",
|
2014-12-15 17:33:46 +00:00
|
|
|
"sizzle/LICENSE.txt": "sizzle/LICENSE.txt",
|
2014-06-10 19:32:25 +00:00
|
|
|
|
2014-12-29 19:14:13 +00:00
|
|
|
"npo/npo.js": "native-promise-only/npo.js",
|
|
|
|
|
2014-07-17 16:02:59 +00:00
|
|
|
"qunit/qunit.js": "qunitjs/qunit/qunit.js",
|
|
|
|
"qunit/qunit.css": "qunitjs/qunit/qunit.css",
|
2014-12-15 17:33:46 +00:00
|
|
|
"qunit/LICENSE.txt": "qunitjs/LICENSE.txt",
|
2014-06-10 19:32:25 +00:00
|
|
|
|
2015-05-10 23:39:26 +00:00
|
|
|
"qunit-assert-step/qunit-assert-step.js":
|
|
|
|
"qunit-assert-step/qunit-assert-step.js",
|
|
|
|
"qunit-assert-step/MIT-LICENSE.txt":
|
|
|
|
"qunit-assert-step/MIT-LICENSE.txt",
|
|
|
|
|
2014-06-10 19:32:25 +00:00
|
|
|
"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",
|
2014-06-10 19:32:25 +00:00
|
|
|
"sinon/timers_ie.js": "sinon/lib/sinon/util/timers_ie.js",
|
|
|
|
"sinon/LICENSE.txt": "sinon/LICENSE"
|
2013-11-14 15:17:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2013-07-19 13:53:57 +00:00
|
|
|
jsonlint: {
|
|
|
|
pkg: {
|
|
|
|
src: [ "package.json" ]
|
|
|
|
}
|
|
|
|
},
|
2012-12-19 04:02:50 +00:00
|
|
|
jshint: {
|
2013-12-18 14:23:27 +00:00
|
|
|
all: {
|
|
|
|
src: [
|
2014-05-23 16:45:19 +00:00
|
|
|
"src/**/*.js", "Gruntfile.js", "test/**/*.js", "build/**/*.js"
|
2013-12-18 14:23:27 +00:00
|
|
|
],
|
2013-09-06 18:31:48 +00:00
|
|
|
options: {
|
2013-12-18 14:23:27 +00:00
|
|
|
jshintrc: true
|
2013-09-06 18:31:48 +00:00
|
|
|
}
|
|
|
|
},
|
2012-12-19 04:02:50 +00:00
|
|
|
dist: {
|
2013-09-12 20:51:59 +00:00
|
|
|
src: "dist/jquery.js",
|
2013-04-09 16:48:34 +00:00
|
|
|
options: srcHintOptions
|
2012-12-19 04:02:50 +00:00
|
|
|
}
|
2012-05-09 07:34:00 +00:00
|
|
|
},
|
2013-09-12 20:51:59 +00:00
|
|
|
jscs: {
|
2015-09-02 23:51:00 +00:00
|
|
|
src: "src",
|
2013-11-08 15:03:51 +00:00
|
|
|
gruntfile: "Gruntfile.js",
|
2014-02-18 16:32:17 +00:00
|
|
|
|
2015-05-19 21:48:42 +00:00
|
|
|
// Check parts of tests that pass
|
2015-09-02 23:52:01 +00:00
|
|
|
test: [
|
|
|
|
"test/data/testrunner.js",
|
|
|
|
"test/unit/animation.js",
|
2015-07-29 22:54:00 +00:00
|
|
|
"test/unit/basic.js",
|
2015-09-02 23:52:01 +00:00
|
|
|
"test/unit/tween.js",
|
|
|
|
"test/unit/wrap.js"
|
|
|
|
],
|
2015-09-02 23:51:00 +00:00
|
|
|
build: "build"
|
2013-09-12 20:51:59 +00:00
|
|
|
},
|
2012-12-13 01:19:18 +00:00
|
|
|
testswarm: {
|
2014-07-17 17:25:59 +00:00
|
|
|
tests: [
|
2015-07-29 22:54:00 +00:00
|
|
|
|
|
|
|
// A special module with basic tests, meant for
|
|
|
|
// not fully supported environments like Android 2.3,
|
|
|
|
// jsdom or PhantomJS. We run it everywhere, though,
|
|
|
|
// to make sure tests are not broken.
|
|
|
|
"basic",
|
|
|
|
|
2014-07-17 17:25:59 +00:00
|
|
|
"ajax",
|
2015-05-19 21:48:42 +00:00
|
|
|
"animation",
|
2014-07-17 17:25:59 +00:00
|
|
|
"attributes",
|
|
|
|
"callbacks",
|
|
|
|
"core",
|
|
|
|
"css",
|
|
|
|
"data",
|
|
|
|
"deferred",
|
2015-10-20 16:30:01 +00:00
|
|
|
"deprecated",
|
2014-07-17 17:25:59 +00:00
|
|
|
"dimensions",
|
|
|
|
"effects",
|
|
|
|
"event",
|
|
|
|
"manipulation",
|
|
|
|
"offset",
|
|
|
|
"queue",
|
|
|
|
"selector",
|
|
|
|
"serialize",
|
|
|
|
"support",
|
2015-05-18 21:11:21 +00:00
|
|
|
"traversing",
|
|
|
|
"tween"
|
2014-07-17 17:25:59 +00:00
|
|
|
]
|
2012-12-13 01:19:18 +00:00
|
|
|
},
|
2012-04-18 20:07:35 +00:00
|
|
|
watch: {
|
2013-12-20 23:38:57 +00:00
|
|
|
files: [ "<%= jshint.all.src %>" ],
|
2014-12-30 02:07:03 +00:00
|
|
|
tasks: [ "dev" ]
|
2012-04-18 20:07:35 +00:00
|
|
|
},
|
2012-10-11 13:38:44 +00:00
|
|
|
uglify: {
|
2012-12-19 04:02:50 +00:00
|
|
|
all: {
|
|
|
|
files: {
|
2013-11-09 22:12:06 +00:00
|
|
|
"dist/jquery.min.js": [ "dist/jquery.js" ]
|
2012-12-19 04:02:50 +00:00
|
|
|
},
|
|
|
|
options: {
|
2013-11-09 22:12:06 +00:00
|
|
|
preserveComments: false,
|
2014-07-17 18:15:19 +00:00
|
|
|
sourceMap: true,
|
|
|
|
sourceMapName: "dist/jquery.min.map",
|
2013-04-18 17:19:22 +00:00
|
|
|
report: "min",
|
|
|
|
beautify: {
|
2014-07-17 17:25:59 +00:00
|
|
|
"ascii_only": true
|
2013-04-18 17:19:22 +00:00
|
|
|
},
|
2014-11-03 22:32:56 +00:00
|
|
|
banner: "/*! jQuery Compat v<%= pkg.version %> | " +
|
2015-01-01 19:34:48 +00:00
|
|
|
"(c) jQuery Foundation | jquery.org/license */",
|
2013-01-29 00:04:58 +00:00
|
|
|
compress: {
|
2014-07-17 17:25:59 +00:00
|
|
|
"hoist_funs": false,
|
2013-10-15 21:59:58 +00:00
|
|
|
loops: false,
|
|
|
|
unused: false
|
2012-12-19 04:02:50 +00:00
|
|
|
}
|
|
|
|
}
|
2012-10-11 13:38:44 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-02 23:52:01 +00:00
|
|
|
} );
|
2012-04-18 20:07:35 +00:00
|
|
|
|
2012-12-19 04:02:50 +00:00
|
|
|
// Load grunt tasks from NPM packages
|
2013-10-25 18:02:04 +00:00
|
|
|
require( "load-grunt-tasks" )( grunt );
|
2013-08-16 13:48:00 +00:00
|
|
|
|
|
|
|
// Integrate jQuery specific tasks
|
|
|
|
grunt.loadTasks( "build/tasks" );
|
2012-12-19 04:02:50 +00:00
|
|
|
|
2015-12-22 13:01:55 +00:00
|
|
|
grunt.registerTask( "lint", [ "jsonlint", "jshint" ] );
|
2014-12-30 02:07:03 +00:00
|
|
|
|
2015-08-03 18:28:37 +00:00
|
|
|
// Don't run Node-related tests in Node.js < 1.0.0 as they require an old
|
|
|
|
// jsdom version that needs compiling, making it harder for people to compile
|
|
|
|
// jQuery on Windows. (see gh-2519)
|
|
|
|
grunt.registerTask( "test_fast", runJsdomTests ? [ "node_smoke_tests" ] : [] );
|
2014-12-30 02:07:03 +00:00
|
|
|
|
2015-08-03 18:28:37 +00:00
|
|
|
grunt.registerTask( "test", [ "test_fast" ].concat(
|
|
|
|
runJsdomTests ? [ "promises_aplus_tests" ] : []
|
|
|
|
) );
|
2013-12-06 20:55:55 +00:00
|
|
|
|
2012-12-19 04:02:50 +00:00
|
|
|
// Short list as a high frequency watch task
|
2015-01-30 20:22:25 +00:00
|
|
|
grunt.registerTask( "dev", [ "build:*:*", "lint", "uglify", "remove_map_comment", "dist:*" ] );
|
2013-07-19 13:53:57 +00:00
|
|
|
|
2014-12-30 02:07:03 +00:00
|
|
|
grunt.registerTask( "default", [ "dev", "test_fast", "compare_size" ] );
|
2012-04-18 20:07:35 +00:00
|
|
|
};
|