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
Certain packages and libraries are only needed when actively developing the project, and are unnecessary when deployed. For example, testing suites are important to make sure covered code is behaving properly, but have no effect on how the project runs. These are known as DevDependencies.
DevDependencies should first be identified. If they are not already marked as such in the Pipfile or package.json, uninstall then reinstall the package using one of the following commands:
Backend: pipenv install --dev [package-name]
Frontend: npm install [package-name] --save-dev
The text was updated successfully, but these errors were encountered:
Certain packages and libraries are only needed when actively developing the project, and are unnecessary when deployed. For example, testing suites are important to make sure covered code is behaving properly, but have no effect on how the project runs. These are known as DevDependencies.
DevDependencies should first be identified. If they are not already marked as such in the Pipfile or package.json, uninstall then reinstall the package using one of the following commands:
Backend: pipenv install --dev [package-name]
Frontend: npm install [package-name] --save-dev
The text was updated successfully, but these errors were encountered: