Skip to content

Commit 9d499ac

Browse files
committed
Prettier
1 parent e4d49da commit 9d499ac

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

packages/apollo-angular/schematics/install/index.cts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,12 @@ function importSetup(options: Schema): Rule {
112112
})`;
113113
});
114114
} else {
115-
return addModuleImportToRootModule(host, 'GraphQLModule', './graphql.module', options.project);
115+
return addModuleImportToRootModule(
116+
host,
117+
'GraphQLModule',
118+
'./graphql.module',
119+
options.project,
120+
);
116121
}
117122
};
118123
}
@@ -125,7 +130,7 @@ function importHttpClient(options: Schema): Rule {
125130
return code`${external('provideHttpClient', '@angular/common/http')}()`;
126131
});
127132
} else {
128-
return addModuleImportToRootModule(
133+
return addModuleImportToRootModule(
129134
host,
130135
'HttpClientModule',
131136
'@angular/common/http',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"emitDecoratorMetadata": true,
4+
"emitDecoratorMetadata": true
55
},
66
"include": ["tests/*.spec.cts"]
77
}

0 commit comments

Comments
 (0)