From 4a42d2a1f887d8a0b0cc6bcbf71c6421be76e6ba Mon Sep 17 00:00:00 2001 From: Nicolas Coden Date: Sun, 3 Jun 2018 09:58:02 +0200 Subject: [PATCH] fix: add missing Foundation import in Touch entry Export is no longer ignored for undefined variables in babel-core@7. --- js/entries/plugins/foundation.util.touch.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/entries/plugins/foundation.util.touch.js b/js/entries/plugins/foundation.util.touch.js index 0ebf04488..17833a803 100644 --- a/js/entries/plugins/foundation.util.touch.js +++ b/js/entries/plugins/foundation.util.touch.js @@ -6,4 +6,5 @@ Touch.init($); window.Foundation.Touch = Touch; -export { Foundation, Touch }; +export { Foundation } from './foundation.core'; +export { Touch }; -- 2.47.2