Merge pull request #3153 from jellyfin/dependabot/npm_and_yarn/screenfull-6.0.0

Bump screenfull from 5.1.0 to 6.0.0
This commit is contained in:
Bill Thornton 2021-11-10 16:47:20 -05:00 committed by GitHub
commit 15439114ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

6
package-lock.json generated
View File

@ -12056,9 +12056,9 @@
} }
}, },
"screenfull": { "screenfull": {
"version": "5.1.0", "version": "6.0.0",
"resolved": "https://registry.npmjs.org/screenfull/-/screenfull-5.1.0.tgz", "resolved": "https://registry.npmjs.org/screenfull/-/screenfull-6.0.0.tgz",
"integrity": "sha512-dYaNuOdzr+kc6J6CFcBrzkLCfyGcMg+gWkJ8us93IQ7y1cevhQAugFsaCdMHb6lw8KV3xPzSxzH7zM1dQap9mA==" "integrity": "sha512-LGY0nhNQkC4FX4DT4pZdJ5cZH5EOz9Gfh9KcVMl779pS677k4IV1Wv7sY/CwC9VKFT21fYgCh7zkTVVefi5XKA=="
}, },
"select-hose": { "select-hose": {
"version": "2.0.0", "version": "2.0.0",

View File

@ -90,7 +90,7 @@
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2", "react-dom": "^17.0.2",
"resize-observer-polyfill": "^1.5.1", "resize-observer-polyfill": "^1.5.1",
"screenfull": "^5.1.0", "screenfull": "^6.0.0",
"sortablejs": "^1.14.0", "sortablejs": "^1.14.0",
"swiper": "^6.8.4", "swiper": "^6.8.4",
"webcomponents.js": "^0.7.24", "webcomponents.js": "^0.7.24",

View File

@ -8,7 +8,7 @@ import * as userSettings from '../../scripts/settings/userSettings';
import globalize from '../../scripts/globalize'; import globalize from '../../scripts/globalize';
import loading from '../loading/loading'; import loading from '../loading/loading';
import { appHost } from '../apphost'; import { appHost } from '../apphost';
import * as Screenfull from 'screenfull'; import Screenfull from 'screenfull';
import ServerConnections from '../ServerConnections'; import ServerConnections from '../ServerConnections';
import alert from '../alert'; import alert from '../alert';

View File

@ -5,7 +5,7 @@ import loading from '../../components/loading/loading';
import keyboardnavigation from '../../scripts/keyboardNavigation'; import keyboardnavigation from '../../scripts/keyboardNavigation';
import dialogHelper from '../../components/dialogHelper/dialogHelper'; import dialogHelper from '../../components/dialogHelper/dialogHelper';
import ServerConnections from '../../components/ServerConnections'; import ServerConnections from '../../components/ServerConnections';
import * as Screenfull from 'screenfull'; import Screenfull from 'screenfull';
import TableOfContents from './tableOfContents'; import TableOfContents from './tableOfContents';
import dom from '../../scripts/dom'; import dom from '../../scripts/dom';
import { translateHtml } from '../../scripts/globalize'; import { translateHtml } from '../../scripts/globalize';

View File

@ -96,7 +96,7 @@ module.exports = {
}, },
{ {
test: /\.(js|jsx)$/, test: /\.(js|jsx)$/,
exclude: /node_modules[\\/](?!@uupaa[\\/]dynamic-import-polyfill|blurhash|date-fns|epubjs|flv.js|libarchive.js|marked)/, exclude: /node_modules[\\/](?!@uupaa[\\/]dynamic-import-polyfill|blurhash|date-fns|epubjs|flv.js|libarchive.js|marked|screenfull)/,
use: [{ use: [{
loader: 'babel-loader' loader: 'babel-loader'
}] }]