From 52ba2dc9ffd8e235251d1279686f55e33b3fa3bb Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Tue, 10 Oct 2023 00:51:16 +0900 Subject: [PATCH] remove: migration scripts --- config/store.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/config/store.ts b/config/store.ts index 6a0fd137..f5fdac9d 100644 --- a/config/store.ts +++ b/config/store.ts @@ -10,16 +10,6 @@ const setDefaultPluginOptions = (store: Conf>, plugin: k }; const migrations = { - '>=2.0.3'(store: Conf>) { - if (store.get('plugins.discord.hideGitHubButton') === undefined) { - store.set('plugins.discord.hideGitHubButton', false); - } - }, - '>=2.0.0'(store: Conf>) { - if (store.get('plugins.disable-autoplay.applyOnce') === undefined) { - store.set('plugins.disable-autoplay.applyOnce', false); - } - }, '>=1.20.0'(store: Conf>) { setDefaultPluginOptions(store, 'visualizer');