Skip to content

Commit

Permalink
Upgrade to Typescript 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mhutchie committed Sep 19, 2020
1 parent 24e0e0a commit 0479f29
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1240,12 +1240,12 @@
"@types/jest": "25.2.3",
"@types/node": "8.10.62",
"@types/vscode": "1.38.0",
"@typescript-eslint/eslint-plugin": "3.7.1",
"@typescript-eslint/parser": "3.7.1",
"eslint": "7.6.0",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"eslint": "7.9.0",
"jest": "25.5.4",
"ts-jest": "25.5.1",
"typescript": "3.7.2",
"typescript": "4.0.2",
"uglify-js": "3.10.0"
}
}
2 changes: 1 addition & 1 deletion src/life-cycle/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function sendEvent(event: LifeCycleEvent) {
}
};

const sendEvent = Object.assign({
const sendEvent: Omit<LifeCycleEvent, 'stage'> & { about: string, stage?: LifeCycleStage } = Object.assign({
about: 'Information about this API is available at: https://api.mhutchie.com/vscode-git-graph/about'
}, event);
delete sendEvent.stage;
Expand Down

0 comments on commit 0479f29

Please sign in to comment.