From 489e9fce27eb648b3bf70a245fe46966e64f1476 Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Tue, 21 Jun 2016 11:15:24 +0200 Subject: [PATCH] fix(xapi/index): work around Babel T2877 --- src/xapi/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/xapi/index.js b/src/xapi/index.js index bc7813d60..0996ed2f1 100644 --- a/src/xapi/index.js +++ b/src/xapi/index.js @@ -108,7 +108,9 @@ const put = (stream, { // =================================================================== -export * from './utils' +// FIXME: remove this work around when fixed, https://phabricator.babeljs.io/T2877 +// export * from './utils' +require('lodash.assign')(module.exports, require('./utils')) // VDI formats. (Raw is not available for delta vdi.) export const VDI_FORMAT_VHD = 'vhd'