Bluebird included twice?

I created a new project with the CLI (v0.34.0) using WebPack. When I do au run --analyze, it seems to show that Bluebird is included in both app.bundle.js and vendor.bundle.js:

Am I interpreting this properly, and if so, can I get rid of one of them? Haven’t quite got to grips with webpack.config.js yet!

2 Likes

@jods4 is the default webpack config entry not working as expected?

entry: {
  app: ['aurelia-bootstrapper'],
  vendor: ['bluebird'],
},

Tracked here https://github.com/aurelia/cli/issues/918

1 Like