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.
Acceptance Criteria:
DevDependencies have been identified
DevDependencies are marked as such in package.json
Possible implementation:
Uninstall packages that are DevDependencies using npm uninstall [package-name]
Install same package using 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.
Acceptance Criteria:
Possible implementation:
Uninstall packages that are DevDependencies using
npm uninstall [package-name]
Install same package using
npm install [package-name] --save-dev
The text was updated successfully, but these errors were encountered: