2 Commits

Author SHA1 Message Date
dependabot[bot] c93881305a Bump dompurify from 3.3.3 to 3.4.1
Bumps [dompurify](https://github.com/cure53/DOMPurify) from 3.3.3 to 3.4.1.
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](https://github.com/cure53/DOMPurify/compare/3.3.3...3.4.1)

---
updated-dependencies:
- dependency-name: dompurify
  dependency-version: 3.4.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-22 19:14:24 +00:00
cupcakearmy 558d2c3e30 update deps & add cleanup of local brnaches 2026-04-05 11:14:53 +02:00
4 changed files with 668 additions and 718 deletions
+28
View File
@@ -0,0 +1,28 @@
---
tags:
- git
- branch
- clean
- delete
---
# Clean up local branches
## Delete all local branches that are already merged.
This command is useful if you have a buch of local branches that you don't need anymore.
```bash
git branch --merged | grep -v \* | xargs git branch -D
```
[Original SO Link](https://stackoverflow.com/a/10610669)
## Delete all other local branches
This command will delete all local branches except the one you are currently on.
```bash
git branch | grep -v "$(git rev-parse --abbrev-ref HEAD)" | xargs git branch -D
```
[Source](https://dev.to/vineethtrv/how-to-delete-all-local-git-branches-except-the-current-one-5dcb)
-20
View File
@@ -1,20 +0,0 @@
---
tags:
- git
- branch
- clean
- delete
---
# Delete all local branches that are already merged.
This command is useful if you have a buch of local branches that you don't need anymore.
```bash
git branch --merged | grep -v \* | xargs git branch -D
```
[Original SO Link](https://stackoverflow.com/a/10610669)
+5 -5
View File
@@ -6,11 +6,11 @@
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind"
},
"dependencies": {
"next": "^15.5.7",
"nextra": "^4.4.0",
"nextra-theme-docs": "^4.4.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
"next": "^15.5.14",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"packageManager": "pnpm@10.15.1",
"devDependencies": {
+635 -693
View File
File diff suppressed because it is too large Load Diff