Skip to content

Commit

Permalink
fix: support chrome >= 57 in production
Browse files Browse the repository at this point in the history
  • Loading branch information
weareoutman committed Aug 20, 2020
1 parent 366264c commit 33ed47a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ npm start

Follow [official tutorial](https://developer.chrome.com/extensions/getstarted), when loading unpacked extension, choose the `brick-next-devtools/extension` directory.

## Supported Browsers

Supports Chrome >= 57 in production, and last 2 Chrome versions in development.

## Testing

```
Expand Down
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@
"zip": "zip -r extension.zip extension",
"coveralls": "coveralls < .coverage/lcov.info"
},
"browserslist": [
"last 2 Chrome versions"
],
"browserslist": {
"development": [
"last 2 Chrome versions"
],
"production": [
"chrome >= 57"
]
},
"dependencies": {
"@blueprintjs/core": "^3.24.0",
"classnames": "^2.2.6",
Expand Down

0 comments on commit 33ed47a

Please sign in to comment.