aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
Commit message (Collapse)AuthorAgeFilesLines
* Build: Update grunt-contrib-uglifyMichał Gołębiowski2016-06-091-1/+1
| | | | | | | | | | | | A bug in UglifyJS was causing function declarations to sometimes be put in blocks which wasn't well specified in ES5 so it may break some browsers. This bump will prevent the issue from occurring in any potential future releae in this line. (cherry-picked from b14ce54334a568eaaa107be4c441660a57c3db24) Refs jquery/jquery#3153 Refs mishoo/UglifyJS2#1052
* Build: Fix the order of devDependencies in package.jsonMichał Gołębiowski2016-06-091-1/+1
| | | | | | | | `npm install package@version --save` sorts the dependencies alphabetically so the next such run would fix the order anyway; it's better to not mix concerns, though, so it's done now in a separate commit. (cherry-picked from 4a8985f56a3622a8d0bd5ca545e18510d3f4821d)
* Build: Updating the 1.12-stable version to 1.12.5-pre.Timmy Willison2016-05-201-1/+1
|
* Build: Updating the 1.12-stable version to 1.12.4-pre.Timmy Willison2016-04-051-1/+1
|
* Build: Updating the 1.12-stable version to 1.12.3-pre.Timmy Willison2016-03-171-1/+1
|
* Build: Updating the 1.12-stable version to 1.12.2-pre.Timmy Willison2016-02-221-1/+1
|
* Build: Updating the 1.12-stable version to 1.12.1-pre.Timmy Willison2016-01-081-1/+1
|
* Release: compat -> 1.x. Remove compat-specific release semanticsTimmy Willison2016-01-081-3/+3
|
* Revert "Deferred: Backwards-compatible standards interoperability"Oleg Gaidarenko2015-12-221-3/+1
| | | | This reverts commit 34f25631795e0641cc706012cfe5a88dacdedfec.
* Deprecated: fix amd mode for the deprecated moduleTimmy Willison2015-10-251-0/+1
| | | | (cherry picked from commit e271f665dd8fb617a5015051e1c9df8cebd6c97b)
* Build: update Sizzle to 2.2.1Oleg Gaidarenko2015-10-251-1/+1
| | | | | | | | | | Ref #2644 - `selector` module in Edge - Waiting for Sizzle update Fixes #2390 (cherry picked from commit 44f8239d3f9d09d81e2885e9ae7e044277b67341) Conflicts: package.json
* Build: Don't install jsdom 3 on Node.js 0.10 & 0.12 by defaultMichał Gołębiowski2015-09-081-4/+1
| | | | | | | | | | | | | | | | | | | | | | | jsdom 3 requires Python & Visual Studio on Windows which is a significant barrier to contributors. Newer jsdom versions don't require pre-compiling but work only on io.js. This commit installs the new jsdom everywhere (it does install in old Node.js, it just won't work) and executes Node-related tests only on newer Nodes or if a working jsdom version is installed. The latter can be achieved by running the `old_jsdom` task. Node.js is merging with io.js soon so this will become a smaller problem over time. One drawback is our Jenkins setup runs on Node 0.10 so it won't be running Node tests anymore. We have Travis set up on io.js, though so all PRs have those tests run. When the new LTS Node.js arrives (as it soon merges with io.js) we should update our Jenkins infrastructure so that it runs on this new version. (cherry-picked from dbb2daa8c3a458e3525d310440f4365548edc138) Fixes gh-2519 Closes gh-2526
* Effects: Finish should call progressThomas Tortorini2015-09-081-0/+1
| | | | | | | (cherry-picked from 3dd3d1357d027a487559516fcdd9064cc792edab) Fixes gh-2283 Closes gh-2292
* Build: Update grunt-contrib-uglify because of a security issue in uglifyReed Loden2015-09-071-1/+1
| | | | | | | | | | | | Update grunt-contrib-uglify dependency to v0.9.2 in order to avoid a security issue fixed in uglify-js v2.4.24. https://github.com/mishoo/UglifyJS2/issues/751 https://zyan.scripts.mit.edu/blog/backdooring-js/ (cherry-picked from 835e9218beef8f0c559da314fac01cb85dacb740) Closes gh-2556
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-071-1/+1
| | | | | Ref 10fdad742a2a6aa9f0e00b3e04fc5264797c53c7 Fixes gh-2056
* Core: Support non-browser environmentsMichał Gołębiowski2015-08-161-1/+8
| | | | | | | | | | | | Fixes gh-2133 Fixes gh-2501 Closes gh-2504 Refs gh-1950 Refs gh-1949 Refs gh-2397 Refs gh-1537 Refs gh-2504 Refs 842958e7aecd0d75a7ee9e2aaec83457701aa2f3
* Build: Add a comment explaining why the es3 option is neededMichał Gołębiowski2015-08-031-0/+1
| | | | | | | | | | | | It might not be obvious to everyone that IE 9 & Android 4.0 are not ES5-compliant browsers (by a large margin) so it's better to add a support comment. This requires slight changes in parsing the config file as it's not a pure JSON anymore. JSHint understands such files without problems. (cherry-picked from 669cb16d763cb5486dadd56ec15a17b2b0303571) Closes gh-2520
* Build: Update grunt-contrib-jshintMichał Gołębiowski2015-06-131-1/+1
| | | | | | | JSON needed to be added to JSHint globals as it's not implied by the es3 setting and yet all our supported browsers have it implemented. (cherry-picked from 1556c4661af647e355a9a5c0a814012955e231bc)
* Build: Update the license attributeGilad Peleg2015-06-011-6/+1
| | | | | | | | | | | | Specifying the type and URL is deprecated: https://docs.npmjs.com/files/package.json#license http://npm1k.org/ (cherry-picked from 8e92e1ea3c533f3be82c99bbafaaf74b5bdedecc) Fixes gh-2331 Closes gh-2330
* Build: update requirejs dependency to 2.1.17Oleg Gaidarenko2015-05-191-1/+1
| | | | | Fixes gh-2290 Ref a644101ed04d0beacea864ce805e0c4f86ba1cd1
* Build: Remove npm from dependenciesCalvin Metcalf2015-05-051-1/+0
| | | | Close gh-2254
* Build: update SizzleTimmy Willison2015-04-131-1/+1
| | | | | | Fixes gh-2042 Fixes gh-1969 Closes gh-1709
* Build: Update native-promise-only (again)Michał Gołębiowski2015-03-281-1/+1
| | | | | | This should fix Android 4.0 jQuery.when tests issues, for reals this time. (cherry-picked from f5aa89af7029ae6b9203c2d3e551a8554a0b4b89)
* Build: Update native-promise-onlyMichał Gołębiowski2015-03-251-1/+1
| | | | | | | | This should fix Android 4.0 jQuery.when tests issues. (cherry-picked from 0065e1f3e3021fc2bcb32e915177498bca034b34) Closes gh-2159
* Deferred: Backwards-compatible standards interoperabilityRichard Gibson2015-03-201-0/+3
| | | | | | | Fixes gh-1722 Closes gh-1996 (cherry picked from commit 555a50d340706e3e1e0de09231050493d0ad841e)
* Build: Update QUnit to latest (1.17.1)Jörn Zaefferer2015-02-151-1/+2
| | | | | (cherry-picked from 2d5c5d213f09fa0205d07a2d60a36581058cc40a) Closes gh-2038
* Release: remove sourcemap comment from all copies of minified fileTimmy Willison2015-01-301-2/+1
| | | | Fixes gh-1707
* Release: Distribute files to distribution repoTimmy Willison2015-01-291-2/+0
| | | | | | | | | | Fixes gh-1869 Fixes gh-1673 Fixes gh-2045 Conflicts: bower.json build/release.js
* Build: Sanctify the component name status of WrapDave Methvin2015-01-111-1/+2
| | | | (cherry picked from commit a4133ffafa6ac43b3aa22bc4edb4444b09f5250c)
* Build: Rearrange grunt/npm tasks into a build/dist/test patternRichard Gibson2015-01-111-1/+1
| | | | | | | | | Ref 76df9e4e389d80bff410a9e5f08b848de1d21a2f Ref bb928bde7e7b85357fef3fedd450b04c03e965d7 Conflicts: Gruntfile.js package.json
* Build: Specify valid components for commit messagesRichard Gibson2015-01-101-0/+25
| | | | | | Closes gh-1909 (cherry picked from commit 0c9d018889944da3d60cac135dc38dfcc37ac14a)
* Build: update node dependenciesTimmy Willison2014-12-171-8/+8
|
* Sizzle: update 2.1.1Timmy Willison2014-12-151-1/+1
|
* Tests: Update QUnitRichard Gibson2014-12-051-1/+1
| | | | (cherry picked from commit 6748ba349650353c7bed6eec201a3192f6b2cae1)
* Build: Point to files from the compat branch, not masterMichał Gołębiowski2014-11-031-2/+2
|
* Build: Update licenseScott González2014-11-031-1/+1
| | | | | | (cherry-picked from 4f776e5ff91c48891f02d1ca3ba31132477d3972) Closes gh-1587
* Build: 1.x-master -> compatTimmy Willison2014-11-031-2/+2
|
* Build: Upgrade to commitplease 2.0.0Jörn Zaefferer2014-10-221-1/+1
| | | | | | | commitplease now accepts "[tmp]:" and similar to temporary commits, useful while updating pull requests that are squashed later. (cherry picked from commit 5bc1ddc5cc96e509e0fadb0c1e3a70927de6ed1c)
* Misc: Update all references to bugs.jquery.comArthur Verschaeve2014-10-191-1/+1
| | | | | | | (cherry-picked from 3e89a53265bfdc992d7a97a01c5d1025e48e5906) Fixes gh-1681 Closes gh-1716
* Build: update source map options for the new grunt jshintTimmy Willison2014-07-171-1/+1
|
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: build/tasks/build.js src/ajax/xhr.js src/attributes/classes.js src/attributes/prop.js src/attributes/val.js src/core/init.js src/core/ready.js src/css.js src/css/curCSS.js src/css/defaultDisplay.js src/data.js src/data/var/dataPriv.js src/data/var/dataUser.js src/dimensions.js src/effects.js src/event.js src/manipulation.js src/offset.js src/queue.js src/selector-native.js test/data/testrunner.js
* Build: update node dependencies barring jscsTimmy Willison2014-07-171-6/+6
|
* Build: drop bower; use npm for front-end depsTimmy Willison2014-07-171-3/+7
| | | | | | | | Fixes #15186 Closes gh-1620 Conflicts: bower.json
* Build: update grunt-bowercopyTimmy Willison2014-06-251-1/+1
|
* Build: Upgrade to grunt-bowercopy 1.0.0Scott González2014-06-251-1/+1
|
* Build: Update commitplease dev dependencyOleg Gaidarenko2014-06-161-1/+1
| | | | Ref 39b76064d9400295a383291ab6e821e259b67832
* Release: ensure Sizzle is the latest tagTimmy Willison2014-05-271-0/+1
| | | | Fixes #14915
* Build: Bump version to 1.11.2-preDave Methvin2014-05-011-1/+1
| | | The release script didn't go perfectly.
* Build: Spaces vs tabsOleg Gaidarenko2014-04-241-1/+1
| | | | | | | | * Use tabs instead of spaces in jscs config * Always use spaces in package.json (really hope this is temporary) (cherry-picked from bbace100a3ad51287cd2864eeb03ddebb381d44f)
* Build: Add "browser" keyword for npmDave Methvin2014-04-231-0/+1
| | | | (cherry picked from commit 108428bcabb7027852ecd656b98f110a444039d0)