Looks for a __path__ token in the files folder. Must be present for the blueprint to support pod tokens. @private @method hasPathToken @param {files} files @return {Boolean}
(files)
| 1674 | @return {Boolean} |
| 1675 | */ |
| 1676 | function hasPathToken(files) { |
| 1677 | return /__path__/.test(files.join()); |
| 1678 | } |
| 1679 | |
| 1680 | function findAddonByName(addonOrProject, name) { |
| 1681 | let addon = addonOrProject.addons.find((addon) => addon.name === name); |