You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 9, 2024. It is now read-only.
The .npmignore of all packages in this project currently use a "blocklist" approach - i.e. they specify globs of things that shouldn't be published. This should be updated to use an "allowlist" instead - i.e. they should specify globs of things that should be published.
Example
- src/- tsconfig.*-- # JavaScript files that are always empty- types.js+ *++ # Allowlist+ !lib/**+ lib/**/types.js+ !CHANGELOG.md+ !LICENSE+ !package.json+ !README.md
Initiative
Description
The
.npmignore
of all packages in this project currently use a "blocklist" approach - i.e. they specify globs of things that shouldn't be published. This should be updated to use an "allowlist" instead - i.e. they should specify globs of things that should be published.Example
Progress
Related
package-lock.json
#205As this issue concerns all package, the labels of individual packages won't be added.
The text was updated successfully, but these errors were encountered: