Files
firezone/rust/gui-client/src-tauri/tauri.conf.json
Jamil 6f7f6a4f34 style: Enforce code style across all supported languages using Prettier (#7322)
This ensure that we run prettier across all supported filetypes to check
for any formatting / style inconsistencies. Previously, it was only run
for files in the website/ directory using a deprecated pre-commit
plugin.

The benefit to keeping this in our pre-commit config is that devs can
optionally run these checks locally with `pre-commit run --config
.github/pre-commit-config.yaml`.

---------

Signed-off-by: Jamil <jamilbk@users.noreply.github.com>
Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
2024-11-13 00:19:15 +00:00

80 lines
1.9 KiB
JSON

{
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"frontendDist": "../dist"
},
"bundle": {
"active": true,
"shortDescription": "Firezone",
"linux": {
"deb": {
"files": {
"/usr/lib/systemd/system/firezone-client-ipc.service": "./deb_files/firezone-client-ipc.service",
"/usr/lib/sysusers.d/firezone-client-ipc.conf": "./deb_files/sysusers.conf"
}
}
},
"targets": ["deb", "msi"],
"windows": {
"wix": {
"bannerPath": "./win_files/banner.png",
"componentRefs": ["FirezoneClientIpcService"],
"dialogImagePath": "./win_files/install_dialog.png",
"fragmentPaths": ["./win_files/service.wxs"],
"template": "./win_files/main.wxs"
}
},
"icon": [
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/32x32.png",
"icons/icon.ico",
"icons/icon.png"
],
"publisher": "Firezone"
},
"mainBinaryName": "firezone-client-gui",
"identifier": "dev.firezone.client",
"plugins": {},
"productName": "firezone-client-gui",
"app": {
"withGlobalTauri": true,
"security": {
"csp": null
},
"windows": [
{
"label": "about",
"title": "About Firezone",
"url": "src/about.html",
"fullscreen": false,
"resizable": true,
"width": 640,
"height": 480,
"visible": false
},
{
"label": "settings",
"title": "Settings",
"url": "src/settings.html",
"fullscreen": false,
"resizable": true,
"width": 640,
"height": 480,
"visible": false
},
{
"label": "welcome",
"title": "Welcome",
"url": "src/welcome.html",
"fullscreen": false,
"resizable": true,
"width": 640,
"height": 480,
"visible": false
}
]
}
}