···121121pnpm biome:fix
122122```
123123124124+### Maintenance Scripts
125125+126126+Convenient Node.js helpers reside in the `script` directory:
127127+128128+- `node script/clean.mjs` removes all `node_modules`, `.next` directories,
129129+ `pnpm-lock.yaml`, and `tsconfig.tsbuildinfo` files.
130130+- `node script/update-dependencies.mjs` updates packages across the monorepo,
131131+ cleans old installs, and commits the changes in a new branch.
132132+124133## License
125134126135This project is licensed under the **AGPL-3.0** license. Please refer to the [LICENSE](./LICENSE) file for full terms and conditions.
-11
script/clean
···11-#!/bin/bash
22-33-# Usage: script/clean
44-# Clean all node_modules and pnpm-lock.yaml files recursively.
55-66-echo "Deleting all node_modules and pnpm-lock.yaml files recursively 🗑"
77-find . -name "node_modules" -type d -prune -exec rm -rf '{}' + -print
88-find . -name ".next" -type d -prune -exec rm -rf '{}' + -print
99-find . -name "pnpm-lock.yaml" -type f -prune -exec rm -rf '{}' + -print
1010-find . -name "tsconfig.tsbuildinfo" -type f -prune -exec rm -rf '{}' + -print
1111-echo "node_modules and pnpm-lock.yaml files deleted 🎉"