Skip to content

Commit

Permalink
upgrade pnpm and other deps
Browse files Browse the repository at this point in the history
  • Loading branch information
vraravam committed Feb 10, 2024
1 parent 333c473 commit 5025287
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 55 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
},
"engines": {
"node": "20.11.0",
"pnpm": "8.14.1"
"pnpm": "8.15.1"
},
"volta": {
"node": "20.11.0",
"pnpm": "8.14.1"
"pnpm": "8.15.1"
},
"engine-strict": true,
"packageManager": "pnpm@8.14.1",
"packageManager": "pnpm@8.15.1",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "is-ci || husky install",
Expand All @@ -40,17 +40,17 @@
},
"homepage": "https://github.com/ferdium/ferdium-recipes",
"devDependencies": {
"@types/targz": "1.0.1",
"@types/targz": "1.0.4",
"all-contributors-cli": "6.26.1",
"eslint": "8.48.0",
"eslint": "8.56.0",
"eslint-plugin-unicorn": "48.0.1",
"fs-extra": "11.1.1",
"husky": "8.0.3",
"fs-extra": "11.2.0",
"husky": "9.0.10",
"image-size": "1.0.2",
"is-ci": "3.0.1",
"open": "9.1.0",
"prettier": "3.0.3",
"simple-git": "3.19.1",
"prettier": "3.2.5",
"simple-git": "3.22.0",
"targz": "1.0.1"
}
}
93 changes: 49 additions & 44 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion recipes/zalo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "zalo",
"name": "Zalo",
"version": "1.5.0",
"version": "1.5.1",
"license": "MIT",
"config": {
"serviceURL": "https://chat.zalo.me/",
Expand Down
3 changes: 2 additions & 1 deletion recipes/zalo/webview.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ module.exports = Ferdium => {
const convUnread = document.querySelectorAll(
'.conv-unread:not(.func-unread__muted)',
);
if (convUnread.length === 0) count = 6; // 5+
if (convUnread.length === 0)
count = 6; // 5+
else
for (const convUnreadItem of convUnread) {
switch (convUnreadItem.classList[1]) {
Expand Down

0 comments on commit 5025287

Please sign in to comment.