mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-15 21:53:59 +03:00
995de57a76
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
678 B
678 B
tauri | tauri-build | tauri-codegen | tauri-macros | tauri-utils | cli.rs |
---|---|---|---|---|---|
patch | patch | patch | patch | patch | patch |
Adds support for using JSON5 format for the tauri.conf.json
file, along with also supporting the .json5
extension.
Here is the logic flow that determines if JSON or JSON5 will be used to parse the config:
- Check if
tauri.conf.json
exists a. Parse it withserde_json
b. Parse it withjson5
ifserde_json
fails c. Return originalserde_json
error if all above steps failed - Check if
tauri.conf.json5
exists a. Parse it withjson5
b. Return error if all above steps failed - Return error if all above steps failed