We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Alpha.1 version returns assets as array:
"chunks": { "manage":[ "js/vendors.js", "js/ui.js", "js/manage.js" ] }
Is it intentional? It's against the given example. The valid output (according to 0.4) is just last entry, or rather it's value in assets:
assets
"assets": { "js/manage.js": { "name":"js/manage.js", "path":"/home/user/dev/proj/dist/js/manage.js", "publicPath":"http://localhost:9090/js/manage.js" }, }
Previously was:
"chunks": { "manage":[ { "name":"js/manage.js", "publicPath":"http://localhost:9090/js/manage.js", "path":"/home/user/dev/proj/dist/js/manage.js" } ], }
The text was updated successfully, but these errors were encountered:
Hello,
Indeed it's a intentional breaking change. Previous json structure can't handle assets who are not related to chunk (see #52 for more details).
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Alpha.1 version returns assets as array:
Is it intentional? It's against the given example. The valid output (according to 0.4) is just last entry, or rather it's value in
assets
:Previously was:
The text was updated successfully, but these errors were encountered: