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
Any package.json scripts that would run on npm install will be removed while dependencies are being installed. This lets us install parent packages first without the fear of a child package not being ready-to-use in a script.
Why would I want that? Installing dependencies of parents first lets children use link: to inherit dev dependencies from their parents. This reduces install times.
The removed scripts are restored after install, and they're executed in topological order (children first).
The text was updated successfully, but these errors were encountered:
Any
package.json
scripts that would run onnpm install
will be removed while dependencies are being installed. This lets us install parent packages first without the fear of a child package not being ready-to-use in a script.Why would I want that? Installing dependencies of parents first lets children use
link:
to inherit dev dependencies from their parents. This reduces install times.The removed scripts are restored after install, and they're executed in topological order (children first).
The text was updated successfully, but these errors were encountered: