This commit is contained in:
syuilo 2020-09-19 14:04:24 +09:00
parent f661cb765a
commit 7f7fe3f94c
35 changed files with 154 additions and 120 deletions

View File

@ -244,7 +244,7 @@
"uuid": "8.3.0", "uuid": "8.3.0",
"v-animate-css": "0.0.3", "v-animate-css": "0.0.3",
"v-debounce": "0.1.2", "v-debounce": "0.1.2",
"vue": "3.0.0-rc.10", "vue": "3.0.0",
"vue-color": "2.7.1", "vue-color": "2.7.1",
"vue-content-loading": "1.6.0", "vue-content-loading": "1.6.0",
"vue-cropperjs": "4.1.0", "vue-cropperjs": "4.1.0",
@ -256,16 +256,16 @@
"vue-meta": "2.4.0", "vue-meta": "2.4.0",
"vue-prism-component": "1.2.0", "vue-prism-component": "1.2.0",
"vue-prism-editor": "1.2.2", "vue-prism-editor": "1.2.2",
"vue-router": "4.0.0-beta.9", "vue-router": "4.0.0-beta.10",
"vue-style-loader": "4.1.2", "vue-style-loader": "4.1.2",
"vue-svg-inline-loader-corejs3": "1.5.0", "vue-svg-inline-loader-corejs3": "1.5.0",
"vue-template-compiler": "2.6.12", "vue-template-compiler": "2.6.12",
"vuex": "4.0.0-beta.4", "vuex": "4.0.0-beta.4",
"vuex-persistedstate": "3.1.0", "vuex-persistedstate": "3.1.0",
"web-push": "3.4.4", "web-push": "3.4.4",
"webpack": "5.0.0-beta.30", "webpack": "5.0.0-beta.32",
"webpack-cli": "3.3.12", "webpack-cli": "3.3.12",
"websocket": "1.0.31", "websocket": "1.0.32",
"ws": "7.3.1", "ws": "7.3.1",
"xev": "2.0.1" "xev": "2.0.1"
}, },

View File

@ -128,7 +128,7 @@ export default defineComponent({
}); });
}, },
beforeDestroy() { beforeUnmount() {
this.enabled = false; this.enabled = false;
}, },

View File

@ -191,7 +191,7 @@ export default defineComponent({
}); });
}, },
beforeDestroy() { beforeUnmount() {
this.textarea.removeEventListener('keydown', this.onKeydown); this.textarea.removeEventListener('keydown', this.onKeydown);
for (const el of Array.from(document.querySelectorAll('body *'))) { for (const el of Array.from(document.querySelectorAll('body *'))) {

View File

@ -89,7 +89,7 @@ export default defineComponent({
} }
}, },
beforeDestroy() { beforeUnmount() {
this.reset(); this.reset();
}, },

View File

@ -112,7 +112,7 @@ export default defineComponent({
} }
}, },
beforeDestroy() { beforeUnmount() {
if (!this.isMainColumn) { if (!this.isMainColumn) {
this.$root.$off('deck.column.dragStart', this.onOtherDragStart); this.$root.$off('deck.column.dragStart', this.onOtherDragStart);
this.$root.$off('deck.column.dragEnd', this.onOtherDragEnd); this.$root.$off('deck.column.dragEnd', this.onOtherDragEnd);

View File

@ -147,7 +147,7 @@ export default defineComponent({
document.addEventListener('keydown', this.onKeydown); document.addEventListener('keydown', this.onKeydown);
}, },
beforeDestroy() { beforeUnmount() {
document.removeEventListener('keydown', this.onKeydown); document.removeEventListener('keydown', this.onKeydown);
}, },

View File

@ -165,7 +165,7 @@ export default defineComponent({
} }
}, },
beforeDestroy() { beforeUnmount() {
this.connection.dispose(); this.connection.dispose();
this.ilFilesObserver.disconnect(); this.ilFilesObserver.disconnect();
}, },

View File

@ -75,7 +75,7 @@ export default defineComponent({
this.connection.on('unfollow', this.onFollowChange); this.connection.on('unfollow', this.onFollowChange);
}, },
beforeDestroy() { beforeUnmount() {
this.connection.dispose(); this.connection.dispose();
}, },

View File

@ -49,7 +49,7 @@ export default defineComponent({
this.tick(); this.tick();
this.clock = setInterval(this.tick, 1000); this.clock = setInterval(this.tick, 1000);
}, },
beforeDestroy() { beforeUnmount() {
clearInterval(this.clock); clearInterval(this.clock);
}, },
methods: { methods: {

View File

@ -47,7 +47,7 @@ export default defineComponent({
this.size(); this.size();
window.addEventListener('resize', this.size); window.addEventListener('resize', this.size);
}, },
beforeDestroy() { beforeUnmount() {
window.removeEventListener('resize', this.size); window.removeEventListener('resize', this.size);
}, },
activated() { activated() {

View File

@ -65,7 +65,7 @@ export default defineComponent({
// VueWatch // VueWatch
this.clock = setInterval(this.draw, 1000); this.clock = setInterval(this.draw, 1000);
}, },
beforeDestroy() { beforeUnmount() {
clearInterval(this.clock); clearInterval(this.clock);
}, },
methods: { methods: {

View File

@ -293,7 +293,7 @@ export default defineComponent({
this.noteBody = this.$refs.noteBody; this.noteBody = this.$refs.noteBody;
}, },
beforeDestroy() { beforeUnmount() {
this.decapture(true); this.decapture(true);
if (this.$store.getters.isSignedIn) { if (this.$store.getters.isSignedIn) {

View File

@ -117,7 +117,7 @@ export default defineComponent({
} }
}, },
beforeDestroy() { beforeUnmount() {
if (!this.notification.isRead) { if (!this.notification.isRead) {
this.readObserver.unobserve(this.$el); this.readObserver.unobserve(this.$el);
this.connection.dispose(); this.connection.dispose();

View File

@ -79,7 +79,7 @@ export default defineComponent({
this.connection.on('notification', this.onNotification); this.connection.on('notification', this.onNotification);
}, },
beforeDestroy() { beforeUnmount() {
this.connection.dispose(); this.connection.dispose();
}, },

View File

@ -71,7 +71,7 @@ export default defineComponent({
}); });
}, },
beforeDestroy() { beforeUnmount() {
if (this.hpml.aiscript) this.hpml.aiscript.abort(); if (this.hpml.aiscript) this.hpml.aiscript.abort();
}, },
}); });

View File

@ -26,7 +26,7 @@ export default defineComponent({
created() { created() {
os.stream.on('_disconnected_', this.onDisconnected); os.stream.on('_disconnected_', this.onDisconnected);
}, },
beforeDestroy() { beforeUnmount() {
os.stream.off('_disconnected_', this.onDisconnected); os.stream.off('_disconnected_', this.onDisconnected);
}, },
methods: { methods: {

View File

@ -55,7 +55,7 @@ export default defineComponent({
this.tickId = window.requestAnimationFrame(this.tick); this.tickId = window.requestAnimationFrame(this.tick);
} }
}, },
destroyed() { unmounted() {
if (this.mode === 'relative' || this.mode === 'detail') { if (this.mode === 'relative' || this.mode === 'detail') {
window.clearTimeout(this.tickId); window.clearTimeout(this.tickId);
} }

View File

@ -136,7 +136,7 @@ export default defineComponent({
}, },
}, },
beforeDestroy() { beforeUnmount() {
(window as any).removeEventListener('message', this.adjustTweetHeight); (window as any).removeEventListener('message', this.adjustTweetHeight);
}, },
}); });

View File

@ -154,7 +154,7 @@ export default defineComponent({
this.connection.on('statsLog', this.onStatsLog); this.connection.on('statsLog', this.onStatsLog);
}, },
beforeDestroy() { beforeUnmount() {
this.connection.off('stats', this.onStats); this.connection.off('stats', this.onStats);
this.connection.off('statsLog', this.onStatsLog); this.connection.off('statsLog', this.onStatsLog);
}, },

View File

@ -534,7 +534,7 @@ export default defineComponent({
}); });
}, },
beforeDestroy() { beforeUnmount() {
this.connection.off('stats', this.onStats); this.connection.off('stats', this.onStats);
this.connection.off('statsLog', this.onStatsLog); this.connection.off('statsLog', this.onStatsLog);
this.connection.dispose(); this.connection.dispose();

View File

@ -156,7 +156,7 @@ export default defineComponent({
this.connection.on('statsLog', this.onStatsLog); this.connection.on('statsLog', this.onStatsLog);
}, },
beforeDestroy() { beforeUnmount() {
this.connection.off('stats', this.onStats); this.connection.off('stats', this.onStats);
this.connection.off('statsLog', this.onStatsLog); this.connection.off('statsLog', this.onStatsLog);
}, },

View File

@ -52,7 +52,7 @@ export default defineComponent({
}); });
}, },
beforeDestroy() { beforeUnmount() {
this.connection.dispose(); this.connection.dispose();
}, },

View File

@ -78,7 +78,7 @@ export default defineComponent({
}); });
}, },
beforeDestroy() { beforeUnmount() {
this.connection.dispose(); this.connection.dispose();
}, },

View File

@ -88,7 +88,7 @@ export default defineComponent({
} }
}, },
beforeDestroy() { beforeUnmount() {
this.connection.dispose(); this.connection.dispose();
document.removeEventListener('visibilitychange', this.onVisibilitychange); document.removeEventListener('visibilitychange', this.onVisibilitychange);

View File

@ -158,7 +158,7 @@ export default defineComponent({
} }
}, },
beforeDestroy() { beforeUnmount() {
room.destroy(); room.destroy();
window.removeEventListener('beforeunload', this.beforeunload); window.removeEventListener('beforeunload', this.beforeunload);
}, },

View File

@ -124,7 +124,7 @@ export default defineComponent({
}, },
}, },
beforeDestroy() { beforeUnmount() {
window.removeEventListener('beforeunload', this.beforeunload); window.removeEventListener('beforeunload', this.beforeunload);
}, },

View File

@ -171,7 +171,7 @@ export default defineComponent({
mounted() { mounted() {
window.requestAnimationFrame(this.parallaxLoop); window.requestAnimationFrame(this.parallaxLoop);
this.$once('hook:beforeDestroy', () => { this.$once('hook:beforeUnmount', () => {
window.cancelAnimationFrame(this.parallaxAnimationId); window.cancelAnimationFrame(this.parallaxAnimationId);
}); });
}, },

View File

@ -70,7 +70,7 @@ export default (opts) => ({
}); });
}, },
beforeDestroy() { beforeUnmount() {
this.ilObserver.disconnect(); this.ilObserver.disconnect();
if (this.$refs.loadMore) this.loadMoreElement.removeEventListener('click', this.fetchMore); if (this.$refs.loadMore) this.loadMoreElement.removeEventListener('click', this.fetchMore);
}, },

View File

@ -66,7 +66,7 @@ export default defineComponent({
this.tick(); this.tick();
this.clock = setInterval(this.tick, 1000); this.clock = setInterval(this.tick, 1000);
}, },
beforeDestroy() { beforeUnmount() {
clearInterval(this.clock); clearInterval(this.clock);
}, },
methods: { methods: {

View File

@ -55,7 +55,7 @@ export default defineComponent({
this.clock = setInterval(this.tick, this.props.showMs ? 10 : 1000); this.clock = setInterval(this.tick, this.props.showMs ? 10 : 1000);
}, { immediate: true }); }, { immediate: true });
}, },
beforeDestroy() { beforeUnmount() {
clearInterval(this.clock); clearInterval(this.clock);
}, },
methods: { methods: {

View File

@ -65,7 +65,7 @@ export default defineComponent({
this.fetch(); this.fetch();
this.clock = setInterval(this.fetch, 1000 * 60); this.clock = setInterval(this.fetch, 1000 * 60);
}, },
beforeDestroy() { beforeUnmount() {
clearInterval(this.clock); clearInterval(this.clock);
}, },
methods: { methods: {

View File

@ -62,7 +62,7 @@ export default defineComponent({
this.fetching = false; this.fetching = false;
}); });
}, },
beforeDestroy() { beforeUnmount() {
this.connection.dispose(); this.connection.dispose();
}, },
methods: { methods: {

View File

@ -51,7 +51,7 @@ export default defineComponent({
this.clock = setInterval(this.fetch, 60000); this.clock = setInterval(this.fetch, 60000);
this.$watch(() => this.props.url, this.fetch); this.$watch(() => this.props.url, this.fetch);
}, },
beforeDestroy() { beforeUnmount() {
clearInterval(this.clock); clearInterval(this.clock);
}, },
methods: { methods: {

View File

@ -51,7 +51,7 @@ export default defineComponent({
this.fetch(); this.fetch();
this.clock = setInterval(this.fetch, 1000 * 60); this.clock = setInterval(this.fetch, 1000 * 60);
}, },
beforeDestroy() { beforeUnmount() {
clearInterval(this.clock); clearInterval(this.clock);
}, },
methods: { methods: {

200
yarn.lock
View File

@ -45,6 +45,11 @@
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b"
integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ== integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ==
"@babel/parser@^7.11.5":
version "7.11.5"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037"
integrity sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q==
"@babel/parser@^7.6.0": "@babel/parser@^7.6.0":
version "7.9.4" version "7.9.4"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
@ -76,6 +81,15 @@
lodash "^4.17.19" lodash "^4.17.19"
to-fast-properties "^2.0.0" to-fast-properties "^2.0.0"
"@babel/types@^7.11.5":
version "7.11.5"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d"
integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q==
dependencies:
"@babel/helper-validator-identifier" "^7.10.4"
lodash "^4.17.19"
to-fast-properties "^2.0.0"
"@babel/types@^7.6.1": "@babel/types@^7.6.1":
version "7.9.5" version "7.9.5"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.5.tgz#89231f82915a8a566a703b3b20133f73da6b9444" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.5.tgz#89231f82915a8a566a703b3b20133f73da6b9444"
@ -956,14 +970,14 @@
dependencies: dependencies:
eslint-visitor-keys "^1.1.0" eslint-visitor-keys "^1.1.0"
"@vue/compiler-core@3.0.0-rc.10": "@vue/compiler-core@3.0.0":
version "3.0.0-rc.10" version "3.0.0"
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.0-rc.10.tgz#a76f713fb0462429ec0ec10a472fff1f539c5772" resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.0.tgz#25e4f079cf6c39f83bad23700f814c619105a0f2"
integrity sha512-kQzHzRsM0NPAWHeqSTb2J4VsHhjRkGeLTsGzeMnW+sojgTnS3T94KacwvYgVS4qeZAKiDq0bMNZoJWrHVQ3T8g== integrity sha512-XqPC7vdv4rFE77S71oCHmT1K4Ks3WE2Gi6Lr4B5wn0Idmp+NyQQBUHsCNieMDRiEpgtJrw+yOHslrsV0AfAsfQ==
dependencies: dependencies:
"@babel/parser" "^7.10.4" "@babel/parser" "^7.11.5"
"@babel/types" "^7.10.4" "@babel/types" "^7.11.5"
"@vue/shared" "3.0.0-rc.10" "@vue/shared" "3.0.0"
estree-walker "^2.0.1" estree-walker "^2.0.1"
source-map "^0.6.1" source-map "^0.6.1"
@ -978,13 +992,13 @@
estree-walker "^2.0.1" estree-walker "^2.0.1"
source-map "^0.6.1" source-map "^0.6.1"
"@vue/compiler-dom@3.0.0-rc.10": "@vue/compiler-dom@3.0.0":
version "3.0.0-rc.10" version "3.0.0"
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.0-rc.10.tgz#dd1380d1ee61170de76f9eb91e0d8ac7985f0ae0" resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.0.tgz#4cbb48fcf1f852daef2babcf9953b681ac463526"
integrity sha512-pqIUf5leZm0P9379utrRSVBMxhV8XaqJTEFFp5etCtbEa/H5ALs29EjFMtMcm9sQaVkZlKLu86mgIacbYB9Q3w== integrity sha512-ukDEGOP8P7lCPyStuM3F2iD5w2QPgUu2xwCW2XNeqPjFKIlR2xMsWjy4raI/cLjN6W16GtlMFaZdK8tLj5PRog==
dependencies: dependencies:
"@vue/compiler-core" "3.0.0-rc.10" "@vue/compiler-core" "3.0.0"
"@vue/shared" "3.0.0-rc.10" "@vue/shared" "3.0.0"
"@vue/compiler-dom@3.0.0-rc.2": "@vue/compiler-dom@3.0.0-rc.2":
version "3.0.0-rc.2" version "3.0.0-rc.2"
@ -1024,34 +1038,34 @@
"@vue/compiler-dom" "3.0.0-rc.2" "@vue/compiler-dom" "3.0.0-rc.2"
"@vue/shared" "3.0.0-rc.2" "@vue/shared" "3.0.0-rc.2"
"@vue/reactivity@3.0.0-rc.10": "@vue/reactivity@3.0.0":
version "3.0.0-rc.10" version "3.0.0"
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0-rc.10.tgz#34d5f51bcc5a7c36e27d7a9c1bd7a3d25ffa7c56" resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0.tgz#fd15632a608650ce2a969c721787e27e2c80aa6b"
integrity sha512-mkUZfOJlbqGZx2cARmhCs5r2+xLJPL7VFNagmlA3Fd66ZXBc3ZvTQdYsY4VUbYJFe5ByIzqu9TZiAkzXY+JVaA== integrity sha512-mEGkztGQrAPZRhV7C6PorrpT3+NtuA4dY2QjMzzrW31noKhssWTajRZTwpLF39NBRrF5UU6cp9+1I0FfavMgEQ==
dependencies: dependencies:
"@vue/shared" "3.0.0-rc.10" "@vue/shared" "3.0.0"
"@vue/runtime-core@3.0.0-rc.10": "@vue/runtime-core@3.0.0":
version "3.0.0-rc.10" version "3.0.0"
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0-rc.10.tgz#9055aef5113cbc328aaec29760c2151e0ed3cf40" resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0.tgz#480febf1bfe32798b6abbd71a88f8e8b473a51c2"
integrity sha512-VK/kq4gDDoqZ45CVwdbLLpikXLYLCt6YLhdgXX3fhf20gvPqrbEZv1ZNLruNnhhTpf9cLyU4tZ18DHeaUYPziw== integrity sha512-3ABMLeA0ZbeVNLbGGLXr+pNUwqXILOqz8WCVGfDWwQb+jW114Cm8djOHVVDoqdvRETQvDf8yHSUmpKHZpQuTkA==
dependencies: dependencies:
"@vue/reactivity" "3.0.0-rc.10" "@vue/reactivity" "3.0.0"
"@vue/shared" "3.0.0-rc.10" "@vue/shared" "3.0.0"
"@vue/runtime-dom@3.0.0-rc.10": "@vue/runtime-dom@3.0.0":
version "3.0.0-rc.10" version "3.0.0"
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0-rc.10.tgz#50f95cb991483a4262163723320967ad17bb321f" resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0.tgz#e0d1f7c7e22e1318696014cc3501e06b288c2e11"
integrity sha512-bH4GuneHt3FQ+/21jba5orM/CO9N1cnT7J3wtrxopFJ4/4H5cvHXyG6v+ZVTu1d733Ij/6yMRA7xbtfi9a4zJw== integrity sha512-f312n5w9gK6mVvkDSj6/Xnot1XjlKXzFBYybmoy6ahAVC8ExbQ+LOWti1IZM/adU8VMNdKaw7Q53Hxz3y5jX8g==
dependencies: dependencies:
"@vue/runtime-core" "3.0.0-rc.10" "@vue/runtime-core" "3.0.0"
"@vue/shared" "3.0.0-rc.10" "@vue/shared" "3.0.0"
csstype "^2.6.8" csstype "^2.6.8"
"@vue/shared@3.0.0-rc.10": "@vue/shared@3.0.0":
version "3.0.0-rc.10" version "3.0.0"
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.0-rc.10.tgz#e7ab62abcabbfc738545902b96a3aa78f59f3286" resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.0.tgz#ec089236629ecc0f10346b92f101ff4339169f1a"
integrity sha512-fI6gVhhgb3cAmEkY4oeVVA2hWZ2xvkgogHdBI5PL7gSvZnOB6XZ2eQGsYjC4W+7BegvEkoMBuZsFXVa4ZQ07XQ== integrity sha512-4XWL/avABGxU2E2ZF1eZq3Tj7fvksCMssDZUHOykBIMmh5d+KcAnQMC5XHMhtnA0NAvktYsA2YpdsVwVmhWzvA==
"@vue/shared@3.0.0-rc.2": "@vue/shared@3.0.0-rc.2":
version "3.0.0-rc.2" version "3.0.0-rc.2"
@ -1909,6 +1923,13 @@ buffer@^5.1.0, buffer@^5.4.3, buffer@^5.5.0:
base64-js "^1.0.2" base64-js "^1.0.2"
ieee754 "^1.1.4" ieee754 "^1.1.4"
bufferutil@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.1.tgz#3a177e8e5819a1243fe16b63a199951a7ad8d4a7"
integrity sha512-xowrxvpxojqkagPcWRQVXZl0YXhRhAtBEIq3VoER1NH5Mw1n1o0ojdspp+GS2J//2gCVyrzQDApQ4unGF+QOoA==
dependencies:
node-gyp-build "~3.7.0"
builtin-modules@^1.1.1: builtin-modules@^1.1.1:
version "1.1.1" version "1.1.1"
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
@ -3313,14 +3334,6 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1:
dependencies: dependencies:
once "^1.4.0" once "^1.4.0"
enhanced-resolve@5.0.0-beta.10:
version "5.0.0-beta.10"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.0.0-beta.10.tgz#3907c034f8e59446dfa5a89a1fd73db29aa0f246"
integrity sha512-vEyxvHv3f8xl7i7QmTQ6BqKY32acSPQ4dTZo8WRMtcqTDYH9YyXnDxqXsQqBLvdRHUiwl9nVivESiM1RcrxbKQ==
dependencies:
graceful-fs "^4.2.0"
tapable "^2.0.0-beta.10"
enhanced-resolve@^4.0.0: enhanced-resolve@^4.0.0:
version "4.1.1" version "4.1.1"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66" resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66"
@ -3339,6 +3352,14 @@ enhanced-resolve@^4.1.1:
memory-fs "^0.5.0" memory-fs "^0.5.0"
tapable "^1.0.0" tapable "^1.0.0"
enhanced-resolve@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.0.0.tgz#4737e6ebd4f2fd13fe23f4cec9d02146afc2c527"
integrity sha512-6F037vvK16tgLlRgUx6ZEZISMysNvnnk09SILFrx3bNa1UsSLpIXFzWOmtiDxf1ISPAG6/wHBI61PEkeuTLVNA==
dependencies:
graceful-fs "^4.2.4"
tapable "^2.0.0"
enquirer@^2.3.5: enquirer@^2.3.5:
version "2.3.5" version "2.3.5"
resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.5.tgz#3ab2b838df0a9d8ab9e7dff235b0e8712ef92381" resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.5.tgz#3ab2b838df0a9d8ab9e7dff235b0e8712ef92381"
@ -4260,7 +4281,7 @@ good-listener@^1.2.2:
dependencies: dependencies:
delegate "^3.1.2" delegate "^3.1.2"
graceful-fs@4.X, graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: graceful-fs@4.X, graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6:
version "4.2.3" version "4.2.3"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
@ -6465,6 +6486,11 @@ node-forge@^0.9.1:
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.1.tgz#775368e6846558ab6676858a4d8c6e8d16c677b5" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.1.tgz#775368e6846558ab6676858a4d8c6e8d16c677b5"
integrity sha512-G6RlQt5Sb4GMBzXvhfkeFmbqR6MzhtnT7VTHuLadjkii3rdYHNdw0m8zA4BTxVIh68FicCQ2NSUANpsqkr9jvQ== integrity sha512-G6RlQt5Sb4GMBzXvhfkeFmbqR6MzhtnT7VTHuLadjkii3rdYHNdw0m8zA4BTxVIh68FicCQ2NSUANpsqkr9jvQ==
node-gyp-build@~3.7.0:
version "3.7.0"
resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-3.7.0.tgz#daa77a4f547b9aed3e2aac779eaf151afd60ec8d"
integrity sha512-L/Eg02Epx6Si2NXmedx+Okg+4UHqmaf3TNcxd50SF9NQGcJaON3AtU++kax69XV7YWz4tUspqZSAsVofhFKG2w==
node-gyp@^7.0.0: node-gyp@^7.0.0:
version "7.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-7.0.0.tgz#2e88425ce84e9b1a4433958ed55d74c70fffb6be" resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-7.0.0.tgz#2e88425ce84e9b1a4433958ed55d74c70fffb6be"
@ -9294,10 +9320,10 @@ tapable@^1.0.0, tapable@^1.0.0-beta.5:
resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
tapable@^2.0.0-beta.10, tapable@^2.0.0-beta.11: tapable@^2.0.0:
version "2.0.0-beta.11" version "2.0.0"
resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.0.0-beta.11.tgz#5a6bd5e0353fad4da9e94942206bb596639e8cf7" resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.0.0.tgz#a49c3d6a8a2bb606e7db372b82904c970d537a08"
integrity sha512-cAhRzCvMdyJsxmdrSXG8/SUlJG4WJUxD/csuYAybUFjKVt74Y6pTyZ/I1ZK+enmCkWZN0JWxh14G69temaGSiA== integrity sha512-bjzn0C0RWoffnNdTzNi7rNDhs1Zlwk2tRXgk8EiHKAOX1Mag3d6T0Y5zNa7l9CJ+EoUne/0UHdwS8tMbkh9zDg==
tar-fs@^2.0.0: tar-fs@^2.0.0:
version "2.0.1" version "2.0.1"
@ -9911,6 +9937,13 @@ use@^3.1.0:
resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
utf-8-validate@^5.0.2:
version "5.0.2"
resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.2.tgz#63cfbccd85dc1f2b66cf7a1d0eebc08ed056bfb3"
integrity sha512-SwV++i2gTD5qh2XqaPzBnNX88N6HdyhQrNNRykvcS0QKvItV9u3vPEJr+X5Hhfb1JC0r0e1alL0iB09rY8+nmw==
dependencies:
node-gyp-build "~3.7.0"
util-deprecate@^1.0.1, util-deprecate@~1.0.1: util-deprecate@^1.0.1, util-deprecate@~1.0.1:
version "1.0.2" version "1.0.2"
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
@ -10161,10 +10194,10 @@ vue-prism-editor@1.2.2:
resolved "https://registry.yarnpkg.com/vue-prism-editor/-/vue-prism-editor-1.2.2.tgz#023cfd4329848f191aac851f2f5e6c7a8c2e059f" resolved "https://registry.yarnpkg.com/vue-prism-editor/-/vue-prism-editor-1.2.2.tgz#023cfd4329848f191aac851f2f5e6c7a8c2e059f"
integrity sha512-Lq2VgVygTx3Whn/tC8gD4m1ajA4lzSyCTqPLZA1Dq/ErbBaZA93FWRblwCoDR7AD2nXhGWuiTzb5ih3guzB7DA== integrity sha512-Lq2VgVygTx3Whn/tC8gD4m1ajA4lzSyCTqPLZA1Dq/ErbBaZA93FWRblwCoDR7AD2nXhGWuiTzb5ih3guzB7DA==
vue-router@4.0.0-beta.9: vue-router@4.0.0-beta.10:
version "4.0.0-beta.9" version "4.0.0-beta.10"
resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.0.0-beta.9.tgz#8552c38c9b015527e74c9c6cb4c54868219d601e" resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.0.0-beta.10.tgz#45f9e6fee6fcc7094b696e90c2c9f76c3aaf40ed"
integrity sha512-k8AGMm3LCTqnsEuF37AD4kcZVMwtnFEzdjACgmIII/xbLnTj3+o5XyH/zREBZutgv5q2hzlLltMVglqDQYMd/A== integrity sha512-y3YxV8rO9e4mgFqdyskytRMLzwbxR65ZaAW59xZL+T3M3kHX5p+/XB6j7K5cVm/EgZFOLRb+Zht3ShVaEonn/A==
vue-style-loader@4.1.2: vue-style-loader@4.1.2:
version "4.1.2" version "4.1.2"
@ -10192,14 +10225,14 @@ vue-template-compiler@2.6.12:
de-indent "^1.0.2" de-indent "^1.0.2"
he "^1.1.0" he "^1.1.0"
vue@3.0.0-rc.10: vue@3.0.0:
version "3.0.0-rc.10" version "3.0.0"
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0-rc.10.tgz#31298a757b4fad6ee8973d0fa27c4fde8574bd01" resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0.tgz#cfb5df5c34efce319b113a1667d12b74dcfd9c90"
integrity sha512-nRsyIQtOWLDMBb5dsPwg/WdIqznCMVWN6O6wJSzhseKC768wHlZKcJ7SPHhWPid9wi3Ykhtl9vtgvxTK/qICkw== integrity sha512-ZMrAARZ32sGIaYKr7Fk2GZEBh/VhulSrGxcGBiAvbN4fhjl3tuJyNFbbbLFqGjndbLoBW66I2ECq8ICdvkKdJw==
dependencies: dependencies:
"@vue/compiler-dom" "3.0.0-rc.10" "@vue/compiler-dom" "3.0.0"
"@vue/runtime-dom" "3.0.0-rc.10" "@vue/runtime-dom" "3.0.0"
"@vue/shared" "3.0.0-rc.10" "@vue/shared" "3.0.0"
vue@^2.5.13, vue@^2.5.17: vue@^2.5.13, vue@^2.5.17:
version "2.6.11" version "2.6.11"
@ -10233,10 +10266,10 @@ w3c-xmlserializer@^2.0.0:
dependencies: dependencies:
xml-name-validator "^3.0.0" xml-name-validator "^3.0.0"
watchpack@2.0.0-beta.15: watchpack@^2.0.0:
version "2.0.0-beta.15" version "2.0.0"
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.0.0-beta.15.tgz#0e69c8e5d680c7b4c181db3f70e500ca84cef794" resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.0.0.tgz#b12248f32f0fd4799b7be0802ad1f6573a45955c"
integrity sha512-zyhhC7vEajo5fZEUxlhVpC1uLAOs088zy8RwzcMp8YucTBirNCNmTFQWVeoKxKNNqEfYUBQdVzW3wfItcc/eUQ== integrity sha512-xSdCxxYZWNk3VK13bZRYhsQpfa8Vg63zXG+3pyU8ouqSLRCv4IGXIp9Kr226q6GBkGRlZrST2wwKtjfKz2m7Cg==
dependencies: dependencies:
glob-to-regexp "^0.4.1" glob-to-regexp "^0.4.1"
graceful-fs "^4.1.2" graceful-fs "^4.1.2"
@ -10280,14 +10313,6 @@ webpack-cli@3.3.12:
v8-compile-cache "^2.1.1" v8-compile-cache "^2.1.1"
yargs "^13.3.2" yargs "^13.3.2"
webpack-sources@2.0.0-beta.10:
version "2.0.0-beta.10"
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.0.0-beta.10.tgz#f603355c5518141976601bfd620a3a5a01ac7b5d"
integrity sha512-HxeYa9Q6nMk3MtSbi5mKUUV+gOxYlGQwujKbeK0JQ+SmLSMgC4cQkZ+xpsWvsUtTvskDwpKvuVLpE9eW7vn0IQ==
dependencies:
source-list-map "^2.0.1"
source-map "^0.6.1"
webpack-sources@^1.0.1, webpack-sources@^1.4.3: webpack-sources@^1.0.1, webpack-sources@^1.4.3:
version "1.4.3" version "1.4.3"
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
@ -10296,10 +10321,18 @@ webpack-sources@^1.0.1, webpack-sources@^1.4.3:
source-list-map "^2.0.0" source-list-map "^2.0.0"
source-map "~0.6.1" source-map "~0.6.1"
webpack@5.0.0-beta.30: webpack-sources@^2.0.0:
version "5.0.0-beta.30" version "2.0.0"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.0.0-beta.30.tgz#11cf2d4ed1ec78eb836da2a7be7809e5e074e3eb" resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.0.0.tgz#602d4bc7ff2e630ceb753a09ef49f260fa4ae7f0"
integrity sha512-pOAAo71m6icygRrOPn/lQM4Ky8MN+9dDBwEU9Get285VBbmuZE6AFqizEEV692mYgUit/0+7vnjsnUr8xX2puA== integrity sha512-CpCkDjEKa5vYVRDFDRABBkBomz+82lz9bpXViN1LBc8L/WDXvSyELKcBvBnTeDEiRfMJCGAFG9+04406PLSsIA==
dependencies:
source-list-map "^2.0.1"
source-map "^0.6.1"
webpack@5.0.0-beta.32:
version "5.0.0-beta.32"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.0.0-beta.32.tgz#3ac957b9ef064e8502b546dbc8ade42e4d7d5506"
integrity sha512-PrEyICK8AGeY/yK6yuHk7iuo5y1lMOuD2tI0rM+pG8ZYR6tjdkmvvu0kJGBeor9AaPjB46YA4BDBigMdBLCFCA==
dependencies: dependencies:
"@types/eslint-scope" "^3.7.0" "@types/eslint-scope" "^3.7.0"
"@types/estree" "^0.0.45" "@types/estree" "^0.0.45"
@ -10309,7 +10342,7 @@ webpack@5.0.0-beta.30:
"@webassemblyjs/wasm-parser" "1.9.0" "@webassemblyjs/wasm-parser" "1.9.0"
acorn "^7.4.0" acorn "^7.4.0"
chrome-trace-event "^1.0.2" chrome-trace-event "^1.0.2"
enhanced-resolve "5.0.0-beta.10" enhanced-resolve "^5.0.0"
eslint-scope "^5.1.0" eslint-scope "^5.1.0"
events "^3.2.0" events "^3.2.0"
glob-to-regexp "^0.4.1" glob-to-regexp "^0.4.1"
@ -10320,20 +10353,21 @@ webpack@5.0.0-beta.30:
neo-async "^2.6.2" neo-async "^2.6.2"
pkg-dir "^4.2.0" pkg-dir "^4.2.0"
schema-utils "^2.7.0" schema-utils "^2.7.0"
tapable "^2.0.0-beta.11" tapable "^2.0.0"
terser-webpack-plugin "^4.1.0" terser-webpack-plugin "^4.1.0"
watchpack "2.0.0-beta.15" watchpack "^2.0.0"
webpack-sources "2.0.0-beta.10" webpack-sources "^2.0.0"
websocket@1.0.31: websocket@1.0.32:
version "1.0.31" version "1.0.32"
resolved "https://registry.yarnpkg.com/websocket/-/websocket-1.0.31.tgz#e5d0f16c3340ed87670e489ecae6144c79358730" resolved "https://registry.yarnpkg.com/websocket/-/websocket-1.0.32.tgz#1f16ddab3a21a2d929dec1687ab21cfdc6d3dbb1"
integrity sha512-VAouplvGKPiKFDTeCCO65vYHsyay8DqoBSlzIO3fayrfOgU94lQN5a1uWVnFrMLceTJw/+fQXR5PGbUVRaHshQ== integrity sha512-i4yhcllSP4wrpoPMU2N0TQ/q0O94LRG/eUQjEAamRltjQ1oT1PFFKOG4i877OlJgCG8rw6LrrowJp+TYCEWF7Q==
dependencies: dependencies:
bufferutil "^4.0.1"
debug "^2.2.0" debug "^2.2.0"
es5-ext "^0.10.50" es5-ext "^0.10.50"
nan "^2.14.0"
typedarray-to-buffer "^3.1.5" typedarray-to-buffer "^3.1.5"
utf-8-validate "^5.0.2"
yaeti "^0.0.6" yaeti "^0.0.6"
whatwg-encoding@^1.0.5: whatwg-encoding@^1.0.5: