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
While we more or less respect .npmignore of private packages, we should also properly respect files section "local" packages.
Example in monorepos built withyarn workspaces:
$ yarn workspaces run build
$ copy-production-deps ./some-backend some-backend/dist
copy-production-deps should be able to acuire only "publshed" files from all workspaces referenced by "some-backend" package. Now it will will copy all not .npmignored files.
The text was updated successfully, but these errors were encountered:
While we more or less respect
.npmignore
of private packages, we should also properly respectfiles
section "local" packages.Example in monorepos built with
yarn
workspaces:$
yarn workspaces run build
$
copy-production-deps ./some-backend some-backend/dist
copy-production-deps
should be able to acuire only "publshed" files from all workspaces referenced by "some-backend" package. Now it will will copy all not.npmignore
d files.The text was updated successfully, but these errors were encountered: