Skip to content

Commit

Permalink
fix: rollback code;
Browse files Browse the repository at this point in the history
  • Loading branch information
denisx committed Dec 23, 2024
1 parent 2dec6e0 commit 14a07bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/curvy-llamas-explain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@alfalab/core-components-collapse': patch
---

Парные иконки заменены на одну иконку и css-rotate
2 changes: 1 addition & 1 deletion .github/workflows/package-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
const now = currentFile[packageName]?.[entryPoint] || 0;
const before = masterFile[packageName]?.[entryPoint] || 0;
if (Math.abs(now - before) > 0) {
if (Math.abs(now - before) >= 1) {
shouldComment = true;
acc += `| ${packageName}/${entryPoint} | ${now} ${
now - before > 0 ? `(+${(now - before).toFixed(2)} KB🔺)` : `(-${(before - now).toFixed(2)} KB💚)`
Expand Down

0 comments on commit 14a07bb

Please sign in to comment.