chore: Updated fuse-box to 2.1.0

This commit is contained in:
NGPixel
2017-06-11 18:20:43 -04:00
committed by Nicolas Giard
parent 485e1a78f6
commit 4adf994c90
4 changed files with 25 additions and 9 deletions

View File

@@ -83,7 +83,6 @@ globalTasks.then(() => {
homeDir: './client',
output: './assets/js/$name.min.js',
alias: ALIASES,
shim: SHIMS,
plugins: [
fsbx.EnvPlugin({ NODE_ENV: (dev) ? 'development' : 'production' }),
fsbx.VuePlugin(),
@@ -106,7 +105,7 @@ globalTasks.then(() => {
})
}
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) {