Skip to content
This repository has been archived by the owner on Mar 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1129 from anthony-redFox/dev
Browse files Browse the repository at this point in the history
Upgrade core-js package on last 3.* version
  • Loading branch information
brockallen authored Aug 5, 2020
2 parents 98c6810 + 68ac9be commit 75f2297
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 11 deletions.
28 changes: 25 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"homepage": "https://github.com/IdentityModel/oidc-client-js",
"dependencies": {
"uuid": "^3.3.2",
"core-js": "^2.6.4",
"core-js": "^3.6.5",
"crypto-js": "^3.1.9-1",
"base64-js": "^1.3.0"
},
Expand Down
14 changes: 7 additions & 7 deletions polyfills.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
// avoid modifying browser globals (potential for interop bugs with other libraries
// on the page that might be polyfilling ES6 features)

import 'core-js/es6/promise';
import 'core-js/fn/function/bind';
import 'core-js/fn/object/assign';
import 'core-js/fn/array/find';
import 'core-js/fn/array/some';
import 'core-js/fn/array/is-array';
import 'core-js/fn/array/splice';
import 'core-js/features/promise';
import 'core-js/features/function/bind';
import 'core-js/features/object/assign';
import 'core-js/features/array/find';
import 'core-js/features/array/some';
import 'core-js/features/array/is-array';
import 'core-js/features/array/splice';

0 comments on commit 75f2297

Please sign in to comment.