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
DOES: Cloning into Electainer brings with it a snapshot of the node_modules directory, as it's currently part of the project. This is pretty significantly heavy and not worth storing in a project.
SHOULD: Instead, the project should exclude the node_modules and require that, after cloning into the project, the developer runs npm install (or npm i) in the project root. As long as package.json is available, the appropriate node packages for the project will be installed at this time.
The text was updated successfully, but these errors were encountered:
DOES: Cloning into Electainer brings with it a snapshot of the
node_modules
directory, as it's currently part of the project. This is pretty significantly heavy and not worth storing in a project.SHOULD: Instead, the project should exclude the
node_modules
and require that, after cloning into the project, the developer runsnpm install
(ornpm i
) in the project root. As long aspackage.json
is available, the appropriate node packages for the project will be installed at this time.The text was updated successfully, but these errors were encountered: