Skip to content

Commit

Permalink
Upgrade TypeScript from 3.2.4 to 3.9.2 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlfwong committed May 17, 2020
1 parent e969178 commit 2077a90
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
20 changes: 14 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"devDependencies": {
"@types/jest": "22.2.3",
"@types/jszip": "3.1.4",
"@types/node": "10.1.4",
"@types/node": "14.0.1",
"@types/pako": "1.0.0",
"aphrodite": "2.1.0",
"coveralls": "3.0.1",
Expand All @@ -47,9 +47,9 @@
"prettier": "2.0.4",
"protobufjs": "6.8.8",
"quicktype": "15.0.209",
"redux": "^4.0.0",
"redux": "4.0.0",
"ts-jest": "24.3.0",
"typescript": "3.2.4",
"typescript": "3.9.2",
"typescript-eslint-parser": "17.0.1",
"uglify-es": "3.2.2"
},
Expand Down
2 changes: 1 addition & 1 deletion src/views/application.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,8 @@ export class Application extends StatelessComponent<ApplicationProps> {

if (this.props.hashParams.title) {
profileGroup = {
name: this.props.hashParams.title,
...profileGroup,
name: this.props.hashParams.title,
}
}
document.title = `${profileGroup.name} - speedscope`
Expand Down
2 changes: 1 addition & 1 deletion src/views/flamechart-detail-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class StackTraceView extends Component<StackTraceViewProps, {}> {
row.push(<ColorChit color={this.props.getFrameColor(frame)} />)

if (rows.length) {
row.push(<span className={css(style.stackFileLine)}>> </span>)
row.push(<span className={css(style.stackFileLine)}>&gt; </span>)
}
row.push(frame.name)

Expand Down

0 comments on commit 2077a90

Please sign in to comment.