Skip to content

Commit

Permalink
Bump polyfill-library from 3.89.1 to 3.89.3 (#89)
Browse files Browse the repository at this point in the history
* Bump polyfill-library from 3.89.1 to 3.89.3

Bumps [polyfill-library](https://github.com/financial-times/polyfill-library) from 3.89.1 to 3.89.3.
- [Release notes](https://github.com/financial-times/polyfill-library/releases)
- [Commits](https://github.com/financial-times/polyfill-library/compare/v3.89.1...v3.89.3)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* generate

* v0.3.3

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: romainmenke <[email protected]>
  • Loading branch information
dependabot-preview[bot] and romainmenke authored Apr 20, 2020
1 parent a27c9e8 commit bb260dd
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 26 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"packages": [
"packages/*"
],
"version": "0.3.2",
"version": "0.3.3",
"useWorkspaces": true
}
4 changes: 2 additions & 2 deletions packages/babel-plugin-core-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mrhenry/babel-plugin-core-web",
"version": "0.3.2",
"version": "0.3.3",
"description": "browser feature polyfills as a babel plugin",
"main": "lib/index.js",
"author": "Simon Menke <[email protected]>",
Expand Down Expand Up @@ -28,7 +28,7 @@
"@babel/parser": "^7.9.4",
"@babel/traverse": "^7.9.5",
"@babel/types": "^7.9.5",
"@mrhenry/core-web": "^0.3.2",
"@mrhenry/core-web": "^0.3.3",
"fast-deep-equal": "^3.1.1"
},
"bugs": {
Expand Down
4 changes: 2 additions & 2 deletions packages/core-web-example/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@mrhenry/core-web-example",
"version": "0.3.2",
"version": "0.3.3",
"private": true,
"scripts": {
"build": "babel src -d lib"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.8.6",
"@mrhenry/babel-plugin-core-web": "^0.3.2"
"@mrhenry/babel-plugin-core-web": "^0.3.3"
}
}
4 changes: 2 additions & 2 deletions packages/core-web-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mrhenry/core-web-generator",
"version": "0.3.2",
"version": "0.3.3",
"private": true,
"scripts": {
"build": "node ./generate.js"
Expand All @@ -15,7 +15,7 @@
"fast-deep-equal": "^3.1.1",
"from2-string": "^1.1.0",
"merge2": "^1.2.3",
"polyfill-library": "^3.89.0",
"polyfill-library": "^3.89.3",
"stream-to-string": "^1.2.0"
}
}
4 changes: 2 additions & 2 deletions packages/core-web-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mrhenry/core-web-tests",
"version": "0.3.2",
"version": "0.3.3",
"private": true,
"scripts": {
"build": "webpack",
Expand All @@ -9,7 +9,7 @@
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.9.5",
"@mrhenry/babel-plugin-core-web": "^0.3.2",
"@mrhenry/babel-plugin-core-web": "^0.3.3",
"@types/qunit": "2.9.x",
"babel-loader": "^8.0.6",
"browserstack-runner": "^0.9.1",
Expand Down
9 changes: 5 additions & 4 deletions packages/core-web/modules/matchMedia.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,21 +62,22 @@ if (!("matchMedia"in self&&"MediaQueryList"in self
function MediaQueryList() {
this.matches = false;
this.media = 'invalid';
this.listeners = [];
}

MediaQueryList.prototype.addListener = function addListener(listener) {
var listenerIndex = this.addListener.listeners.indexOf(listener);
var listenerIndex = this.listeners.indexOf(listener);

if (listenerIndex === -1) {
this.addListener.listeners.push(listener);
this.listeners.push(listener);
}
};

MediaQueryList.prototype.removeListener = function removeListener(listener) {
var listenerIndex = this.addListener.listeners.indexOf(listener);
var listenerIndex = this.listeners.indexOf(listener);

if (listenerIndex >= 0) {
this.addListener.listeners.splice(listenerIndex, 1);
this.listeners.splice(listenerIndex, 1);
}
};

Expand Down
2 changes: 1 addition & 1 deletion packages/core-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mrhenry/core-web",
"version": "0.3.2",
"version": "0.3.3",
"description": "browser feature polyfills as a babel plugin",
"main": "lib/index.js",
"author": "Simon Menke <[email protected]>",
Expand Down
17 changes: 5 additions & 12 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5456,20 +5456,13 @@ mkdirp@*:
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.3.tgz#4cf2e30ad45959dddea53ad97d518b6c8205e1ea"
integrity sha512-6uCP4Qc0sWsgMLy1EOqqS/3rjDHOEnsStVr/4vtAIK2Y5i2kA7lFFejYrpIyiN9w0pYf4ckeCYT9f1r1P9KX5g==

mkdirp@^0.5.0:
mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3:
version "0.5.5"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
dependencies:
minimist "^1.2.5"

mkdirp@^0.5.1, mkdirp@^0.5.3:
version "0.5.3"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.3.tgz#5a514b7179259287952881e94410ec5465659f8c"
integrity sha512-P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg==
dependencies:
minimist "^1.2.5"

mnemonist@^0.32.0:
version "0.32.0"
resolved "https://registry.yarnpkg.com/mnemonist/-/mnemonist-0.32.0.tgz#2c6d1dd12cb69ca2ed79a636ba9ffe5a6e9f2573"
Expand Down Expand Up @@ -6206,10 +6199,10 @@ pkg-up@^3.1.0:
dependencies:
find-up "^3.0.0"

polyfill-library@^3.89.0:
version "3.89.1"
resolved "https://registry.yarnpkg.com/polyfill-library/-/polyfill-library-3.89.1.tgz#6adc29af6e7767f83b28a6ec50e7e85cbdbf1cd7"
integrity sha512-RddEEK7jDemku+YFfEhIR/m/bOw06hC7SO8F4fwUluTJ7eQz36os3OZOFUEJ2hzgKzEDBHYW8PoCKOKwN1IaRw==
polyfill-library@^3.89.3:
version "3.89.3"
resolved "https://registry.yarnpkg.com/polyfill-library/-/polyfill-library-3.89.3.tgz#d6315ade51484177b44fb8b5b180882127819222"
integrity sha512-7JhUT0xWXCham4uxHovTDU99K+TF9NbXS8zTHy2dUZXbc+G9iqaQi0lEj/7Lm6pWPO4lWA3ip3ud7ucjF9qXxw==
dependencies:
"@financial-times/polyfill-useragent-normaliser" "^1.7.0"
"@formatjs/intl-pluralrules" "^1.1.2"
Expand Down

0 comments on commit bb260dd

Please sign in to comment.