Skip to content

Commit

Permalink
build: 8.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion committed Apr 28, 2022
1 parent 1cdb0bf commit b3cdd3e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 8.0.0 (2022-04-28)

> **BREAKING CHANGE**
>
> This library is now written in TypeScript and as a result the main export dist is now contained within a `default` object. If you load it into your codebase with `import` you don't need to do anything, but if you're using `require()` you'll need to do `require('fetch-har').default`.
* feat: adding test for common mocking libraries (#266) ([1cdb0bf](https://github.com/readmeio/fetch-har/commit/1cdb0bf)), closes [#266](https://github.com/readmeio/fetch-har/issues/266)
* feat: rewriting the library in typescript, adding support for node 18 (#265) ([209cb20](https://github.com/readmeio/fetch-har/commit/209cb20)), closes [#265](https://github.com/readmeio/fetch-har/issues/265)



## 7.0.0 (2022-04-26)

> **BREAKING CHANGE**
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fetch-har",
"version": "7.0.0",
"version": "8.0.0",
"description": "Make a fetch request from a HAR definition",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -18,8 +18,7 @@
"test:browser": "karma start --single-run",
"test:browser:chrome": "karma start --browsers=Chrome --single-run=false",
"test:browser:debug": "karma start --single-run=false",
"test": "nyc mocha \"test/**/*.test.ts\"",
"test:only": "nyc mocha \"test/**/*.test.ts\""
"test": "nyc mocha \"test/**/*.test.ts\""
},
"repository": {
"type": "git",
Expand Down

0 comments on commit b3cdd3e

Please sign in to comment.