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
By splitting into dependencies and devDependencies it will reduce the packages installed when package install with --production argument ( or environment variable NODE_ENV=production declared ) which will install only packages declared in dependencies (for example: eslint & jest are probably devDependencies which are used only in testing/CI )
The text was updated successfully, but these errors were encountered:
Currently only
devDependencies
is used to declare dependencies in package.json file at:rn-contact-tracing/package.json
Lines 38 to 64 in 25a3924
By splitting into
dependencies
anddevDependencies
it will reduce the packages installed when package install with--production
argument ( or environment variableNODE_ENV=production
declared ) which will install only packages declared independencies
(for example:eslint
&jest
are probablydevDependencies
which are used only in testing/CI )The text was updated successfully, but these errors were encountered: