Skip to content

Commit 4cdc880

Browse files
committed
Bump version
1 parent 38c934e commit 4cdc880

3 files changed

Lines changed: 15 additions & 33 deletions

File tree

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
22
"name": "@frankframework/frank-config-layout",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Calculate a nice layout for Frank configurations",
55
"main": "master",
6-
"contributors": ["Lenard van der Maas", "Martijn Dirkse", "Vivy Booman"],
6+
"contributors": [
7+
"Lenard van der Maas",
8+
"Martijn Dirkse",
9+
"Vivy Booman"
10+
],
711
"license": "Apache-2.0",
812
"homepage": "",
913
"repository": {
@@ -12,6 +16,6 @@
1216
"directory": "projects/frank-config-layout"
1317
},
1418
"peerDependencies": {
15-
"@angular/core": "^20.2.2"
19+
"@angular/core": "^21.0.8 || ^22.0.0"
1620
}
1721
}

src/app/app.config.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/main.ts

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import { provideZoneChangeDetection } from "@angular/core";
21
/*
3-
Copyright 2024 WeAreFrank!
2+
Copyright 2024-2026 WeAreFrank!
43
54
Licensed under the Apache License, Version 2.0 (the "License");
65
you may not use this file except in compliance with the License.
@@ -15,10 +14,12 @@ import { provideZoneChangeDetection } from "@angular/core";
1514
limitations under the License.
1615
*/
1716

18-
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
17+
import { provideZoneChangeDetection } from '@angular/core';
18+
import { platformBrowser } from '@angular/platform-browser';
1919
import { AppModule } from './app/app.module';
2020

21-
platformBrowserDynamic()
22-
.bootstrapModule(AppModule, { applicationProviders: [provideZoneChangeDetection()], })
23-
// eslint-disable-next-line unicorn/prefer-top-level-await
24-
.catch((error) => console.error(error));
21+
((): void => {
22+
platformBrowser()
23+
.bootstrapModule(AppModule, { applicationProviders: [provideZoneChangeDetection()] })
24+
.catch((error) => console.error(error));
25+
})();

0 commit comments

Comments
 (0)