aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
Commit message (Collapse)AuthorAgeFilesLines
* Build: Remove Sizzle from run names passed to the testswarm taskMichał Gołębiowski2014-04-151-1/+1
|
* Build: Add lint taskOleg Gaidarenko2014-04-151-2/+2
|
* Build: Use jscs to check test helpersOleg Gaidarenko2014-04-151-0/+3
| | | | Also fix issues found by jscs
* Sizzle: update committed dependenciesTimmy Willison2014-01-131-1/+5
|
* Build: Happy New Year! Thanks @marlonlandaverdeDave Methvin2014-01-091-1/+1
|
* Gruntfile: fix watch taskTimmy Willison2013-12-201-1/+1
|
* Build: Upgrade to grunt-contrib-jshint 0.7.1 and squash subtasksMichał Gołębiowski2013-12-181-15/+6
| | | | | | | | | grunt-contrib-jshint 0.7.1 allows the jshintrc option to be set to true to have it read the appropriate config file based on the file being checked. The only place where we can’t use it is the check for dist/jquery.js that has the onevar option removed. Fixes #14504
* Manage bower dependencies with grunt-bowercopyTimmy Willison2013-12-061-8/+19
| | | | | | | | | | | | Tracked bower dependencies are located at "src/sizzle" and "test/libs". The source-destination mapping is in the Gruntfile. When updating a bower dependency, update the version in bower.json, run `grunt bower`, and then commit the result. When adding a dependency, update the bowercopy task accordingly. Fixes #14615. Closes gh-1452.
* Use grunt and bower packages as local dependencies. Close gh-1433.Timmy Willison2013-11-141-0/+12
|
* Remove workarounds for the uglify task mishandling banners when used with ↵Michał Gołębiowski2013-11-091-29/+10
| | | | | | | source maps. The issue was fixed in grunt-contrib-uglify: https://github.com/gruntjs/grunt-contrib-uglify/issues/22
* Check Gruntfile and tasks for code styleOleg2013-11-081-1/+3
|
* Add load-grunt-tasks package dependencySindre Sorhus2013-11-071-8/+1
| | | | Close gh-1405
* Fix #12757 - use jscs to check the style guideOleg2013-11-071-11/+21
| | | | Close gh-1396
* Only set uglify options if not already the defaultTimmy Willison2013-10-151-10/+2
|
* No ticket: Clean up uglifyjs compress options. Close gh-1382.Timo Tijhof2013-10-151-3/+10
| | | | (cherry picked from commit e15627022f0c5e13a972baffb41f6f52ca4d3ec3)
* Preparations for npm/bower publishingTimmy Willison2013-10-151-1/+1
|
* Add bower install script and release scripts to jshint and pass lintTimmy Willison2013-10-071-1/+1
|
* No ticket. Simplify the post-uglify task.Michał Gołębiowski2013-10-021-5/+2
|
* No ticket. Restore checking individual src/**/*.js files by jsHint.Michał Gołębiowski2013-09-061-0/+6
|
* Fix #10814. Make support tests lazy and broken out to components.Michał Gołębiowski2013-09-061-1/+1
|
* Fix #13983. Switch to //# for sourcemap directives.Michał Gołębiowski2013-09-051-4/+2
|
* Custom builds: Remove _evalUrl when excluding ajaxTimmy Willison2013-08-161-0/+1
|
* Move jQuery specific tasks to independent files. Close gh-1334.Oleg Gaidarenko2013-08-161-191/+11
| | | | | | | Also: * Confirm build task to the style guide * Use grunt API to load jQuery specific tasks * Add "use strict"; statements
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-285/+16
|
* Lint JSON manifests during developmentTimmy Willison2013-07-191-7/+12
|
* Update devDependencies, adjust .jshintrc to jsHint 2.x, use .jshintignore. ↵Michał Gołębiowski2013-07-111-8/+4
| | | | Close gh-1283.
* Include Sizzle and Qunit with bower. Fixes #14118.Timmy Willison2013-07-101-3/+2
|
* Support CommonJS environments by accentuating the need for a window with a ↵Timmy Willison2013-07-041-2/+0
| | | | document. Fixes #13768.
* Revert "Fix #13983. Switch to //# for sourcemaps."Dave Methvin2013-07-021-1/+1
| | | | | | | | | Per the discussion here: https://code.google.com/p/chromium/issues/detail?id=256636 Thanks to the Chrome team for the quick response! This reverts commit d53ddc90c1f119fb9148a553443ef3fbc3f3cc99.
* Fix #13983. Switch to //# for sourcemaps.Dave Methvin2013-07-021-1/+1
| | | | | Normally we'd avoid doing this on a patch release, but Chrome Canary is spewing deprecation warnings already and that's generating bug tickets.
* Build: Update testswarm task to node-testswarm 1.x APIJörn Zaefferer2013-06-051-14/+25
|
* Fix #13793. Correct source map generation bugs. Close gh-1275.Michał Gołębiowski2013-05-231-6/+50
|
* Add release time to header on uncompressed file.Dave Methvin2013-05-111-4/+2
| | | | (cherry picked from commit 71f33cc7d949e3b5661754a9075aca990d71ba1f)
* Use grunt option with grunt.util.spawn, close gh-1255.Kyle Robinson Young2013-05-091-1/+1
|
* Fix #13776: Add banner before generating source map. Close gh-1246.Richard Gibson2013-04-181-19/+50
|
* Change uglify compression options, close gh-1245.Oleg2013-04-181-0/+6
|
* Tell uglifyjs to not mangle undefined; saves 44 bytes. Fixes #13759. Close ↵Michał Gołębiowski2013-04-151-0/+4
| | | | gh-1239.
* Add onevar to jshintrc, but remove the option for linting the concatenated fileTimmy Willison2013-04-091-4/+7
|
* Update jshintrc to conform to new style guide. Conform to onevar and unused ↵Timmy Willison2013-04-091-3/+3
| | | | in tests. Fixes #13755.
* Fix #13741. Make wrap/unwrap methods optional. Close gh-1222.Dave Methvin2013-04-061-0/+1
|
* Fix #13539: Utilize Sizzle hooks. Close gh-1215.Richard Gibson2013-04-051-1/+1
| | | | (cherry picked from commit 4ef516903e6e48bce388ca47c1ed88a447199fa1)
* Update grunt-contrib-jshint to 0.3.0, part 2, close gh-1203.Michał Gołębiowski2013-04-041-1/+1
|
* No ticket: fix build date formattingRichard Gibson2013-04-011-7/+1
|
* No ticker: grunt_compare_size options. Close gh-1210.Tom Fuertes2013-03-261-1/+10
|
* Build selector.js from built sizzle. Update Sizzle.Timmy Willison2013-03-191-1/+1
|
* No ticket: compare_size returns!Richard Gibson2013-03-111-1/+1
| | | | (remember to `npm install`)
* Fix #13434: native-API selector moduleRichard Gibson2013-02-271-18/+26
| | | | | | | | | | | | | | | | What's out: * 6 KB * attribute not equal selector * positional selectors (:first; :eq(n); :odd; etc.) * type selectors (:input; :checkbox; :button; etc.) * state-based selectors (:animated; :visible; :hidden; etc.) * :has(selector) * custom selectors * leading combinators (e.g., $collection.find("> *")) * reliable functionality on XML fragments * requiring all parts of a selector to match elements under context (e.g., $div.find("div > *") now matches children of $div) * matching against non-elements * reliable sorting of disconnected nodes
* Fix #12656. Make event shorthands excludable.Dave Methvin2013-01-271-0/+1
|
* Fix build until next grunt rc, disable compare_size.Dave Methvin2013-01-261-43/+46
|
* Fix #13274: Wrap sourceMap directive in multiline comments. Close gh-1143.Richard Gibson2013-01-251-2/+13
| | | | (cherry picked from commit ac93559eb9f18fcaec95dfdc97358b1b85bfe234)