mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-27 01:16:23 +02:00
build .deb and .rpm
This commit is contained in:
parent
940965f002
commit
35ca1b69c0
3 changed files with 66 additions and 4 deletions
|
|
@ -7,7 +7,6 @@ const pkg = require('./package.json');
|
|||
|
||||
module.exports = {
|
||||
packagerConfig: {
|
||||
name: 'Rowboat',
|
||||
executableName: 'rowboat',
|
||||
icon: './icons/icon', // .icns extension added automatically
|
||||
appBundleId: 'com.rowboat.app',
|
||||
|
|
@ -49,6 +48,29 @@ module.exports = {
|
|||
setupExe: `Rowboat-win32-${arch}-${pkg.version}-setup.exe`,
|
||||
})
|
||||
},
|
||||
{
|
||||
name: '@electron-forge/maker-deb',
|
||||
config: (arch) => ({
|
||||
options: {
|
||||
name: `Rowboat-linux`,
|
||||
bin: "rowboat",
|
||||
description: 'AI coworker with memory',
|
||||
maintainer: 'rowboatlabs',
|
||||
homepage: 'https://rowboatlabs.com'
|
||||
}
|
||||
})
|
||||
},
|
||||
{
|
||||
name: '@electron-forge/maker-rpm',
|
||||
config: {
|
||||
options: {
|
||||
name: `Rowboat-linux`,
|
||||
bin: "rowboat",
|
||||
description: 'AI coworker with memory',
|
||||
homepage: 'https://rowboatlabs.com'
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: '@electron-forge/maker-zip',
|
||||
platform: ["darwin", "win32", "linux"],
|
||||
|
|
|
|||
|
|
@ -1,8 +1,11 @@
|
|||
{
|
||||
"name": "Rowboat",
|
||||
"name": "rowboat",
|
||||
"productName": "Rowboat",
|
||||
"description": "AI coworker with memory",
|
||||
"type": "module",
|
||||
"version": "0.1.0",
|
||||
"main": ".package/dist/main.cjs",
|
||||
"license": "Apache-2.0",
|
||||
"scripts": {
|
||||
"start": "electron .",
|
||||
"build": "rm -rf dist && tsc && node bundle.mjs",
|
||||
|
|
@ -19,8 +22,9 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@electron-forge/cli": "^7.10.2",
|
||||
"@electron-forge/maker-deb": "^7.10.2",
|
||||
"@electron-forge/maker-deb": "^7.11.1",
|
||||
"@electron-forge/maker-dmg": "^7.10.2",
|
||||
"@electron-forge/maker-rpm": "^7.11.1",
|
||||
"@electron-forge/maker-squirrel": "^7.10.2",
|
||||
"@electron-forge/maker-zip": "^7.10.2",
|
||||
"@electron-forge/publisher-github": "^7.11.1",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue