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
yarn install will install devdependencies
- additionally it runs yarn prepublish (because that's how it works)
- this in turn runs yarn test
- this in turn runs yarn build (what we want) and jest (to validate)
This means that the tests MUST be present when building the image. They are *not* copied over, so this is not an issues.
Additionally, this creates a new production_node_modules folder with the right flags set, so that the final image node_modules is extremely small.
0 commit comments