Hook to specify the path to the blueprint's files. By default this is `path.join(this.path, 'files)`. This can be used to customize which set of files to install based on options or environmental variables. It defaults to the `files` directory within the blueprint's folder. @pu
(/* options */)
| 252 | @return {String} Path to the blueprints files directory. |
| 253 | */ |
| 254 | filesPath(/* options */) { |
| 255 | return path.join(this.path, 'files'); |
| 256 | }, |
| 257 | |
| 258 | /** |
| 259 | Used to retrieve files for blueprint. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…