Skip to content

Commit 8ec42bc

Browse files
Mayank PandeyMayank Pandey
authored andcommitted
OS configuration with pnpm framework
1 parent 33b26ab commit 8ec42bc

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Install frontend requirements
5757
run: |
5858
cd frontend
59-
pnpm install --frozen-lockfile
59+
pnpm install
6060
6161
- name: Copy backend executable
6262
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
- name: Install frontend requirements
9696
run: |
9797
cd frontend
98-
pnpm install --frozen-lockfile
98+
pnpm install
9999
100100
- name: Copy backend bundle for Tauri
101101
run: |
@@ -274,7 +274,7 @@ jobs:
274274
- name: Install frontend requirements
275275
run: |
276276
cd frontend
277-
pnpm install --frozen-lockfile
277+
pnpm install
278278
279279
# Run ensure-backend.js to copy and rename the backend executable
280280
- name: Copy and rename backend executable

frontend/package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,11 @@
2828
"@tauri-apps/cli": "2.8.x",
2929
"@vitejs/plugin-react": "^4.3.4",
3030
"vite": "^6.0.3"
31+
},
32+
"pnpm": {
33+
"supportedArchitectures": {
34+
"os": ["current", "darwin", "win32", "linux"],
35+
"cpu": ["current", "x64", "arm64"]
36+
}
3137
}
3238
}

0 commit comments

Comments
 (0)