Skip to content

Commit

Permalink
Remove need to install gulp on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoon committed Feb 4, 2018
1 parent 1ed4647 commit 200aa29
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 12 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ before_install:
sleep 3;
fi

install:
- npm install -g gulp;
- npm install;

script:
- gulp forceprettier
Expand All @@ -46,7 +43,7 @@ script:
echo "Prettier Failed. Run `gulp` or `gulp forceprettier`";
exit 1;
fi
- gulp
- npm run build
- npm test --silent;

before_deploy:
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ gulp.task('tslint', function() {
'!node_modules/**',
'!typings/**',
])
.pipe(tslint({ formatter: 'verbose' }))
.pipe(tslint({ formatter: 'prose' }))
.pipe(tslint.report({ summarizeFailureOutput: true }));
});

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,7 @@
},
"scripts": {
"vscode:prepublish": "gulp compile",
"build": "gulp",
"test": "node ./node_modules/vscode/bin/test",
"postinstall": "node ./node_modules/vscode/bin/install"
},
Expand Down
6 changes: 0 additions & 6 deletions test/tslint.json

This file was deleted.

3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"compilerOptions": {
"allowUnusedLabels": false,
"module": "commonjs",
"target": "es6",
"outDir": "out",
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"suppressImplicitAnyIndexErrors": true,
"lib": [
"es6"
Expand Down

0 comments on commit 200aa29

Please sign in to comment.