Skip to content

Commit 5aab153

Browse files
manoldonevdtopuzov
authored andcommitted
chore: merge release to master (#98)
* fix(ng-android): runtime compiler not loaded error with aot (#97) * chore(release): publish - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected]
1 parent 85a4369 commit 5aab153

File tree

14 files changed

+23
-23
lines changed

14 files changed

+23
-23
lines changed

packages/template-blank-ng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"name": "tns-template-blank-ng",
1313
"displayName": "Blank",
1414
"templateType": "App template",
15-
"version": "6.1.2",
15+
"version": "6.1.3",
1616
"description": "Blank template for NativeScript apps using Angular",
1717
"author": "Telerik <[email protected]>",
1818
"license": "Apache-2.0",

packages/template-blank-ng/src/app/app-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptRouterModule } from "nativescript-angular/router";
44

55
const routes: Routes = [
66
{ path: "", redirectTo: "/home", pathMatch: "full" },
7-
{ path: "home", loadChildren: () => import(`~/app/home/home.module`).then((m) => m.HomeModule) }
7+
{ path: "home", loadChildren: () => import("~/app/home/home.module").then((m) => m.HomeModule) }
88
];
99

1010
@NgModule({

packages/template-drawer-navigation-ng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"name": "tns-template-drawer-navigation-ng",
1313
"displayName": "Navigation Drawer",
1414
"templateType": "App template",
15-
"version": "6.1.2",
15+
"version": "6.1.3",
1616
"description": "Side navigation template",
1717
"author": "Telerik <[email protected]>",
1818
"license": "Apache-2.0",

packages/template-drawer-navigation-ng/src/app/app-routing.module.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import { NativeScriptRouterModule } from "nativescript-angular/router";
44

55
const routes: Routes = [
66
{ path: "", redirectTo: "/home", pathMatch: "full" },
7-
{ path: "home", loadChildren: () => import(`~/app/home/home.module`).then(m => m.HomeModule) },
8-
{ path: "browse", loadChildren: () => import(`~/app/browse/browse.module`).then(m => m.BrowseModule) },
9-
{ path: "search", loadChildren: () => import(`~/app/search/search.module`).then(m => m.SearchModule) },
10-
{ path: "featured", loadChildren: () => import(`~/app/featured/featured.module`).then(m => m.FeaturedModule) },
11-
{ path: "settings", loadChildren: () => import(`~/app/settings/settings.module`).then(m => m.SettingsModule) }
7+
{ path: "home", loadChildren: () => import("~/app/home/home.module").then(m => m.HomeModule) },
8+
{ path: "browse", loadChildren: () => import("~/app/browse/browse.module").then(m => m.BrowseModule) },
9+
{ path: "search", loadChildren: () => import("~/app/search/search.module").then(m => m.SearchModule) },
10+
{ path: "featured", loadChildren: () => import("~/app/featured/featured.module").then(m => m.FeaturedModule) },
11+
{ path: "settings", loadChildren: () => import("~/app/settings/settings.module").then(m => m.SettingsModule) }
1212
];
1313

1414
@NgModule({

packages/template-health-survey-ng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"name": "tns-template-health-survey-ng",
1313
"displayName": "Health Survey with Kinvey",
14-
"version": "6.1.2",
14+
"version": "6.1.3",
1515
"description": "Health survey template that saves data to Kinvey database.",
1616
"license": "SEE LICENSE IN <your-license-filename>",
1717
"keywords": [

packages/template-health-survey-ng/src/app/app-routing.module.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import { LoggedInLazyLoadGuard } from "./logged-in-lazy-load.guard";
66

77
const routes: Routes = [
88
{ path: "", redirectTo: "/consent", pathMatch: "full" },
9-
{ path: "login", loadChildren: () => import(`~/app/login/login.module`).then((m) => m.LoginModule) },
10-
{ path: "consent", loadChildren: () => import(`~/app/consent/consent.module`).then((m) => m.ConsentModule), canLoad: [LoggedInLazyLoadGuard] },
11-
{ path: "survey", loadChildren: () => import(`~/app/survey/survey.module`).then((m) => m.SurveyModule) }
9+
{ path: "login", loadChildren: () => import("~/app/login/login.module").then((m) => m.LoginModule) },
10+
{ path: "consent", loadChildren: () => import("~/app/consent/consent.module").then((m) => m.ConsentModule), canLoad: [LoggedInLazyLoadGuard] },
11+
{ path: "survey", loadChildren: () => import("~/app/survey/survey.module").then((m) => m.SurveyModule) }
1212
];
1313

1414
@NgModule({

packages/template-master-detail-kinvey-ng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"name": "tns-template-master-detail-kinvey-ng",
1313
"displayName": "Master-Detail with Kinvey",
1414
"templateType": "App template",
15-
"version": "6.1.2",
15+
"version": "6.1.3",
1616
"description": "Master-detail interface to display collection of items from Kinvey and inspect and edit selected item properties. ",
1717
"license": "SEE LICENSE IN <your-license-filename>",
1818
"keywords": [

packages/template-master-detail-kinvey-ng/src/app/app-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptRouterModule } from "nativescript-angular/router";
44

55
const routes: Routes = [
66
{ path: "", redirectTo: "/cars", pathMatch: "full" },
7-
{ path: "cars", loadChildren: () => import(`~/app/cars/cars.module`).then((m) => m.CarsModule) }
7+
{ path: "cars", loadChildren: () => import("~/app/cars/cars.module").then((m) => m.CarsModule) }
88
];
99

1010
@NgModule({

packages/template-master-detail-ng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"name": "tns-template-master-detail-ng",
1313
"displayName": "Master-Detail with Firebase",
1414
"templateType": "App template",
15-
"version": "6.1.2",
15+
"version": "6.1.3",
1616
"description": "Master-detail interface to display collection of items from Firebase and inspect and edit selected item properties. ",
1717
"author": "Telerik <[email protected]>",
1818
"license": "Apache-2.0",

packages/template-master-detail-ng/src/app/app-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { NativeScriptRouterModule } from "nativescript-angular/router";
44

55
const routes: Routes = [
66
{ path: "", redirectTo: "/cars", pathMatch: "full" },
7-
{ path: "cars", loadChildren: () => import(`~/app/cars/cars.module`).then((m) => m.CarsModule) }
7+
{ path: "cars", loadChildren: () => import("~/app/cars/cars.module").then((m) => m.CarsModule) }
88
];
99

1010
@NgModule({

packages/template-patient-care-ng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"name": "tns-template-patient-care-ng",
1313
"displayName": "Patient Care with Kinvey",
14-
"version": "6.1.2",
14+
"version": "6.1.3",
1515
"description": "Patient care template that saves data to Kinvey database.",
1616
"license": "SEE LICENSE IN <your-license-filename>",
1717
"keywords": [

packages/template-patient-care-ng/src/app-routing.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { LoggedInLazyLoadGuard } from "./logged-in-lazy-load.guard";
66

77
const routes: Routes = [
88
{ path: "", redirectTo: "/care", pathMatch: "full" },
9-
{ path: "care", loadChildren: () => import(`./care/care.module`).then((m) => m.CareModule), canLoad: [LoggedInLazyLoadGuard] },
10-
{ path: "login", loadChildren: () => import(`./login/login.module`).then((m) => m.LoginModule) }
9+
{ path: "care", loadChildren: () => import("./care/care.module").then((m) => m.CareModule), canLoad: [LoggedInLazyLoadGuard] },
10+
{ path: "login", loadChildren: () => import("./login/login.module").then((m) => m.LoginModule) }
1111
];
1212

1313
@NgModule({

packages/template-tab-navigation-ng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"name": "tns-template-tab-navigation-ng",
1313
"displayName": "Tabs",
1414
"templateType": "App template",
15-
"version": "6.1.2",
15+
"version": "6.1.3",
1616
"description": "Tabbed interface template",
1717
"author": "Telerik <[email protected]>",
1818
"license": "Apache-2.0",

packages/template-tab-navigation-ng/src/app/app-routing.module.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ const routes: Routes = [
1313
{
1414
path: "home",
1515
component: NSEmptyOutletComponent,
16-
loadChildren: () => import(`~/app/home/home.module`).then((m) => m.HomeModule),
16+
loadChildren: () => import("~/app/home/home.module").then((m) => m.HomeModule),
1717
outlet: "homeTab"
1818
},
1919
{
2020
path: "browse",
2121
component: NSEmptyOutletComponent,
22-
loadChildren: () => import(`~/app/browse/browse.module`).then((m) => m.BrowseModule),
22+
loadChildren: () => import("~/app/browse/browse.module").then((m) => m.BrowseModule),
2323
outlet: "browseTab"
2424
},
2525
{
2626
path: "search",
2727
component: NSEmptyOutletComponent,
28-
loadChildren: () => import(`~/app/search/search.module`).then((m) => m.SearchModule),
28+
loadChildren: () => import("~/app/search/search.module").then((m) => m.SearchModule),
2929
outlet: "searchTab"
3030
}
3131
];

0 commit comments

Comments
 (0)