Skip to content

Updated dependencies #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
{ "presets": ["es2015"] }
{
"presets": [
"@babel/env",
"@babel/typescript"
]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ build/
npm-debug*
sauce_connect.log
dist/
local.log
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ npm install browser-headers
```

## Browser Support
This library is tested against Chrome, Safari, Firefox, Opera, Edge, IE 10 and IE 9.
This library is tested against Chrome, Safari, Firefox, Opera, Edge and IE 10. It has been tested to support IE 9, but automated testing is no longer included due to compatibility.

## API

Expand Down
6 changes: 3 additions & 3 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ module.exports = function(config) {
'Chrome_48': browser('chrome', '48','OS X', 'Yosemite'),
'Firefox_57': browser('firefox', '57','OS X', 'Sierra'),
'Opera_40': browser('opera', '40', 'Windows', '7'),
'Edge': browser('edge', '14','Windows', '10'),
'IE_10': browser('ie', '10','Windows', '7'),
'IE_9': browser('ie', '9','Windows', '7')
'Edge_81': browser('edge', '81','Windows', '10'),
'Edge_14': browser('edge', '14','Windows', '10'),
'IE_10': browser('ie', '10','Windows', '7')
};

const useBrowserStack = process.env.BROWSER_STACK_USERNAME !== undefined;
Expand Down
Loading