Used to remove a package from the project's `package.json`. Generally, this would be done from the `afterInstall` hook, to ensure that any package conflicts can be resolved before the addon is used. @method removePackageFromProject @param {String} packageName @return {Promi
(packageName)
| 1139 | @return {Promise} |
| 1140 | */ |
| 1141 | removePackageFromProject(packageName) { |
| 1142 | let packageObject = { name: packageName }; |
| 1143 | |
| 1144 | return this.removePackagesFromProject([packageObject]); |
| 1145 | }, |
| 1146 | |
| 1147 | /** |
| 1148 | Used to remove multiple packages from the project's `package.json`. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…