aurelia / webpack-plugin

A plugin for webpack that enables bundling Aurelia applications.
MIT License
90 stars 36 forks source link

fix(include-plugin): preserve all exports if no name is specified #185

Closed bigopon closed 3 years ago

bigopon commented 3 years ago

Currently when calling PLATFORM.moduleName() without 2nd argument specifying exports, it's wrongly signaling webpack that no exports should be preserved, breaking plugins. An example is store plugin at #183. This PR fixes this.

thanks @graycrow

closes #183