Calls `require` on a given module from the context of the project. For instance, an addon may want to require a class from the root project's version of ember-cli. @public @method require @param {String} file File path or module name @return {Object} Imported module
(file)
| 346 | @return {Object} Imported module |
| 347 | */ |
| 348 | require(file) { |
| 349 | let path = this.resolveSync(file); |
| 350 | return require(path); |
| 351 | } |
| 352 | |
| 353 | /** |
| 354 | Returns the dependencies from a package.json |
no test coverage detected