Skip to content

Commit 7cbd0d3

Browse files
Update TypeScript to 2.0
Update all TypeScript related dependencies in order to be able to use TypeScript 2.0
1 parent 2c85c90 commit 7cbd0d3

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

lib/services/analytics-service.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ export class AnalyticsService extends AnalyticsServiceBase implements IAnalytics
1010
$prompter: IPrompter,
1111
$userSettingsService: UserSettings.IUserSettingsService,
1212
$analyticsSettingsService: IAnalyticsSettingsService,
13-
$progressIndicator: IProgressIndicator) {
14-
super($logger, $options, $staticConfig, $errors, $prompter, $userSettingsService, $analyticsSettingsService, $progressIndicator);
13+
$progressIndicator: IProgressIndicator,
14+
$osInfo: IOsInfo) {
15+
super($logger, $options, $staticConfig, $errors, $prompter, $userSettingsService, $analyticsSettingsService, $progressIndicator, $osInfo);
1516
}
1617

1718
protected checkConsentCore(trackFeatureUsage: boolean): IFuture<void> {

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,15 @@
8888
"grunt-contrib-copy": "1.0.0",
8989
"grunt-contrib-watch": "1.0.0",
9090
"grunt-shell": "1.3.0",
91-
"grunt-ts": "5.5.1",
92-
"grunt-tslint": "3.1.0",
91+
"grunt-ts": "6.0.0-beta.3",
92+
"grunt-tslint": "3.3.0",
9393
"istanbul": "0.4.5",
9494
"mocha": "2.5.3",
9595
"mocha-fibers": "https://github.com/NativeScript/mocha-fibers.git",
9696
"mocha-typescript": "^1.0.4",
9797
"should": "7.0.2",
98-
"tslint": "3.11.0",
99-
"typescript": "^1.8.10"
98+
"tslint": "3.15.1",
99+
"typescript": "2.0.7"
100100
},
101101
"license": "Apache-2.0",
102102
"engines": {

0 commit comments

Comments
 (0)