Skip to content
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.

Commit

Permalink
Update dependencies (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
KalitaAlexey authored Feb 22, 2017
1 parent 8401732 commit 2d73361
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 35 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@ language: node_js
node_js:
- "5.0"

before_script:
- npm install -g gulp

script:
- gulp
- node node_modules/gulp/bin/gulp.js
10 changes: 6 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ var files = {
};

gulp.task('compile', shell.task([
'tsc -p .'
'node ./node_modules/typescript/bin/tsc -p .'
]));

gulp.task('tslint', function() {
gulp.task('tslint', function () {
return gulp.src([files.src, files.test, '!test/index.ts'])
.pipe(tslint())
.pipe(tslint.report('verbose'));
.pipe(tslint({
formatter: 'verbose'
}))
.pipe(tslint.report());
});

gulp.task('default', ['compile', 'tslint']);
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -476,22 +476,22 @@
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-shell": "^0.5.1",
"gulp-tslint": "^4.1.0",
"mocha": "^3.2.0",
"tslint": "^3.1.1",
"typescript": "^2.1.6",
"vscode": "^1.0.3",
"@types/node": "^6.0.52",
"@types/mocha": "^2.2.33"
"gulp": "3.9.1",
"gulp-shell": "0.5.2",
"gulp-tslint": "7.1.0",
"mocha": "3.2.0",
"tslint": "4.4.2",
"typescript": "2.1.6",
"vscode": "1.0.3",
"@types/node": "7.0.5",
"@types/mocha": "2.2.39"
},
"dependencies": {
"expand-tilde": "^2.0.2",
"tmp": "0.0.28",
"tree-kill": "^1.0.0",
"find-up": "^1.1.2",
"elegant-spinner": "^1.0.1",
"vscode-languageclient": "^3.0.3"
"expand-tilde": "2.0.2",
"tmp": "0.0.31",
"tree-kill": "1.1.0",
"find-up": "2.1.0",
"elegant-spinner": "1.0.1",
"vscode-languageclient": "3.0.4"
}
}
}
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export async function activate(ctx: ExtensionContext): Promise<void> {
ctx,
configurationManager,
currentWorkingDirectoryManager,
logger.createChildLogger('Cargo Manager: '),
logger.createChildLogger('Cargo Manager: ')
);

if (rlsConfiguration) {
Expand Down
27 changes: 17 additions & 10 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,28 @@
"rules": {
"ban": false,
"class-name": true,
"comment-format": [true, "check-space"],
"comment-format": [
true,
"check-space"
],
"curly": true,
"eofline": true,
"linebreak-style": [true, "LF"],
"linebreak-style": [
true,
"LF"
],
"forin": true,
"indent": [true, "spaces"],
"indent": [
true,
"spaces"
],
"interface-name": false,
"jsdoc-format": true,
"label-position": true,
"label-undefined": true,
"max-line-length": [true, 140],
"max-line-length": [
true,
140
],
"member-access": true,
"member-ordering": [
false,
Expand All @@ -27,9 +38,7 @@
"no-consecutive-blank-lines": false,
"no-console": true,
"no-construct": true,
"no-constructor-vars": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
Expand All @@ -40,9 +49,7 @@
"no-string-literal": false,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unreachable": true,
"no-unused-expression": true,
"no-unused-variable": [true, "check-parameters"],
"no-use-before-declare": true,
"no-var-keyword": true,
"no-var-requires": true,
Expand Down Expand Up @@ -102,4 +109,4 @@
"check-type"
]
}
}
}

0 comments on commit 2d73361

Please sign in to comment.