Used to add an addon to the project's `package.json` and run it's `defaultBlueprint` if it provides one. Generally, this would be done from the `afterInstall` hook, to ensure that a package that is required by a given blueprint is available. @method addAddonToProject @param
(options)
| 1198 | @return {Promise} |
| 1199 | */ |
| 1200 | addAddonToProject(options) { |
| 1201 | return this.addAddonsToProject({ |
| 1202 | packages: [options], |
| 1203 | extraArgs: options.extraArgs || {}, |
| 1204 | blueprintOptions: options.blueprintOptions || {}, |
| 1205 | }); |
| 1206 | }, |
| 1207 | |
| 1208 | /** |
| 1209 | Used to add multiple addons to the project's `package.json` and run their |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…