Skip to content

Commit

Permalink
ditching bun and going back to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
0PandaDEV committed Apr 11, 2024
1 parent a616e85 commit 8f7455c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,7 @@ jobs:
sudo apt install libwebkit2gtk-4.1-dev build-essential curl wget file libssl-dev libayatana-appindicator3-dev librsvg2-dev
echo "PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig" >> $GITHUB_ENV
- name: install bun
if: matrix.platform == 'ubuntu-latest' || matrix.platform == 'macos-latest'
run: |
curl -fsSL https://bun.sh/install | bash
source /Users/runner/.bashrc
- name: install bun
if: matrix.platform == 'windows-latest'
run: powershell -c "irm bun.sh/install.ps1 | iex"

- name: install frontend dependencies
run: bun i
run: npm install -g pnpm && pnpm install

- uses: tauri-apps/tauri-action@v0
- uses: tauri-apps/tauri-action@v0
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"version": "1.0.0",
"identifier": "app.vleer",
"build": {
"beforeDevCommand": "bun nuxt dev",
"beforeBuildCommand": "bun nuxt generate",
"beforeDevCommand": "pnpm nuxt dev",
"beforeBuildCommand": "pnpm nuxt generate",
"devUrl": "http://localhost:3000",
"frontendDist": "../dist"
},
Expand Down

0 comments on commit 8f7455c

Please sign in to comment.