Reputation: 19401
after upgrading nrwl/nx to v 8.8.0 I get this error:
An unhandled exception occurred: license-webpack-plugin:
Please specify a regular expression as the pattern property on the plugin options.
I don't use the license-webpack-plugin
in my project (package.json
), but in package-lock.json
I can see that it is required by:
@angular-devkit/build-angular
version 0.803.19
@nrwl/node
version 8.8.0
How can I deactivate this plugin or workaround the issue?
Upvotes: 3
Views: 590
Reputation: 19401
This was a bug in 8.8.0
and is fixed in version 8.8.3
A temporary workaround: set all occurences of extractLicenses
to false
in angular.json
the compilation works again.
Upvotes: 4
Reputation: 4897
Let's follow the Github issue at https://github.com/nrwl/nx/issues/2081
Upvotes: 3