Browse Source

Declare bare UMD dependencies and move the vendored license to the package root

pull/26037/head
maliming 2 weeks ago
parent
commit
cc78e41431
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 4
      npm/packs/bootstrap-datepicker/package.json
  2. 5
      npm/packs/bootstrap-daterangepicker/package.json
  3. 0
      npm/packs/jquery-validation-unobtrusive/License.txt
  4. 2
      npm/packs/jquery-validation-unobtrusive/src/jquery.validate.unobtrusive.js

4
npm/packs/bootstrap-datepicker/package.json

@ -10,8 +10,8 @@
"access": "public"
},
"dependencies": {
"@abp/jquery": "~10.7.0-rc.3",
"bootstrap-datepicker": "1.10.1"
"bootstrap-datepicker": "1.10.1",
"jquery": "~4.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",

5
npm/packs/bootstrap-daterangepicker/package.json

@ -10,8 +10,9 @@
"access": "public"
},
"dependencies": {
"@abp/jquery": "~10.7.0-rc.3",
"@abp/moment": "~10.7.0-rc.3"
"@abp/moment": "~10.7.0-rc.3",
"jquery": "~4.0.0",
"moment": "^2.30.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",

0
npm/packs/jquery-validation-unobtrusive/src/License.txt → npm/packs/jquery-validation-unobtrusive/License.txt

2
npm/packs/jquery-validation-unobtrusive/src/jquery.validate.unobtrusive.js

@ -2,7 +2,7 @@
* @license
* Unobtrusive validation support library for jQuery and jQuery Validate
* Copyright (c) .NET Foundation. All rights reserved.
* Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
* Licensed under the MIT License. See License.txt in the package root for license information.
* @version v4.0.0
* Patched copy: uses JSON.parse, typeof and Function.prototype.bind instead of the jQuery APIs removed or deprecated in jQuery 4.
*/

Loading…
Cancel
Save