1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #2742 from thornbill/update-dependencies

Update dependencies
This commit is contained in:
Bill Thornton 2021-06-15 09:45:14 -04:00 committed by GitHub
commit 6fc729f593
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 1997 additions and 1083 deletions

3033
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -5,7 +5,7 @@
"repository": "https://github.com/jellyfin/jellyfin-web",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.5",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
@ -14,14 +14,14 @@
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@uupaa/dynamic-import-polyfill": "^1.0.2",
"autoprefixer": "^9.8.6",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"babel-plugin-dynamic-import-polyfill": "^1.0.0",
"clean-webpack-plugin": "^3.0.0",
"confusing-browser-globals": "^1.0.10",
"copy-webpack-plugin": "^8.1.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"cssnano": "^4.1.10",
"cssnano": "^5.0.6",
"eslint": "^7.28.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-eslint-comments": "^3.2.0",
@ -30,11 +30,12 @@
"eslint-plugin-react": "^7.24.0",
"expose-loader": "^3.0.0",
"file-loader": "^6.2.0",
"html-loader": "^1.1.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"postcss-loader": "^3.0.0",
"postcss": "^8.3.4",
"postcss-loader": "^6.1.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.32.12",
"sass": "^1.35.0",
"sass-loader": "^12.1.0",
"source-map-loader": "^3.0.0",
"style-loader": "^2.0.0",
@ -43,10 +44,10 @@
"stylelint-no-browser-hacks": "^1.2.1",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"webpack": "^5.38.1",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.2.2",
"webpack-merge": "^5.8.0",
"workbox-webpack-plugin": "^6.1.5",
"worker-plugin": "^5.0.1"
},
@ -71,7 +72,7 @@
"jquery": "^3.5.1",
"jstree": "^3.3.11",
"libarchive.js": "^1.3.0",
"libass-wasm": "https://github.com/jellyfin/JavascriptSubtitlesOctopus#4.0.0-jf-smarttv",
"libass-wasm": "git+https://github.com/jellyfin/JavascriptSubtitlesOctopus.git#4.0.0-jf-smarttv",
"lodash-es": "^4.17.21",
"material-design-icons-iconfont": "^6.1.0",
"native-promise-only": "^0.8.0-a",
@ -83,7 +84,7 @@
"resize-observer-polyfill": "^1.5.1",
"screenfull": "^5.1.0",
"sortablejs": "^1.13.0",
"swiper": "^6.5.9",
"swiper": "^6.7.0",
"webcomponents.js": "^0.7.24",
"whatwg-fetch": "^3.6.2",
"workbox-core": "^5.1.4",

View file

@ -41,7 +41,7 @@
<!-- iPhone Xs -->
<link href="assets/splash/iphonexsmax_splash.png" media="screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" rel="apple-touch-startup-image" />
<link href="assets/splash/iphonexsmax_splashl.png" media="screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" rel="apple-touch-startup-image" />
<link href="assets/splash/iphonexsmax_splash_l.png" media="screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" rel="apple-touch-startup-image" />
<!-- iPad -->
<link href="assets/splash/ipad_splash.png" media="screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" rel="apple-touch-startup-image" />

View file

@ -113,8 +113,8 @@ module.exports = {
{
loader: 'postcss-loader',
options: {
config: {
path: __dirname
postcssOptions: {
config: path.resolve(__dirname, 'postcss.config.js')
}
}
},
@ -129,8 +129,8 @@ module.exports = {
{
loader: 'postcss-loader',
options: {
config: {
path: __dirname
postcssOptions: {
config: path.resolve(__dirname, 'postcss.config.js')
}
}
}

View file

@ -1,6 +1,6 @@
const path = require('path');
const common = require('./webpack.common');
const merge = require('webpack-merge');
const { merge } = require('webpack-merge');
module.exports = merge(common, {
// In order for live reload to work we must use "web" as the target not "browserlist"

View file

@ -1,6 +1,6 @@
const path = require('path');
const common = require('./webpack.common');
const merge = require('webpack-merge');
const { merge } = require('webpack-merge');
const WorkboxPlugin = require('workbox-webpack-plugin');
module.exports = merge(common, {