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? 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
Input:
{ "name": "awesome-web-framework", "version": "1.0.0", "bundleDependencies": [ "renderized", "super-streams" ] }
Output:
{ "name": "awesome-web-framework", "version": "1.0.0", "bundleDependencies": { "0": "renderized", "1": "super-streams" } }
Expected output: same as input.
The bundleDependencies field is defined as an array, see: https://docs.npmjs.com/cli/v8/configuring-npm/package-json#bundledependencies
bundleDependencies
It can also be spelled bundledDependencies (with an extra d), in which case the same problem occurs.
bundledDependencies
d
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Input:
Output:
Expected output: same as input.
The
bundleDependencies
field is defined as an array, see: https://docs.npmjs.com/cli/v8/configuring-npm/package-json#bundledependenciesIt can also be spelled
bundledDependencies
(with an extrad
), in which case the same problem occurs.The text was updated successfully, but these errors were encountered: