You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ac...@apache.org on 2018/07/27 20:47:19 UTC

[couchdb-fauxton] branch master updated: Add polyfills for endsWith and startsWith (#1113)

This is an automated email from the ASF dual-hosted git repository.

acote 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 731bbee  Add polyfills for endsWith and startsWith (#1113)
731bbee is described below

commit 731bbee0173adf6af085e7bacba3df75f789d800
Author: Alexis Côté <po...@users.noreply.github.com>
AuthorDate: Fri Jul 27 16:47:17 2018 -0400

    Add polyfills for endsWith and startsWith (#1113)
---
 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 7bbb774..c1805c3 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/object', '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/string/ends-with', 'core-js/fn/string/starts-with', '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 44cd68c..8b9389f 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/object', 'core-js/fn/symbol', 'core-js/fn/promise', 'regenerator-runtime/runtime', './app/main.js']
+    bundle: ['core-js/fn/array', 'core-js/fn/string/ends-with', 'core-js/fn/string/starts-with',  'core-js/fn/object', 'core-js/fn/symbol', 'core-js/fn/promise', 'regenerator-runtime/runtime', './app/main.js']
   },
 
   output: {