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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -185,9 +185,8 @@ The following sections describe how to manage dependencies in practice.
185
185
186
186
### Removing A Package Dependency
187
187
188
-
`npm uninstall -D ${dependency-name}`: Removes a dev dependency from the root package.
189
-
`npm uninstall ${dependency-name} -w packages/collector`: Removes a production dependency from the package `@instana/collector`. This is equivalent to `cd packages/collector; npm uninstall ${dependency-name}`.
190
-
`npm uninstall -D ${dependency-name} -w packages/collector`: Removes a dev dependency from the package `@instana/collector`. This is equivalent to `cd packages/collector; npm uninstall -D ${dependency-name}`.
188
+
`npm uninstall ${dependency-name}`: Removes a dependency from the root package.
189
+
`npm uninstall ${dependency-name} -w packages/collector`: Removes a dependency from the package `@instana/collector`. This is equivalent to `cd packages/collector; npm uninstall ${dependency-name}`.
191
190
192
191
### Updating A Single Version In A `package.json` File
0 commit comments