Skip to content

Commit

Permalink
chore: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
amanharwara committed Jan 20, 2022
1 parent 4901fc1 commit 940d345
Show file tree
Hide file tree
Showing 3 changed files with 460 additions and 210 deletions.
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "altus",
"productName": "Altus",
"version": "4.5.4",
"version": "4.5.5",
"description": "Desktop client for WhatsApp Web with themes & multiple account support.",
"main": "src/index.js",
"homepage": "https://gitlab.com/amanharwara/altus",
Expand Down Expand Up @@ -98,20 +98,18 @@
},
"dependencies": {
"auto-launch": "^5.0.5",
"concurrently": "^6.2.0",
"dragula": "^3.7.3",
"electron-context-menu": "^3.1.1",
"electron-dl": "^3.2.1",
"electron-dl": "^3.3.0",
"electron-reload": "^1.5.0",
"electron-store": "^8.0.0",
"i18next": "^20.3.5",
"electron-store": "^8.0.1",
"i18next": "^21.6.6",
"i18next-node-fs-backend": "^2.1.3",
"node-fetch": "^2.6.1",
"sass": "^1.35.2",
"sirv-cli": "^1.0.12",
"stylus": "^0.54.8",
"svelte-select": "^4.2.6",
"tslib": "^2.3.0",
"node-fetch": "^3.1.1",
"sass": "^1.49.0",
"stylus": "^0.56.0",
"svelte-select": "^4.4.7",
"tslib": "^2.3.1",
"uuid": "^8.3.2"
},
"devDependencies": {
Expand All @@ -121,16 +119,18 @@
"@rollup/plugin-typescript": "^8.2.3",
"@tsconfig/svelte": "^2.0.1",
"@types/node": "^16.3.3",
"electron": "^15.3.0",
"electron-builder": "^22.11.7",
"rollup": "^2.53.2",
"concurrently": "^6.2.0",
"electron": "^16.0.7",
"electron-builder": "^22.14.5",
"rollup": "^2.64.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.38.3",
"svelte-check": "^2.2.3",
"svelte-preprocess": "^4.7.4",
"sirv-cli": "^1.0.12",
"svelte": "^3.46.2",
"svelte-check": "^2.3.0",
"svelte-preprocess": "^4.10.2",
"typescript": "^4.3.5"
}
}
2 changes: 1 addition & 1 deletion src/util/getReleases.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const fetch = require("node-fetch");
const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args));

const getReleases = async () => {
try {
Expand Down
Loading

0 comments on commit 940d345

Please sign in to comment.