Skip to content

Commit a0107b8

Browse files
committed
build fix
1 parent f884428 commit a0107b8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

demo/app/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import application = require("application");
22
application.mainModule = "main-page";
33

44
// Remove this in the AppBuilder templates
5-
application.cssFile = "./app.css"
5+
application.cssFile = "./app.css";
66

77
application.start();

demo/app/main-page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function gridViewItemTap(args: gridView.GridItemEventData) {
2424
}
2525

2626
export function gridViewItemLoading(args: gridView.GridItemEventData) {
27-
console.log("item loading " + args.index.toString())
27+
console.log("item loading " + args.index.toString());
2828
}
2929

3030
export function gridViewLoadMoreItems(args: observable.EventData) {

gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
typeScriptSrc: [
44
"**/*.ts",
55
"!node_modules/**/*.*",
6-
"!sample/**/*.*",
6+
"!demo/**/*.*",
77
"!bin/**/*.*"
88
],
99
typeScriptDeclarations:[
1010
"**/*.d.ts",
1111
"!references.d.ts",
12-
"!sample/**/*.*",
12+
"!demo/**/*.*",
1313
"!node_modules/**/*.*",
1414
"!bin/**/*.*"
1515
],

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"exclude": [
1515
"node_modules",
16-
"sample",
16+
"demo",
1717
"bin"
1818
]
1919
}

0 commit comments

Comments
 (0)