This is an automated email from the ASF dual-hosted git repository.
amaranhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-fauxton.git
The following commit(s) were added to refs/heads/master by this push:
new daa3984 Fix IE11 by adding Object polyfills. (#1084)
daa3984 is described below
commit daa39842d790d96ccc0ae69c37dcb8579c50365f
Author: Alexis Côté <[email protected]>
AuthorDate: Sun May 6 11:36:48 2018 -0400
Fix IE11 by adding Object polyfills. (#1084)
---
webpack.config.dev.js | 2 +-
webpack.config.release.js | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/webpack.config.dev.js b/webpack.config.dev.js
index b04395d..7bbb774 100644
--- a/webpack.config.dev.js
+++ b/webpack.config.dev.js
@@ -20,7 +20,7 @@ const settings = require('./tasks/helper')
module.exports = {
entry: {
- bundle: ['core-js/fn/array', 'core-js/fn/symbol', 'core-js/fn/promise',
'regenerator-runtime/runtime', './app/main.js'] //Our starting point for our
development.
+ bundle: ['core-js/fn/array', 'core-js/fn/object', 'core-js/fn/symbol',
'core-js/fn/promise', 'regenerator-runtime/runtime', './app/main.js'] //Our
starting point for our development.
},
output: {
diff --git a/webpack.config.release.js b/webpack.config.release.js
index f39c414..44cd68c 100644
--- a/webpack.config.release.js
+++ b/webpack.config.release.js
@@ -22,7 +22,7 @@ const settings = require('./tasks/helper')
module.exports = {
// Entry point for static analyzer:
entry: {
- bundle: ['core-js/fn/array', 'core-js/fn/symbol', 'core-js/fn/promise',
'regenerator-runtime/runtime', './app/main.js']
+ bundle: ['core-js/fn/array', 'core-js/fn/object', 'core-js/fn/symbol',
'core-js/fn/promise', 'regenerator-runtime/runtime', './app/main.js']
},
output: {
--
To stop receiving notification emails like this one, please contact
[email protected].