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] ## [Unreleased]
## [0.7.1] - 2018-08-20
### Fixed ### Fixed
* Removed dependency on regl in order to allow speedscope to run in strict content-security-policy environments [#140] * 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
* Added support to import from linux `perf script` [#135] * Added support to import from linux `perf script` [#135]
## [0.6.0] ## [0.6.0] - 2018-08-14
### Added ### Added

View File

@ -1,6 +1,6 @@
{ {
"name": "speedscope", "name": "speedscope",
"version": "0.7.0", "version": "0.7.1",
"description": "", "description": "",
"repository": "jlfwong/speedscope", "repository": "jlfwong/speedscope",
"main": "index.js", "main": "index.js",
@ -17,15 +17,8 @@
"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": [ "files": ["bin/cli.js", "dist/release/**", "!*.map"],
"bin/cli.js", "browserslist": ["last 2 Chrome versions", "last 2 Firefox versions"],
"dist/release/**",
"!*.map"
],
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions"
],
"author": "", "author": "",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
@ -57,17 +50,8 @@
"^.+\\.tsx?$": "ts-jest" "^.+\\.tsx?$": "ts-jest"
}, },
"testRegex": "\\.test\\.tsx?$", "testRegex": "\\.test\\.tsx?$",
"collectCoverageFrom": [ "collectCoverageFrom": ["**/*.{ts,tsx}", "!**/*.d.{ts,tsx}"],
"**/*.{ts,tsx}", "moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"]
"!**/*.d.{ts,tsx}"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}, },
"dependencies": { "dependencies": {
"opn": "5.3.0" "opn": "5.3.0"