mirror of
https://github.com/tauri-apps/tauri.git
synced 2025-01-05 18:47:50 +03:00
63 lines
1.7 KiB
JSON
Executable File
63 lines
1.7 KiB
JSON
Executable File
{
|
|
"gitSiteUrl": "https://www.github.com/your-org/tauri-plugin-{{ plugin_name }}/",
|
|
"pkgManagers": {
|
|
"rust": {
|
|
"version": true,
|
|
"getPublishedVersion": "cargo search ${ pkg.pkg } --limit 1 | sed -nE 's/^[^\"]*\"//; s/\".*//1p' -",
|
|
"prepublish": [
|
|
"sudo apt-get update",
|
|
"sudo apt-get install -y webkit2gtk-4.0",
|
|
"cargo install cargo-audit",
|
|
{
|
|
"command": "cargo generate-lockfile",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo '<details>\n<summary><em><h4>Cargo Audit</h4></em></summary>\n\n```'",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "cargo audit ${ process.env.CARGO_AUDIT_OPTIONS || '' }",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo '```\n\n</details>\n'",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
}
|
|
],
|
|
"publish": [
|
|
{
|
|
"command": "cargo package --no-verify",
|
|
"dryRunCommand": true
|
|
},
|
|
{
|
|
"command": "echo '<details>\n<summary><em><h4>Cargo Publish</h4></em></summary>\n\n```'",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "cargo publish",
|
|
"dryRunCommand": "cargo publish --dry-run",
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo '```\n\n</details>\n'",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"packages": {
|
|
"tauri-plugin-{{ plugin_name }}": {
|
|
"path": ".",
|
|
"manager": "rust",
|
|
"releaseTag": "v${ pkgFile.version }"
|
|
}
|
|
}
|
|
}
|