Skip to content

Commit

Permalink
bump v 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
UrielCh committed May 31, 2023
1 parent b8986fe commit 2250ab2
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 123 deletions.
9 changes: 8 additions & 1 deletion NOTE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,17 @@ for X in $pkgs; do
done;
```

### diff
```bash
for X in $pkgs; do
echo start $X; cd react-icons-$X; git diff; cd ..;
done;
```

### commit
```bash
for X in $pkgs; do
echo start $X; cd react-icons-$X; git add .; git commit -avm "bump version"; git push; cd ..;
echo start $X; cd react-icons-$X; git add .; git commit -avm "fix dual @"; git push; cd ..;
done;
```

Expand Down
Loading

0 comments on commit 2250ab2

Please sign in to comment.