Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Armodin committed Apr 17, 2017
1 parent c133350 commit 70a8d43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ gulp.task('lint', function () {
.pipe(eslint(
{
"parserOptions": {
"ecmaVersion": 6,
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
Expand All @@ -24,7 +24,7 @@ gulp.task('lint', function () {
"no-invalid-this" : 2,
"no-multi-spaces" : 2,
"no-unmodified-loop-condition" : 2,
"no-unused-expressions" : 2,
"no-unused-expressions" : 1,
"no-unused-labels" : 2,
"no-shadow" : 2,
"no-unused-vars" : 1,
Expand Down
4 changes: 2 additions & 2 deletions lib/release_bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@ class ReleaseBot {
try {
const result = await self.findBundleInResults(searchResults, bundleToSearch);
resolve( new SearchResult(result) );
} catch (error) {
reject(error);
} catch (searchError) {
reject(searchError);
}
} else {
resolve([searchResults, appObject]);
Expand Down

0 comments on commit 70a8d43

Please sign in to comment.