mirror of
https://github.com/tauri-apps/tauri-plugin-single-instance.git
synced 2026-02-04 10:51:17 +01:00
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"gitSiteUrl": "https://www.github.com/tauri-apps/tauri-plugin-single-instance/",
|
|
"pkgManagers": {
|
|
"rust": {
|
|
"version": true,
|
|
"getPublishedVersion": "cargo search ${ pkg.pkg } --limit 1 | sed -nE 's/^[^\"]*\"//; s/\".*//1p' -",
|
|
"publish": [
|
|
{
|
|
"command": "cargo package --allow-dirty",
|
|
"dryRunCommand": true
|
|
},
|
|
{
|
|
"command": "echo '<details>\n<summary><em><h4>Cargo Publish</h4></em></summary>\n\n```'",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo \"\\`\\`\\`\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "cargo publish",
|
|
"dryRunCommand": "cargo publish --dry-run --allow-dirty",
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo '```\n\n</details>\n'",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"packages": {
|
|
"tauri-plugin-single-instance": {
|
|
"path": ".",
|
|
"manager": "rust"
|
|
}
|
|
}
|
|
} |