Skip to content

Commit

Permalink
fix: widen @types/sarif dependency to accept both 2.1.1 and 2.1.2 (#78)
Browse files Browse the repository at this point in the history
@types/sarif received a non-breaking update with 2.1.1 -> 2.1.2. This widens the range this library claims support for to include both versions.

It continues to use a strict upper bound rather than a caret version, since the SARIF standard and correspondingly @types/sarif have historically been willing to make breaking changes in patch versions (eg, from 2.1.0 -> 2.1.1).
  • Loading branch information
dbjorge authored Aug 16, 2019
1 parent 9a88e69 commit f280afd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"node": ">= 8"
},
"dependencies": {
"@types/sarif": "2.1.2",
"@types/sarif": ">=2.1.1 <=2.1.2",
"axe-core": "^3.2.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@
resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d"
integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==

"@types/[email protected]":
"@types/sarif@>=2.1.1 <=2.1.2":
version "2.1.2"
resolved "https://registry.yarnpkg.com/@types/sarif/-/sarif-2.1.2.tgz#91d9f9e793fadbba36239f03ec996987b2e25635"
integrity sha512-TELZl5h48KaB6SFZqTuaMEw1hrGuusbBcH+yfMaaHdS2pwDr3RTH4CVN0LyY1kqSiDm9PPvAMx8FJ0LUZreOCQ==
Expand Down

0 comments on commit f280afd

Please sign in to comment.