From 0338f8e7b96000affe59e9c0040c36c95f4e6234 Mon Sep 17 00:00:00 2001 From: Spencer Date: Thu, 23 Apr 2020 20:54:26 -0700 Subject: [PATCH] =?UTF-8?q?chore(NA):=20use=20core-js=20instead=20of=20bab?= =?UTF-8?q?el-polyfill=20on=20canvas=20sha=E2=80=A6=20(#63486)=20(#64386)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(NA): use core-js instead of babel-polyfill on canvas shareable runtime build * chore(NA): include regenerator-runtime/runtime * chore(NA): change import order between runtime and core js Co-authored-by: Elastic Machine Co-authored-by: Tiago Costa Co-authored-by: Elastic Machine --- x-pack/legacy/plugins/canvas/shareable_runtime/api/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/legacy/plugins/canvas/shareable_runtime/api/index.ts b/x-pack/legacy/plugins/canvas/shareable_runtime/api/index.ts index b05379df6b0b1f..0780ab46cd873b 100644 --- a/x-pack/legacy/plugins/canvas/shareable_runtime/api/index.ts +++ b/x-pack/legacy/plugins/canvas/shareable_runtime/api/index.ts @@ -4,7 +4,8 @@ * you may not use this file except in compliance with the Elastic License. */ +import 'core-js/stable'; +import 'regenerator-runtime/runtime'; import 'whatwg-fetch'; -import 'babel-polyfill'; export * from './shareable';