Skip to content

Commit 077115e

Browse files
committed
chore: format
1 parent 00ba294 commit 077115e

File tree

6 files changed

+18
-28
lines changed

6 files changed

+18
-28
lines changed

CONTRIBUTING.md

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ After you have submitted your pull request, we'll try to get back to you as soon
6060

6161
Thank you for contributing!
6262

63-
6463
# Cutting a release
6564

6665
If you are a maintainer and want to cut a release, follow these steps:

angular.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -139,19 +139,15 @@
139139
"outputPath": "dist/angular-redux-injector-demo",
140140
"index": "projects/angular-redux-injector-demo/src/index.html",
141141
"browser": "projects/angular-redux-injector-demo/src/main.ts",
142-
"polyfills": [
143-
"zone.js"
144-
],
142+
"polyfills": ["zone.js"],
145143
"tsConfig": "projects/angular-redux-injector-demo/tsconfig.app.json",
146144
"assets": [
147145
{
148146
"glob": "**/*",
149147
"input": "projects/angular-redux-injector-demo/public"
150148
}
151149
],
152-
"styles": [
153-
"projects/angular-redux-injector-demo/src/styles.css"
154-
],
150+
"styles": ["projects/angular-redux-injector-demo/src/styles.css"],
155151
"scripts": []
156152
},
157153
"configurations": {

projects/angular-redux-injector-demo/src/app/utils/async-run-in-injection-context.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ export const asyncRunInInjectionContext = <TReturn>(
1717
});
1818
};
1919

20-
export type RunInInjectionContextProps<
21-
T extends object,
22-
> = T & {
20+
export type RunInInjectionContextProps<T extends object> = T & {
2321
injector: EnvironmentInjector;
2422
};
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8">
5-
<title>AngularReduxInjectorDemo</title>
6-
<base href="/">
7-
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
<link rel="icon" type="image/x-icon" href="favicon.ico">
9-
</head>
10-
<body>
11-
<app-root></app-root>
12-
</body>
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>AngularReduxInjectorDemo</title>
6+
<base href="/" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1" />
8+
<link rel="icon" type="image/x-icon" href="favicon.ico" />
9+
</head>
10+
<body>
11+
<app-root></app-root>
12+
</body>
1313
</html>

projects/angular-redux-injector-demo/src/main.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ import { bootstrapApplication } from '@angular/platform-browser';
22
import { appConfig } from './app/app.config';
33
import { AppComponent } from './app/app.component';
44

5-
bootstrapApplication(AppComponent, appConfig)
6-
.catch((err) => console.error(err));
5+
bootstrapApplication(AppComponent, appConfig).catch((err) =>
6+
console.error(err),
7+
);

projects/angular-redux-injector-demo/tsconfig.app.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66
"outDir": "../../out-tsc/app",
77
"types": []
88
},
9-
"files": [
10-
"src/main.ts"
11-
],
12-
"include": [
13-
"src/**/*.d.ts"
14-
]
9+
"files": ["src/main.ts"],
10+
"include": ["src/**/*.d.ts"]
1511
}

0 commit comments

Comments
 (0)