mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2024-08-14 23:57:27 +00:00 
			
		
		
		
	Bump eslint-plugin-vue from 7.20.0 to 8.3.0 (#722)
* Bump eslint-plugin-vue from 7.20.0 to 8.3.0 Bumps [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) from 7.20.0 to 8.3.0. - [Release notes](https://github.com/vuejs/eslint-plugin-vue/releases) - [Commits](https://github.com/vuejs/eslint-plugin-vue/compare/v7.20.0...v8.3.0) --- updated-dependencies: - dependency-name: eslint-plugin-vue dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Refractor component names. For vue/multi-word-component-names Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: FireMasterK <20838718+FireMasterK@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									fc4978ec03
								
							
						
					
					
						commit
						5d8ae14db7
					
				
					 11 changed files with 68 additions and 34 deletions
				
			
		| 
						 | 
				
			
			@ -33,7 +33,7 @@
 | 
			
		|||
        "eslint": "^7.32.0",
 | 
			
		||||
        "eslint-config-prettier": "^8.3.0",
 | 
			
		||||
        "eslint-plugin-prettier": "^4.0.0",
 | 
			
		||||
        "eslint-plugin-vue": "^7.20.0",
 | 
			
		||||
        "eslint-plugin-vue": "^8.3.0",
 | 
			
		||||
        "prettier": "^2.5.1",
 | 
			
		||||
        "vite": "^2.7.9",
 | 
			
		||||
        "vite-plugin-eslint": "^1.3.0",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,6 @@
 | 
			
		|||
<template>
 | 
			
		||||
    <div class="w-full min-h-screen px-1vw reset" :class="[theme]">
 | 
			
		||||
        <Navigation />
 | 
			
		||||
        <NavBar />
 | 
			
		||||
        <router-view v-slot="{ Component }">
 | 
			
		||||
            <keep-alive :max="5">
 | 
			
		||||
                <component :is="Component" :key="$route.fullPath" />
 | 
			
		||||
| 
						 | 
				
			
			@ -20,10 +20,10 @@
 | 
			
		|||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import Navigation from "@/components/Navigation.vue";
 | 
			
		||||
import NavBar from "@/components/NavBar.vue";
 | 
			
		||||
export default {
 | 
			
		||||
    components: {
 | 
			
		||||
        Navigation,
 | 
			
		||||
        NavBar,
 | 
			
		||||
    },
 | 
			
		||||
    mounted() {
 | 
			
		||||
        if (window.location.pathname === "/" || window.location.pathname.length == 0)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -43,7 +43,7 @@
 | 
			
		|||
            </template>
 | 
			
		||||
            <div v-show="showingReplies" v-if="replies" class="replies">
 | 
			
		||||
                <div v-for="reply in replies" :key="reply.commentId" class="w-full">
 | 
			
		||||
                    <Comment :comment="reply" :uploader="uploader" :video-id="videoId" />
 | 
			
		||||
                    <CommentItem :comment="reply" :uploader="uploader" :video-id="videoId" />
 | 
			
		||||
                </div>
 | 
			
		||||
                <div v-if="nextpage" @click="loadReplies">
 | 
			
		||||
                    <a v-t="'actions.load_more_replies'" />
 | 
			
		||||
| 
						 | 
				
			
			@ -1,6 +1,6 @@
 | 
			
		|||
<template>
 | 
			
		||||
    <div v-if="video && isEmbed" class="absolute top-0 left-0 h-full w-full z-50">
 | 
			
		||||
        <Player
 | 
			
		||||
        <VideoPlayer
 | 
			
		||||
            ref="videoPlayer"
 | 
			
		||||
            :video="video"
 | 
			
		||||
            :sponsors="sponsors"
 | 
			
		||||
| 
						 | 
				
			
			@ -14,7 +14,7 @@
 | 
			
		|||
        <ErrorHandler v-if="video && video.error" :message="video.message" :error="video.error" />
 | 
			
		||||
 | 
			
		||||
        <div v-show="!video.error">
 | 
			
		||||
            <Player
 | 
			
		||||
            <VideoPlayer
 | 
			
		||||
                ref="videoPlayer"
 | 
			
		||||
                :video="video"
 | 
			
		||||
                :sponsors="sponsors"
 | 
			
		||||
| 
						 | 
				
			
			@ -108,7 +108,7 @@
 | 
			
		|||
 | 
			
		||||
        <div class="grid xl:grid-cols-5 sm:grid-cols-4 grid-cols-1">
 | 
			
		||||
            <div v-if="comments" ref="comments" class="xl:col-span-4 sm:col-span-3">
 | 
			
		||||
                <Comment
 | 
			
		||||
                <CommentItem
 | 
			
		||||
                    v-for="comment in comments.comments"
 | 
			
		||||
                    :key="comment.commentId"
 | 
			
		||||
                    :comment="comment"
 | 
			
		||||
| 
						 | 
				
			
			@ -140,19 +140,19 @@
 | 
			
		|||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import Player from "@/components/Player.vue";
 | 
			
		||||
import VideoPlayer from "@/components/VideoPlayer.vue";
 | 
			
		||||
import VideoItem from "@/components/VideoItem.vue";
 | 
			
		||||
import ErrorHandler from "@/components/ErrorHandler.vue";
 | 
			
		||||
import Comment from "@/components/Comment.vue";
 | 
			
		||||
import CommentItem from "@/components/CommentItem.vue";
 | 
			
		||||
import Chapters from "@/components/Chapters.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
    name: "App",
 | 
			
		||||
    components: {
 | 
			
		||||
        Player,
 | 
			
		||||
        VideoPlayer,
 | 
			
		||||
        VideoItem,
 | 
			
		||||
        ErrorHandler,
 | 
			
		||||
        Comment,
 | 
			
		||||
        CommentItem,
 | 
			
		||||
        Chapters,
 | 
			
		||||
    },
 | 
			
		||||
    data() {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -9,7 +9,7 @@ const routes = [
 | 
			
		|||
    {
 | 
			
		||||
        path: "/preferences",
 | 
			
		||||
        name: "Preferences",
 | 
			
		||||
        component: () => import("../components/Preferences.vue"),
 | 
			
		||||
        component: () => import("../components/PreferencesPage.vue"),
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
        path: "/results",
 | 
			
		||||
| 
						 | 
				
			
			@ -19,7 +19,7 @@ const routes = [
 | 
			
		|||
    {
 | 
			
		||||
        path: "/playlist",
 | 
			
		||||
        name: "Playlist",
 | 
			
		||||
        component: () => import("../components/Playlist.vue"),
 | 
			
		||||
        component: () => import("../components/PlaylistPage.vue"),
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
        path: "/:path(v|w|embed|shorts|watch)/:v?",
 | 
			
		||||
| 
						 | 
				
			
			@ -29,7 +29,7 @@ const routes = [
 | 
			
		|||
    {
 | 
			
		||||
        path: "/:path(channel|user|c)/:channelId/:videos?",
 | 
			
		||||
        name: "Channel",
 | 
			
		||||
        component: () => import("../components/Channel.vue"),
 | 
			
		||||
        component: () => import("../components/ChannelPage.vue"),
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
        path: "/login",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										72
									
								
								yarn.lock
									
										
									
									
									
								
							
							
						
						
									
										72
									
								
								yarn.lock
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -1267,6 +1267,11 @@ acorn@^7.1.1, acorn@^7.4.0, acorn@^7.4.1:
 | 
			
		|||
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
 | 
			
		||||
  integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
 | 
			
		||||
 | 
			
		||||
acorn@^8.7.0:
 | 
			
		||||
  version "8.7.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf"
 | 
			
		||||
  integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==
 | 
			
		||||
 | 
			
		||||
ajv@^6.10.0, ajv@^6.12.4:
 | 
			
		||||
  version "6.12.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
 | 
			
		||||
| 
						 | 
				
			
			@ -1538,7 +1543,7 @@ csstype@^2.6.8:
 | 
			
		|||
  resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.19.tgz#feeb5aae89020bb389e1f63669a5ed490e391caa"
 | 
			
		||||
  integrity sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==
 | 
			
		||||
 | 
			
		||||
debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.3:
 | 
			
		||||
debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3:
 | 
			
		||||
  version "4.3.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
 | 
			
		||||
  integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
 | 
			
		||||
| 
						 | 
				
			
			@ -1783,15 +1788,15 @@ eslint-plugin-prettier@^4.0.0:
 | 
			
		|||
  dependencies:
 | 
			
		||||
    prettier-linter-helpers "^1.0.0"
 | 
			
		||||
 | 
			
		||||
eslint-plugin-vue@^7.20.0:
 | 
			
		||||
  version "7.20.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.20.0.tgz#98c21885a6bfdf0713c3a92957a5afeaaeed9253"
 | 
			
		||||
  integrity sha512-oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw==
 | 
			
		||||
eslint-plugin-vue@^8.3.0:
 | 
			
		||||
  version "8.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-8.3.0.tgz#2ae4f915ed3541a58c4a4c1145c1e60b86aa7e85"
 | 
			
		||||
  integrity sha512-IIuLHw4vQxGlHcoP2dG6t/2OVdQf2qoyAzEGAxreU1afZOHGA7y3TWq8I+r3ZA6Wjs6xpeUWGHlT31QGr9Rb5g==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    eslint-utils "^2.1.0"
 | 
			
		||||
    eslint-utils "^3.0.0"
 | 
			
		||||
    natural-compare "^1.4.0"
 | 
			
		||||
    semver "^6.3.0"
 | 
			
		||||
    vue-eslint-parser "^7.10.0"
 | 
			
		||||
    semver "^7.3.5"
 | 
			
		||||
    vue-eslint-parser "^8.0.1"
 | 
			
		||||
 | 
			
		||||
eslint-scope@^5.1.1:
 | 
			
		||||
  version "5.1.1"
 | 
			
		||||
| 
						 | 
				
			
			@ -1801,6 +1806,14 @@ eslint-scope@^5.1.1:
 | 
			
		|||
    esrecurse "^4.3.0"
 | 
			
		||||
    estraverse "^4.1.1"
 | 
			
		||||
 | 
			
		||||
eslint-scope@^6.0.0:
 | 
			
		||||
  version "6.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-6.0.0.tgz#9cf45b13c5ac8f3d4c50f46a5121f61b3e318978"
 | 
			
		||||
  integrity sha512-uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    esrecurse "^4.3.0"
 | 
			
		||||
    estraverse "^5.2.0"
 | 
			
		||||
 | 
			
		||||
eslint-utils@^2.1.0:
 | 
			
		||||
  version "2.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
 | 
			
		||||
| 
						 | 
				
			
			@ -1808,6 +1821,13 @@ eslint-utils@^2.1.0:
 | 
			
		|||
  dependencies:
 | 
			
		||||
    eslint-visitor-keys "^1.1.0"
 | 
			
		||||
 | 
			
		||||
eslint-utils@^3.0.0:
 | 
			
		||||
  version "3.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
 | 
			
		||||
  integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    eslint-visitor-keys "^2.0.0"
 | 
			
		||||
 | 
			
		||||
eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
 | 
			
		||||
  version "1.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
 | 
			
		||||
| 
						 | 
				
			
			@ -1818,6 +1838,11 @@ eslint-visitor-keys@^2.0.0:
 | 
			
		|||
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
 | 
			
		||||
  integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
 | 
			
		||||
 | 
			
		||||
eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.1.0:
 | 
			
		||||
  version "3.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz#eee4acea891814cda67a7d8812d9647dd0179af2"
 | 
			
		||||
  integrity sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==
 | 
			
		||||
 | 
			
		||||
eslint@^7.26.0, eslint@^7.32.0:
 | 
			
		||||
  version "7.32.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d"
 | 
			
		||||
| 
						 | 
				
			
			@ -1864,7 +1889,7 @@ eslint@^7.26.0, eslint@^7.32.0:
 | 
			
		|||
    text-table "^0.2.0"
 | 
			
		||||
    v8-compile-cache "^2.0.3"
 | 
			
		||||
 | 
			
		||||
espree@^6.0.0, espree@^6.2.1:
 | 
			
		||||
espree@^6.0.0:
 | 
			
		||||
  version "6.2.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a"
 | 
			
		||||
  integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==
 | 
			
		||||
| 
						 | 
				
			
			@ -1882,6 +1907,15 @@ espree@^7.3.0, espree@^7.3.1:
 | 
			
		|||
    acorn-jsx "^5.3.1"
 | 
			
		||||
    eslint-visitor-keys "^1.3.0"
 | 
			
		||||
 | 
			
		||||
espree@^9.0.0:
 | 
			
		||||
  version "9.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.0.tgz#c1240d79183b72aaee6ccfa5a90bc9111df085a8"
 | 
			
		||||
  integrity sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    acorn "^8.7.0"
 | 
			
		||||
    acorn-jsx "^5.3.1"
 | 
			
		||||
    eslint-visitor-keys "^3.1.0"
 | 
			
		||||
 | 
			
		||||
esprima@^4.0.0:
 | 
			
		||||
  version "4.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
 | 
			
		||||
| 
						 | 
				
			
			@ -2818,7 +2852,7 @@ semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
 | 
			
		|||
  resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
 | 
			
		||||
  integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
 | 
			
		||||
 | 
			
		||||
semver@^7.2.1:
 | 
			
		||||
semver@^7.2.1, semver@^7.3.5:
 | 
			
		||||
  version "7.3.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
 | 
			
		||||
  integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
 | 
			
		||||
| 
						 | 
				
			
			@ -3191,18 +3225,18 @@ vite@^2.7.9:
 | 
			
		|||
  optionalDependencies:
 | 
			
		||||
    fsevents "~2.3.2"
 | 
			
		||||
 | 
			
		||||
vue-eslint-parser@^7.10.0:
 | 
			
		||||
  version "7.11.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz#214b5dea961007fcffb2ee65b8912307628d0daf"
 | 
			
		||||
  integrity sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==
 | 
			
		||||
vue-eslint-parser@^8.0.1:
 | 
			
		||||
  version "8.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-8.0.1.tgz#25e08b20a414551531f3e19f999902e1ecf45f13"
 | 
			
		||||
  integrity sha512-lhWjDXJhe3UZw2uu3ztX51SJAPGPey1Tff2RK3TyZURwbuI4vximQLzz4nQfCv8CZq4xx7uIiogHMMoSJPr33A==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    debug "^4.1.1"
 | 
			
		||||
    eslint-scope "^5.1.1"
 | 
			
		||||
    eslint-visitor-keys "^1.1.0"
 | 
			
		||||
    espree "^6.2.1"
 | 
			
		||||
    debug "^4.3.2"
 | 
			
		||||
    eslint-scope "^6.0.0"
 | 
			
		||||
    eslint-visitor-keys "^3.0.0"
 | 
			
		||||
    espree "^9.0.0"
 | 
			
		||||
    esquery "^1.4.0"
 | 
			
		||||
    lodash "^4.17.21"
 | 
			
		||||
    semver "^6.3.0"
 | 
			
		||||
    semver "^7.3.5"
 | 
			
		||||
 | 
			
		||||
vue-i18n@^9.2.0-beta.25:
 | 
			
		||||
  version "9.2.0-beta.26"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue