Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(options?: any) {
options = options || {};
this.ui = options.ui || new MockUI();
this.root = join(__dirname, '..', '..');
this.npmPackage = options.npmPackage || 'ember-cli';
this.instrumentation = options.instrumentation || new Instrumentation({});
this.packageInfoCache = new PackageInfoCache(this.ui);
}
}