aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-11-01 11:38:13 -0600
committerLibravatar GitHub <noreply@github.com>2023-11-01 11:38:13 -0600
commit264e704f3d59184ab6605c81538faf4e6234fefb (patch)
treebf15fb9ea4959d7e502bd68be0567d3533b6bb26 /src/stores
parentfeat(i18n): new Crowdin updates (#1437) (diff)
downloadferdium-app-264e704f3d59184ab6605c81538faf4e6234fefb.tar.gz
ferdium-app-264e704f3d59184ab6605c81538faf4e6234fefb.tar.zst
ferdium-app-264e704f3d59184ab6605c81538faf4e6234fefb.zip
chore: upgrade used node and pnpm version (#1433)
- upgrade node and pnpm version in `engines`, `volta` and `packageManager` config - upgrade `@types/node` to v20 - remove `react-loader` overrides from `peerDependencyRules.allowedVersions` - remove `@npmcli/move-file` 2.0.1 from `allowedDeprecatedVersions` - update node image to 20.9.0 in `Dockerfile` - update required system dependencies in `CONTRIBUTING.md` - update node version to 20.9.0 in `.nvmrc` - correct type definitions for `setInterval` usage in `WebviewCrashHandler` and `AppStore` necessary due to `@types/node` upgrade
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/AppStore.ts b/src/stores/AppStore.ts
index df8c17c01..ab98ca89c 100644
--- a/src/stores/AppStore.ts
+++ b/src/stores/AppStore.ts
@@ -128,7 +128,7 @@ export default class AppStore extends TypedStore {
128 128
129 dictionaries = []; 129 dictionaries = [];
130 130
131 fetchDataInterval: null | NodeJS.Timer = null; 131 fetchDataInterval: NodeJS.Timeout | null = null;
132 132
133 @observable downloads: Download[] = []; 133 @observable downloads: Download[] = [];
134 134