feat(plugin): migrate some plugin (WIP)

Co-authored-by: JellyBrick <shlee1503@naver.com>
This commit is contained in:
Su-Yong
2023-11-11 00:03:26 +09:00
parent e0e17cac99
commit 5cd1d9abe8
29 changed files with 938 additions and 796 deletions

View File

@ -11,6 +11,7 @@ const set = (key: string, value: unknown) => {
store.set(key, value);
};
const setPartial = (value: object) => {
// deepmerge(store.get, value);
store.set(value);
};