This commit is contained in:
Jamie Wong 2018-08-20 08:46:13 -07:00
parent 3210f8fc08
commit 03578ea7a4
2 changed files with 10 additions and 23 deletions

View File

@ -1,16 +1,19 @@
## [Unreleased]
## [0.7.1] - 2018-08-20
### Fixed
* Removed dependency on regl in order to allow speedscope to run in strict content-security-policy environments [#140]
* Fixed text culling bug [#143]
## [0.7.0]
## [0.7.0] - 2018-08-16
### Added
* Added support to import from linux `perf script` [#135]
## [0.6.0]
## [0.6.0] - 2018-08-14
### Added

View File

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