diff options
author | abnud1 <ahmad13932013@hotmail.com> | 2018-11-11 06:52:13 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2019-02-19 13:05:09 +0100 |
commit | 8751e9ef86c007e55c9e4a2fe3c9212fb2cadcca (patch) | |
tree | 8ae35ee0bcc254b94f554ec2bb719491a7ffe6a6 /external | |
parent | c3498187421d0a50ee0369163428481137a04b99 (diff) | |
download | jquery-8751e9ef86c007e55c9e4a2fe3c9212fb2cadcca.tar.gz jquery-8751e9ef86c007e55c9e4a2fe3c9212fb2cadcca.zip |
Build: Update most dependencies
The only packages not fully updated are:
- qunitjs & karma-qunit as that's a QUnit 2.x update that will require some
changes and we'll do that later
- jsdom as we need to first rewrite the test with the Symbol polyfill - newer
jsdom versions don't work with such a hacked Symbol instance
- sinon as the v2 -> v7 upgrade requires to update our unit tests
- uglify-js & grunt-contrib-uglify as latest uglify-js versions slightly worsen
the minified gzipped size
Closes gh-4227
Closes gh-4228
Closes gh-4230
Closes gh-4232
Diffstat (limited to 'external')
-rw-r--r-- | external/requirejs/require.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/external/requirejs/require.js b/external/requirejs/require.js index 051e284b0..78490f91d 100644 --- a/external/requirejs/require.js +++ b/external/requirejs/require.js @@ -1,5 +1,5 @@ /** vim: et:ts=4:sw=4:sts=4 - * @license RequireJS 2.3.5 Copyright jQuery Foundation and other contributors. + * @license RequireJS 2.3.6 Copyright jQuery Foundation and other contributors. * Released under MIT license, https://github.com/requirejs/requirejs/blob/master/LICENSE */ //Not using strict: uneven strict support in browsers, #392, and causes @@ -11,7 +11,7 @@ var requirejs, require, define; (function (global, setTimeout) { var req, s, head, baseElement, dataMain, src, interactiveScript, currentlyAddingScript, mainScript, subPath, - version = '2.3.5', + version = '2.3.6', commentRegExp = /\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/mg, cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g, jsSuffixRegExp = /\.js$/, @@ -165,7 +165,7 @@ var requirejs, require, define; * @returns {Error} */ function makeError(id, msg, err, requireModules) { - var e = new Error(msg + '\nhttp://requirejs.org/docs/errors.html#' + id); + var e = new Error(msg + '\nhttps://requirejs.org/docs/errors.html#' + id); e.requireType = id; e.requireModules = requireModules; if (err) { |