We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79339f4 commit dcadabfCopy full SHA for dcadabf
packages/project/src/project.ts
@@ -1,5 +1,4 @@
1
import { pathExists } from '@ionic/utils-fs';
2
-import { Logger } from '@ionic/cli-framework-output';
3
import { join } from 'path';
4
5
import { AndroidProject } from './android/project';
@@ -24,8 +23,7 @@ export class MobileProject {
24
23
25
constructor(
26
public projectRoot: string,
27
- public config: MobileProjectConfig = {},
28
- public logger: Logger | null = null
+ public config: MobileProjectConfig = {}
29
) {
30
this.vfs = new VFS();
31
this.config.projectRoot = projectRoot;
@@ -41,10 +39,6 @@ export class MobileProject {
41
39
}
42
40
43
44
- getLogger() {
45
- return this.logger;
46
- }
47
-
48
async detectFramework(): Promise<Framework | null> {
49
const frameworks = [
50
FlutterFramework,
0 commit comments