From b13a3b4aff863919a09a7cbf7cc1c3d7fec93268 Mon Sep 17 00:00:00 2001 From: Michael FIG Date: Tue, 21 May 2019 09:49:43 -0700 Subject: [PATCH] Reenable bin/vat Add missing src/devices/index.js with named exports from the devices' top-halves. fixes #51 --- src/devices/index.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/devices/index.js diff --git a/src/devices/index.js b/src/devices/index.js new file mode 100644 index 00000000000..4e3d97592fc --- /dev/null +++ b/src/devices/index.js @@ -0,0 +1,5 @@ +// Export all the default exports of the driver top-halves. +export { default as buildChannel } from './channel'; +export { default as buildInbound } from './inbound'; +export { default as buildOutbox } from './outbox'; +export { default as buildSharedStringTable } from './sharedTable';