Skip to content

Commit 09bf9ba

Browse files
committed
fix: local development workflow errors
1 parent 1639e65 commit 09bf9ba

File tree

13 files changed

+22
-13
lines changed

13 files changed

+22
-13
lines changed

e2e/animation-examples/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"paths": {
1616
"*": [
1717
"./node_modules/tns-core-modules/*",
18-
"./node_modules/*"
18+
"./node_modules/*",
19+
"./node_modules/nativescript-angular/node_modules/*"
1920
],
2021
"~/*": [
2122
"app/*"

e2e/modal-navigation-ng/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"paths": {
1616
"*": [
1717
"./node_modules/tns-core-modules/*",
18-
"./node_modules/*"
18+
"./node_modules/*",
19+
"./node_modules/nativescript-angular/node_modules/*"
1920
],
2021
"~/*": [
2122
"app/*"

e2e/nested-router-tab-view/app/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { routerTraceCategory } from "nativescript-angular/trace";
1313
// addCategories(routerTraceCategory);
1414
traceEnable();
1515

16-
class MyErrorHandler implements ErrorHandler {
16+
export class MyErrorHandler implements ErrorHandler {
1717
handleError(error) {
1818
console.log("### ErrorHandler Error: " + error.toString());
1919
console.log("### ErrorHandler Stack: " + error.stack);

e2e/nested-router-tab-view/app/modal-second/modal-second.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Label class="action-bar-title" text="Modal Second"></Label>
44
</ActionBar>
55

6-
<GridLayout #rootLayout rows="auto, auto" (loaded)="onLoaded($event)">
6+
<GridLayout #rootLayout rows="auto, auto" (loaded)="onLoaded()">
77
<Button text="Go Back(activatedRoute)" (tap)="goBack()"></Button>
88
<Button row="1" text="Close Modal" (tap)="close(rootLayout)"></Button>
99
</GridLayout>

e2e/nested-router-tab-view/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"paths": {
1616
"*": [
1717
"./node_modules/tns-core-modules/*",
18-
"./node_modules/*"
18+
"./node_modules/*",
19+
"./node_modules/nativescript-angular/node_modules/*"
1920
],
2021
"~/*": [
2122
"app/*"

e2e/renderer/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"paths": {
1616
"*": [
1717
"./node_modules/tns-core-modules/*",
18-
"./node_modules/*"
18+
"./node_modules/*",
19+
"./node_modules/nativescript-angular/node_modules/*"
1920
],
2021
"~/*": [
2122
"app/*"

e2e/routable-animations/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"paths": {
1616
"*": [
1717
"./node_modules/tns-core-modules/*",
18-
"./node_modules/*"
18+
"./node_modules/*",
19+
"./node_modules/nativescript-angular/node_modules/*"
1920
],
2021
"~/*": [
2122
"app/*"

e2e/router-tab-view/app/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { enable as traceEnable } from "tns-core-modules/trace";
1010
// addCategories(routerTraceCategory);
1111
traceEnable();
1212

13-
class MyErrorHandler implements ErrorHandler {
13+
export class MyErrorHandler implements ErrorHandler {
1414
handleError(error) {
1515
console.log("### ErrorHandler Error: " + error.toString());
1616
console.log("### ErrorHandler Stack: " + error.stack);

e2e/router-tab-view/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"paths": {
1616
"*": [
1717
"./node_modules/tns-core-modules/*",
18-
"./node_modules/*"
18+
"./node_modules/*",
19+
"./node_modules/nativescript-angular/node_modules/*"
1920
],
2021
"~/*": [
2122
"app/*"

e2e/router/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"paths": {
1616
"*": [
1717
"./node_modules/tns-core-modules/*",
18-
"./node_modules/*"
18+
"./node_modules/*",
19+
"./node_modules/nativescript-angular/node_modules/*"
1920
],
2021
"~/*": [
2122
"app/*"

e2e/single-page/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"paths": {
1616
"*": [
1717
"./node_modules/tns-core-modules/*",
18-
"./node_modules/*"
18+
"./node_modules/*",
19+
"./node_modules/nativescript-angular/node_modules/*"
1920
],
2021
"~/*": [
2122
"app/*"

e2e/tests-app-ng/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"paths": {
1616
"*": [
1717
"./node_modules/tns-core-modules/*",
18-
"./node_modules/*"
18+
"./node_modules/*",
19+
"./node_modules/nativescript-angular/node_modules/*"
1920
],
2021
"~/*": [
2122
"app/*"

ng-sample/app/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ const customPageFactoryProvider = {
126126
},
127127
};
128128

129-
class MyErrorHandler implements ErrorHandler {
129+
export class MyErrorHandler implements ErrorHandler {
130130
handleError(error) {
131131
console.log("### ErrorHandler Error: " + error.toString());
132132
console.log("### ErrorHandler Stack: " + error.stack);

0 commit comments

Comments
 (0)