Imports an asset into this addon. @public @method import @param {Object|String} asset Either a path to the asset or an object with environment names and paths as key-value pairs. @param {Object} [options] Options object @param {String} [options.type] Either 'vendor' or 'tes
(asset, options)
| 748 | @since 2.7.0 |
| 749 | */ |
| 750 | import(asset, options) { |
| 751 | options = options || {}; |
| 752 | options.resolveFrom = options.resolveFrom || this.root; |
| 753 | |
| 754 | let app = this._findHost(); |
| 755 | app.import(asset, options); |
| 756 | }, |
| 757 | |
| 758 | /** |
| 759 | Returns the tree for all app files |
nothing calls this directly
no test coverage detected
searching dependent graphs…