Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix corejs warning #1594

Merged
merged 1 commit into from
Nov 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Fixes body text color not taking effect for cart item headings on mobile / tablet [#1586](https://github.com/bigcommerce/cornerstone/pull/1586)
- Fix styling of review modal image [#1592](https://github.com/bigcommerce/cornerstone/pull/1592)
- Fix typo in README.md [#1588](https://github.com/bigcommerce/cornerstone/pull/1588)
- Fix corejs warning [#1594](https://github.com/bigcommerce/cornerstone/pull/1594)

## 4.2.1 (2019-10-15)
- Added missing gift certificate translation
Expand Down
79 changes: 17 additions & 62 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@bigcommerce/stencil-utils": "^4.2.0",
"core-js": "^2.6.10",
"creditcards": "^3.0.1",
"easyzoom": "^2.5.2",
"foundation-sites": "^5.5.3",
Expand Down
1 change: 1 addition & 0 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ module.exports = {
modules: false, // Don't transform modules; needed for tree-shaking
useBuiltIns: 'usage', // Tree-shake babel-polyfill
targets: '> 1%, last 2 versions, Firefox ESR',
corejs: '^2.6.10',
}],
],
},
Expand Down