This commit is contained in:
Jonathan Chan 2019-10-10 18:26:54 -07:00
parent b15a08b3ff
commit c3074b7343
3 changed files with 2706 additions and 2598 deletions

View File

@ -1,5 +1,11 @@
## Unreleased ## Unreleased
## [1.5.2] - 2019-10-10
### Fixed
* Fix emscripten remapping when symbols are hex-escaped, like `a\20b` [#233] (by @jyc)
## [1.5.1] - 2019-06-06 ## [1.5.1] - 2019-06-06
### Fixed ### Fixed

5272
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "speedscope", "name": "speedscope",
"version": "1.5.1", "version": "1.5.2",
"description": "", "description": "",
"repository": "jlfwong/speedscope", "repository": "jlfwong/speedscope",
"main": "index.js", "main": "index.js",
@ -17,8 +17,15 @@
"test": "tsc --noEmit && npm run lint && npm run coverage", "test": "tsc --noEmit && npm run lint && npm run coverage",
"serve": "parcel assets/index.html --open --no-autoinstall" "serve": "parcel assets/index.html --open --no-autoinstall"
}, },
"files": ["bin/cli.js", "dist/release/**", "!*.map"], "files": [
"browserslist": ["last 2 Chrome versions", "last 2 Firefox versions"], "bin/cli.js",
"dist/release/**",
"!*.map"
],
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions"
],
"author": "", "author": "",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
@ -51,8 +58,17 @@
"^.+\\.tsx?$": "ts-jest" "^.+\\.tsx?$": "ts-jest"
}, },
"testRegex": "\\.test\\.tsx?$", "testRegex": "\\.test\\.tsx?$",
"collectCoverageFrom": ["**/*.{ts,tsx}", "!**/*.d.{ts,tsx}"], "collectCoverageFrom": [
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"] "**/*.{ts,tsx}",
"!**/*.d.{ts,tsx}"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}, },
"dependencies": { "dependencies": {
"opn": "5.3.0" "opn": "5.3.0"