diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-10 09:58:52 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-26 13:22:35 +0100 |
commit | fa9c206fc8b9b01e79ff7d221a26f037a472e6ef (patch) | |
tree | 41282ab5161ada327153ab90cbb96417ccd01f74 /core/src | |
parent | 62403d0932be7d620c7bdadc6b4e13eb496fcd6f (diff) | |
download | nextcloud-server-fa9c206fc8b9b01e79ff7d221a26f037a472e6ef.tar.gz nextcloud-server-fa9c206fc8b9b01e79ff7d221a26f037a472e6ef.zip |
Migrate from @babel/polyfill to core-js@3
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/main.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/main.js b/core/src/main.js index 3f0e82df95f..21213d7279e 100644 --- a/core/src/main.js +++ b/core/src/main.js @@ -20,8 +20,9 @@ */ import $ from 'jquery' +import 'core-js/stable' +import 'regenerator-runtime/runtime' import './Polyfill/index' -import '@babel/polyfill' // If you remove the line below, tests won't pass // eslint-disable-next-line no-unused-vars |