Update dependencies and enhance project configuration

- Removed `lucide-react` version 0.454.0 and downgraded to version 0.316.0 in `bun.lock`.
- Added `@tailwindcss/vite` and `tailwindcss` as development dependencies in `package.json`.
- Updated Vite configuration to include Tailwind CSS plugin.
- Set the HTML document to use a dark theme by adding the `class="dark"` attribute to the `<html>` tag.
This commit is contained in:
Jamie Pine
2026-02-02 00:36:24 -08:00
parent e4f3647f9a
commit 4c4b3e5463
5 changed files with 19 additions and 12 deletions
+11 -6
View File
@@ -59,15 +59,20 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install Python dependencies (CPU)
if: matrix.provider == 'pytorch-cpu'
- name: Install CPU-only torch (Linux)
if: matrix.provider == 'pytorch-cpu' && matrix.platform == 'ubuntu-22.04'
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
pip install -r providers/pytorch-cpu/requirements.txt
pip install -r backend/requirements.txt
- name: Install Python dependencies (CPU - non-Linux)
if: matrix.provider == 'pytorch-cpu' && matrix.platform != 'ubuntu-22.04'
run: |
python -m pip install --upgrade pip
pip install pyinstaller
# Install CPU-only torch on Linux to avoid CUDA bloat
if [ "${{ matrix.platform }}" == "ubuntu-22.04" ]; then
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
fi
pip install -r providers/pytorch-cpu/requirements.txt
pip install -r backend/requirements.txt