Merge tag '2.8.1'

2.8.1 2.8.1
pull/390/head
Denis Demchenko 4 years ago
commit bdc8355216

@ -1,5 +1,8 @@
# Bowser Changelog
### 2.8.1 (Dec 26, 2019)
- [FIX] Reverted [#382] as it broke build
### 2.8.0 (Dec 26, 2019)
- [ADD] Add polyfills for Array.find & Object.assign [#383]
- [ADD] Export constants with types.d.ts [#382]

8
index.d.ts vendored

@ -22,14 +22,6 @@ declare namespace Bowser {
function parse(UA: string): Parser.ParsedResult;
/**
* Constants exposed via bowser getters
*/
const BROWSER_MAP: Record<string, string>;
const ENGINE_MAP: Record<string, string>;
const OS_MAP: Record<string, string>;
const PLATFORMS_MAP: Record<string, string>;
namespace Parser {
interface Parser {
constructor(UA: string, skipParsing?: boolean): Parser.Parser;

2
package-lock.json generated

@ -1,6 +1,6 @@
{
"name": "bowser",
"version": "2.8.0",
"version": "2.8.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,6 +1,6 @@
{
"name": "bowser",
"version": "2.8.0",
"version": "2.8.1",
"description": "Lightweight browser detector",
"keywords": [
"browser",

@ -74,10 +74,4 @@ class Bowser {
}
}
export {
BROWSER_MAP,
ENGINE_MAP,
OS_MAP,
PLATFORMS_MAP,
} from './constants.js';
export default Bowser;

Loading…
Cancel
Save