-
Notifications
You must be signed in to change notification settings - Fork 89
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
Use updated dist glob pattern in package.json #731
Conversation
Can anyone review? This is a bug blocking to use this library. |
@riywo Is there a bug report on npm CLI, or Release Notes? From their documentation, this appears to be a bug
|
Good point. Will check them later. |
I think the behavior has changed since I cut a bug ticket but I'm not sure this is a bug: npm/cli#6330 I believe changing the directory structure to |
As I thought, this is an expected change. See the closed issue. Which way do you want to go with? Specifying all directories explicitly (current PR) or using |
Please use |
`dist-*` doesn't work with `npm@9` and nothing is packed. This commit fixes `files` to a proper glob pattern so that `npm pack` can include all files with `npm@9`.
@trivikr Updated with |
Description of changes:
dist-*
doesn't work withnpm@9
and nothing is packed.This commit fixes
files
to a proper glob pattern so thatnpm pack
can include all files with
npm@9
.Before
After
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.