From 3d72c4ca956475742b16bcdab5b9abea5d3efd9c Mon Sep 17 00:00:00 2001 From: NGPixel Date: Sat, 8 Jul 2017 20:45:29 -0400 Subject: [PATCH] fix: fuse missing shims --- fuse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuse.js b/fuse.js index f24cb12f..d81f6de5 100644 --- a/fuse.js +++ b/fuse.js @@ -116,7 +116,7 @@ globalTasks.then(() => { // const bundleVendor = fuse.bundle('vendor').shim(SHIMS).instructions('~ index.js') // eslint-disable-line no-unused-vars // const bundleApp = fuse.bundle('app').instructions('!> [index.js]') - const bundleApp = fuse.bundle('app').instructions('> index.js') + const bundleApp = fuse.bundle('app').shim(SHIMS).instructions('> index.js') const bundleSetup = fuse.bundle('configure').instructions('> configure.js') switch (mode) {