Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jlfwong committed Oct 8, 2018
1 parent 4b292b2 commit 0fe0c45
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 22 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Unreleased

## [1.2.0] - 2018-10-08

### Added

* Add import of v8 heap allocation profile [#170] (by @vmarchaud)

## [1.1.0] - 2018-09-26

### Added
Expand All @@ -24,7 +30,7 @@

* Allow optional CR before LF when probing collapsed stacks files [#154]
* Fix import for Firefox 63 [#156]
* Change time formatting for minutes from 1.50min to 1:30 [#153]
* Change time formatting for minutes from 1.50min to 1:30 [#153] (by @Alex-Diez)

## [1.0.1] - 2018-08-23

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": "1.1.0",
"version": "1.2.0",
"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 @@ -58,17 +51,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 0fe0c45

Please sign in to comment.