Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac-GC committed Jan 25, 2024
1 parent bfa9627 commit 93855d7
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 29 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,6 @@ module.exports = {
'vite.config.ts',
'postcss.config.js',
'src/components/**/*.vue', // Incrementally fix these
'electron-builder.ts',
],
};
58 changes: 29 additions & 29 deletions electron-builder.ts
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
import type { Configuration } from "electron-builder";
import type { Configuration } from 'electron-builder';

/**
* electron-builder doesn't look for the APPLE_TEAM_ID environment variable for some reason.
* This workaround allows an environment variable to be added to the electron-builder.yml config
* collection. See: https://github.com/electron-userland/electron-builder/issues/7812
*/
/**
* electron-builder doesn't look for the APPLE_TEAM_ID environment variable for some reason.
* This workaround allows an environment variable to be added to the electron-builder.yml config
* collection. See: https://github.com/electron-userland/electron-builder/issues/7812
*/

const config: Configuration = {
productName: "Frappe Books",
appId: "io.frappe.books",
asarUnpack: "**/*.node",
productName: 'Frappe Books',
appId: 'io.frappe.books',
asarUnpack: '**/*.node',
extraResources: [
{ from: 'log_creds.txt', to: '../creds/log_creds.txt' },
{ from: 'translations', to: '../translations' },
{ from: 'templates', to: '../templates' },
],
mac: {
type: "distribution",
category: "public.app-category.finance",
icon: "build/icon.icns",
type: 'distribution',
category: 'public.app-category.finance',
icon: 'build/icon.icns',
notarize: {
teamId: process.env.APPLE_TEAM_ID || ""
teamId: process.env.APPLE_TEAM_ID || '',
},
hardenedRuntime: true,
gatekeeperAssess: false,
darkModeSupport: false,
entitlements: "build/entitlements.mac.plist",
entitlementsInherit: "build/entitlements.mac.plist",
publish: [ "github" ]
entitlements: 'build/entitlements.mac.plist',
entitlementsInherit: 'build/entitlements.mac.plist',
publish: ['github'],
},
win: {
publisherName: "Frappe Technologies Pvt. Ltd.",
publisherName: 'Frappe Technologies Pvt. Ltd.',
signDlls: true,
icon: "build/icon.ico",
publish: [ "github" ],
target: [ "portable", "nsis" ]
icon: 'build/icon.ico',
publish: ['github'],
target: ['portable', 'nsis'],
},
nsis: {
oneClick: false,
perMachine: false,
allowToChangeInstallationDirectory: true,
installerIcon: "build/installericon.ico",
uninstallerIcon: "build/uninstallericon.ico",
publish: [ "github" ]
installerIcon: 'build/installericon.ico',
uninstallerIcon: 'build/uninstallericon.ico',
publish: ['github'],
},
linux: {
icon: "build/icons",
category: "Finance",
publish: [ "github" ],
target: [ "deb", "AppImage", "rpm" ]
}
icon: 'build/icons',
category: 'Finance',
publish: ['github'],
target: ['deb', 'AppImage', 'rpm'],
},
};

export default config;
export default config;

0 comments on commit 93855d7

Please sign in to comment.