Skip to content

Commit 71cdef9

Browse files
committed
refactor(package): simplify Linux target configuration in package.json
- Streamlined the Linux target configuration by removing redundant object structures for AppImage, deb, and rpm, consolidating them into a single array format for clarity and maintainability.
1 parent e00058f commit 71cdef9

File tree

1 file changed

+3
-21
lines changed

1 file changed

+3
-21
lines changed

crates/agent-electron-client/package.json

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -250,27 +250,9 @@
250250
},
251251
"linux": {
252252
"target": [
253-
{
254-
"target": "AppImage",
255-
"arch": [
256-
"x64",
257-
"arm64"
258-
]
259-
},
260-
{
261-
"target": "deb",
262-
"arch": [
263-
"x64",
264-
"arm64"
265-
]
266-
},
267-
{
268-
"target": "rpm",
269-
"arch": [
270-
"x64",
271-
"arm64"
272-
]
273-
}
253+
"AppImage",
254+
"deb",
255+
"rpm"
274256
],
275257
"icon": "public/icon.png",
276258
"category": "Productivity",

0 commit comments

Comments
 (0)