UNPKG

ember-cli-update

Version:
12 lines (8 loc) 280 B
'use strict'; function findBlueprint(emberCliUpdateJson, packageName, blueprintName) { let blueprint = emberCliUpdateJson.blueprints.find(b => { return b.packageName === packageName && b.name === blueprintName; }); return blueprint; } module.exports = findBlueprint;