Skip to content

Commit

Permalink
Remove support for IE. (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
dompuiu authored Aug 9, 2024
1 parent 907869d commit 6a8c420
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 28 deletions.
2 changes: 1 addition & 1 deletion coreModulePackages/objectAssign/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
****************************************************************************************/
'use strict';

module.exports = require('object-assign');
module.exports = Object.assign;
14 changes: 7 additions & 7 deletions coreModulePackages/objectAssign/package-lock.json

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

7 changes: 2 additions & 5 deletions coreModulePackages/objectAssign/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@adobe/reactor-object-assign",
"version": "1.0.0",
"description": "Object.assign implementation. Exposes the \"object-assign\" npm package. Intended for use in Adobe Launch extensions.",
"version": "2.0.0",
"description": "Object.assign native implementation. Intended for use in Adobe Launch extensions.",
"license": "Apache-2.0",
"author": {
"name": "Adobe Systems",
Expand All @@ -11,8 +11,5 @@
"repository": {
"type": "git",
"url": "[email protected]:adobe/reactor-turbine.git"
},
"dependencies": {
"object-assign": "4.1.1"
}
}
4 changes: 1 addition & 3 deletions coreModulePackages/promise/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,4 @@
// and `require('promise-polyfill')` for building Turbine.
module.exports =
(typeof window !== 'undefined' && window.Promise) ||
(typeof global !== 'undefined' && global.Promise) ||
require('promise-polyfill').default ||
require('promise-polyfill');
(typeof global !== 'undefined' && global.Promise);
14 changes: 7 additions & 7 deletions coreModulePackages/promise/package-lock.json

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

7 changes: 2 additions & 5 deletions coreModulePackages/promise/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@adobe/reactor-promise",
"version": "1.2.0",
"description": "Promise implementation. Exposes the \"promise-polyfill\" npm package. Intended for use in Adobe Launch extensions.",
"version": "2.0.0",
"description": "Promise native implementation. Intended for use in Adobe Launch extensions.",
"license": "Apache-2.0",
"author": {
"name": "Adobe Systems",
Expand All @@ -11,8 +11,5 @@
"repository": {
"type": "git",
"url": "[email protected]:adobe/reactor-turbine.git"
},
"dependencies": {
"promise-polyfill": "8.1.3"
}
}

0 comments on commit 6a8c420

Please sign in to comment.