-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output path not being created recursively #14
Comments
In order to get access to the |
@filipesilva I have pushed some updates to the dev branch. Please try it out and let me know if you run into any issues. There is a migration guide at MIGRATION.md for some breaking changes. |
Hi @xz64, I can confirm that using the dev branch this bug does not manifest anymore. |
Heya,
If the webpack configuration has a deep output path that doesn't currently exist,
license-webpack-plugin
will fail atmkdirSync
(angular/angular-cli#7203).Webpack itself is ok with creating this path and putting files there though. Perhaps
compilation.assets
could be used instead ofmkdirSync
? There's an example at https://github.com/webpack/docs/wiki/how-to-write-a-plugin#a-simple-example where they do that. That way Webpack itself would take care of outputting it.The text was updated successfully, but these errors were encountered: