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

Commit

Permalink
Upgrade core-js package on last 3.* version
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-redFox committed Jun 18, 2020
1 parent dcfc9dc commit 68ac9be
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 12 deletions.
30 changes: 26 additions & 4 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 68ac9be

Please sign in to comment.