Skip to content

Commit

Permalink
bun -> pnpm
Browse files Browse the repository at this point in the history
:(
  • Loading branch information
ThatOneCalculator committed Oct 25, 2023
1 parent 94358bd commit 9947fa3
Show file tree
Hide file tree
Showing 4 changed files with 466 additions and 8 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ jobs:

runs-on: ${{ matrix.platform }}
steps:
- uses: oven-sh/setup-bun@v1
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
bun-version: latest
node-version: 16
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: install dependencies (ubuntu only)
Expand All @@ -26,7 +28,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: install frontend dependencies
run: bun install
run: corepack enable && pnpm install
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Run Google Chat as a "real" application with Tauri

Tech stack:

[![tauri badge](https://img.shields.io/badge/made_with-tauri-FFC131?logo=tauri&style=for-the-badge)](https://tauri.app) [![vite badge](https://img.shields.io/badge/bundled_with-vite-BC33FE?logo=vite&style=for-the-badge)](https://vitejs.dev) [![typescript badge](https://img.shields.io/badge/built_with-typescript-3176C3?logo=typescript&style=for-the-badge)](https://www.typescriptlang.org/) [![bun badge](https://img.shields.io/badge/managed_with-bun-F9F1E1?logo=bun&style=for-the-badge)](https://bun.sh)
[![tauri badge](https://img.shields.io/badge/made_with-tauri-FFC131?logo=tauri&style=for-the-badge)](https://tauri.app) [![vite badge](https://img.shields.io/badge/bundled_with-vite-BC33FE?logo=vite&style=for-the-badge)](https://vitejs.dev) [![typescript badge](https://img.shields.io/badge/built_with-typescript-3176C3?logo=typescript&style=for-the-badge)](https://www.typescriptlang.org/)

Pros:

Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"name": "google-chat-tauri",
"private": true,
"version": "0.0.0",
"version": "0.0.1",
"description": "A Google Chat desktop app built with Tauri",
"packageManager": "pnpm@8.9.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -10,11 +12,12 @@
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^1.5.0"
"@tauri-apps/api": "^1.5.0",
"pnpm": "^8.9.2"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.0",
"vite": "^4.4.4",
"typescript": "^5.0.2"
"typescript": "^5.0.2",
"vite": "^4.4.4"
}
}
Loading

0 comments on commit 9947fa3

Please sign in to comment.