Skip to content

Commit

Permalink
Address ES2015 versioning comments and breaking changes
Browse files Browse the repository at this point in the history
* Add the switch to ES6/ES2015 to the breaking changes section of the readme
* Add the switch to Axios v1 major version to the breaking changes section of the readme
  • Loading branch information
ferferga authored Dec 4, 2022
1 parent 3d298ec commit 2554eaf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,13 @@ await api.logout();

## Breaking Changes

### v0.8.0

* The library is now fully targeted to ES6/ES2015.
[#341](https://github.com/jellyfin/jellyfin-sdk-typescript/pull/341)
* Axios received a major version upgrade.
[#300](https://github.com/jellyfin/jellyfin-sdk-typescript/pull/300)

### v0.7.0

* Renamed package to @jellyfin/sdk.
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"target": "ES6",
"module": "ES6",
"target": "ES2015",
"module": "ES2015",
"moduleResolution": "Node",
"declaration": true,
"noImplicitAny": true,
Expand Down

0 comments on commit 2554eaf

Please sign in to comment.