Skip to content

Commit 100957a

Browse files
committed
Updated to latest deps
ToddThomson/tsproject#103
1 parent c4e4b0e commit 100957a

File tree

5 files changed

+158
-167
lines changed

5 files changed

+158
-167
lines changed

package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626
"type": "git"
2727
},
2828
"devDependencies": {
29-
"@types/angular": "1.6.14",
29+
"@types/angular": "1.6.17",
3030
"@types/angular-mocks": "1.5.9",
3131
"@types/assertion-error": "1.0.30",
32-
"@types/chai": "3.5.0",
33-
"@types/jquery": "2.0.41",
34-
"@types/mocha": "2.2.40",
32+
"@types/chai": "3.5.2",
33+
"@types/jquery": "2.0.43",
34+
"@types/mocha": "2.2.41",
3535
"@types/mock-fs": "3.6.30",
36-
"@types/node": "7.0.12",
37-
"@types/sinon": "2.1.2",
36+
"@types/node": "7.0.18",
37+
"@types/sinon": "2.2.1",
3838
"@types/stack-trace": "0.0.28",
3939
"chai": "3.5.0",
4040
"del": "2.2.2",
@@ -45,27 +45,27 @@
4545
"gulp-concat": "2.6.1",
4646
"gulp-exec": "2.1.3",
4747
"gulp-load-plugins": "1.5.0",
48-
"gulp-mocha": "4.3.0",
48+
"gulp-mocha": "4.3.1",
4949
"gulp-mocha-phantomjs": "0.12.1",
5050
"gulp-replace": "0.5.4",
5151
"gulp-sourcemaps": "2.6.0",
5252
"gulp-tslint": "8.0.0",
5353
"gulp-uglify": "2.1.2",
5454
"gulp-wrap-umd": "0.2.1",
5555
"jshint": "2.9.4",
56-
"mock-fs": "4.2.0",
56+
"mock-fs": "4.3.0",
5757
"path": "0.12.7",
5858
"requirejs": "2.3.3",
5959
"rewire": "2.5.2",
6060
"rimraf": "2.6.1",
6161
"run-sequence": "1.2.2",
62-
"sinon": "2.1.0",
63-
"source-map-support": "0.4.14",
62+
"sinon": "2.2.0",
63+
"source-map-support": "0.4.15",
6464
"systemjs": "0.20.12",
6565
"tracekit": "0.4.4",
66-
"tslint": "5.1.0",
67-
"tsproject": "2.0.2",
68-
"typescript": "2.2.2",
66+
"tslint": "5.2.0",
67+
"tsproject": "2.1.1",
68+
"typescript": "2.3.2",
6969
"typescript-formatter": "5.1.3"
7070
},
7171
"dependencies": {

src/Utils-spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ describe('Utils', () => {
5757
line_number: 22,
5858
column: 10
5959
}]
60-
}, '@submission_method': 'onerror'
60+
},
61+
'@submission_method': 'onerror'
6162
},
6263
tags: []
6364
};

src/configuration/SettingsManager.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ export class SettingsManager {
8484
delete config.settings[key];
8585
}
8686

87-
const newSettings = {
87+
const newSettings: ISettingsWithVersion = {
8888
version: response.settingsVersion,
8989
settings: response.settings
90-
} as ISettingsWithVersion;
90+
};
9191

9292
config.storage.settings.save(newSettings);
9393

src/services/NodeModuleCollector.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ export class NodeModuleCollector implements IModuleCollector {
6464

6565
Object.keys(items).forEach((key) => {
6666
const item = items[key];
67-
const theModule = {
67+
const theModule: IModule = {
6868
module_id: id++,
6969
name: key,
7070
version: item.version
71-
} as IModule;
71+
};
7272

7373
this.installedModules[key] = theModule;
7474
});

0 commit comments

Comments
 (0)