Skip to content

Commit

Permalink
Updated demo app for 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexziskind1 committed May 5, 2017
1 parent 8e76341 commit c172c82
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 11 deletions.
4 changes: 2 additions & 2 deletions demo/app/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ var o365InitOptions: tnsOAuthModule.ITnsOAuthOptionsOffice365 = {
};

var facebookInitOptions: tnsOAuthModule.ITnsOAuthOptionsFacebook = {
clientId: '3158457404242024',
clientSecret: '544bae9b9e1e6104d9c684c01a967834',
clientId: '1258457404242046',
clientSecret: 'a24bae9b9e1e6104d9c684c01a96783d',
scope: ['email']
};

Expand Down
19 changes: 11 additions & 8 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,25 @@
"nativescript": {
"id": "org.nativescript.demo",
"tns-ios": {
"version": "2.5.0"
"version": "3.0.0"
},
"tns-android": {
"version": "3.0.0"
}
},
"dependencies": {
"nativescript-oauth": "../",
"nativescript-theme-core": "~1.0.2",
"tns-core-modules": "2.5.1",
"tns-platform-declarations": "2.5.0"
"tns-core-modules": "3.0.0",
"tns-platform-declarations": "3.0.1"
},
"devDependencies": {
"babel-traverse": "6.22.1",
"babel-types": "6.22.0",
"babylon": "6.15.0",
"babel-traverse": "6.24.1",
"babel-types": "6.24.1",
"babylon": "6.17.0",
"lazy": "1.0.11",
"nativescript-dev-android-snapshot": "^0.*.*",
"nativescript-dev-typescript": "~0.3.5",
"typescript": "~2.1.6"
"nativescript-dev-typescript": "~0.4.0",
"typescript": "~2.2.1"
}
}
13 changes: 12 additions & 1 deletion demo/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmitHelpers": true,
"noEmitOnError": true
"noEmitOnError": true,
"lib": [
"es6",
"dom"
],
"baseUrl": ".",
"paths": {
"*": [
"./node_modules/tns-core-modules/*",
"./node_modules/*"
]
}
},
"exclude": [
"node_modules",
Expand Down

0 comments on commit c172c82

Please sign in to comment.