Skip to content

Commit

Permalink
0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Wong committed Aug 20, 2018
1 parent 3210f8f commit 03578ea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 23 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
26 changes: 5 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "speedscope",
"version": "0.7.0",
"version": "0.7.1",
"description": "",
"repository": "jlfwong/speedscope",
"main": "index.js",
Expand All @@ -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": {
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 03578ea

Please sign in to comment.