Commit 4d32bc9
committed
ifix: resolve pnpm installation errors and extension packaging issues in Codespaces
Problem:
- ERR_PNPM_Unknown system error -116 occurred during pnpm install in Codespaces
- Build failed due to vite version conflicts when running just package
- .vsix package included 242 unnecessary files, wasting space
Solution:
- Added .npmrc to use copy mode instead of hard-linking for Codespaces overlay filesystem
- Added .vsixignore to exclude development files (root node_modules, docs, tests, etc.)
- Redesigned dependency structure: separated into root (shared devDeps), extension (runtime deps), view (view-specific devDeps)
- Removed src/package.json to eliminate unnecessary nested structure and simplify dependency management
- Consolidated justfile scripts to invoke each package's scripts from root1 parent 2ff5a4a commit 4d32bc9
File tree
12 files changed
+518
-13980
lines changed- .github/workflows
- src
- extension
- view
12 files changed
+518
-13980
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
| 40 | + | |
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | | - | |
10 | | - | |
| 8 | + | |
11 | 9 | | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | 10 | | |
18 | | - | |
19 | | - | |
20 | 11 | | |
21 | 12 | | |
22 | 13 | | |
| |||
60 | 51 | | |
61 | 52 | | |
62 | 53 | | |
63 | | - | |
| 54 | + | |
64 | 55 | | |
65 | | - | |
66 | | - | |
| 56 | + | |
| 57 | + | |
67 | 58 | | |
68 | 59 | | |
69 | 60 | | |
| |||
108 | 99 | | |
109 | 100 | | |
110 | 101 | | |
111 | | - | |
| 102 | + | |
112 | 103 | | |
113 | 104 | | |
114 | 105 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
263 | 263 | | |
264 | 264 | | |
265 | 265 | | |
266 | | - | |
| 266 | + | |
267 | 267 | | |
268 | 268 | | |
269 | | - | |
| 269 | + | |
| 270 | + | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
270 | 279 | | |
271 | 280 | | |
| 281 | + | |
| 282 | + | |
272 | 283 | | |
273 | 284 | | |
274 | 285 | | |
275 | 286 | | |
276 | 287 | | |
277 | 288 | | |
278 | 289 | | |
| 290 | + | |
| 291 | + | |
| 292 | + | |
279 | 293 | | |
280 | 294 | | |
| 295 | + | |
| 296 | + | |
| 297 | + | |
| 298 | + | |
281 | 299 | | |
| 300 | + | |
282 | 301 | | |
283 | 302 | | |
284 | 303 | | |
285 | | - | |
| 304 | + | |
| 305 | + | |
| 306 | + | |
| 307 | + | |
286 | 308 | | |
287 | 309 | | |
0 commit comments