Upgrade TypeScript from 3.2.4 to 3.9.2 (#266)

This commit is contained in:
Jamie Wong
2020-05-16 17:02:51 -07:00
committed by GitHub
parent e969178e65
commit 2077a905a9
4 changed files with 19 additions and 11 deletions
+14 -6
View File
@@ -1951,9 +1951,9 @@
"dev": true
},
"@types/node": {
"version": "10.1.4",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.1.4.tgz",
"integrity": "sha512-GpQxofkdlHYxjHad98UUdNoMO7JrmzQZoAaghtNg14Gwg7YkohcrCoJEcEMSgllx4VIZ+mYw7ZHjfaeIagP/rg==",
"version": "14.0.1",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.1.tgz",
"integrity": "sha512-FAYBGwC+W6F9+huFIDtn43cpy7+SzG+atzRiTfdp3inUKL2hXnd4rG8hylJLIh4+hqrQy1P17kvJByE/z825hA==",
"dev": true
},
"@types/pako": {
@@ -9586,6 +9586,14 @@
"@types/long": "^4.0.0",
"@types/node": "^10.1.0",
"long": "^4.0.0"
},
"dependencies": {
"@types/node": {
"version": "10.17.21",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.21.tgz",
"integrity": "sha512-PQKsydPxYxF1DsAFWmunaxd3sOi3iMt6Zmx/tgaagHYmwJ/9cRH91hQkeJZaUGWbvn0K5HlSVEXkn5U/llWPpQ==",
"dev": true
}
}
},
"pseudomap": {
@@ -11809,9 +11817,9 @@
"dev": true
},
"typescript": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-3.2.4.tgz",
"integrity": "sha512-0RNDbSdEokBeEAkgNbxJ+BLwSManFy9TeXz8uW+48j/xhEXv1ePME60olyzw2XzUqUBNAYFeJadIqAgNqIACwg==",
"version": "3.9.2",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.2.tgz",
"integrity": "sha512-q2ktq4n/uLuNNShyayit+DTobV2ApPEo/6so68JaD5ojvc/6GClBipedB9zNWYxRSAlZXAe405Rlijzl6qDiSw==",
"dev": true
},
"typescript-eslint-parser": {
+3 -3
View File
@@ -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",
@@ -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"
},
+1 -1
View File
@@ -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`
+1 -1
View File
@@ -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)