mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-03 02:09:50 +03:00
03b9cd1d58
If they're isn't a present fix, it doesn't make sense to fail a publish.
176 lines
4.5 KiB
JSON
176 lines
4.5 KiB
JSON
{
|
|
"gitSiteUrl": "https://www.github.com/tauri-apps/tauri/",
|
|
"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",
|
|
{
|
|
"command": "cargo generate-lockfile",
|
|
"dryRunCommand": true,
|
|
"runFromRoot": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo \"# Cargo Audit\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo \"\\`\\`\\`\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "cargo audit fix --dry-run",
|
|
"dryRunCommand": true,
|
|
"runFromRoot": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo \"\\`\\`\\`\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
}
|
|
],
|
|
"publish": [
|
|
{
|
|
"command": "cargo package --allow-dirty",
|
|
"dryRunCommand": true
|
|
},
|
|
{
|
|
"command": "echo \"# Cargo Publish\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo \"\\`\\`\\`\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "cargo publish --no-verify",
|
|
"dryRunCommand": "cargo publish --no-verify --dry-run --allow-dirty",
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo \"\\`\\`\\`\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
}
|
|
],
|
|
"postpublish": [
|
|
"git tag ${ pkg.pkg }-v${ pkgFile.versionMajor } -f",
|
|
"git tag ${ pkg.pkg }-v${ pkgFile.versionMajor }.${ pkgFile.versionMinor } -f",
|
|
"git push --tags -f"
|
|
],
|
|
"assets": [
|
|
{
|
|
"path": "${ pkg.path }/${ pkg.pkg }-${ pkgFile.version }.crate",
|
|
"name": "${ pkg.pkg }-${ pkgFile.version }.crate"
|
|
}
|
|
]
|
|
},
|
|
"javascript": {
|
|
"version": true,
|
|
"getPublishedVersion": "npm view ${ pkgFile.pkg.name } version",
|
|
"prepublish": [
|
|
{
|
|
"command": "yarn",
|
|
"dryRunCommand": true
|
|
},
|
|
{
|
|
"command": "echo \"# Yarn Audit\n\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo \"<details>\n<summary>click to view</summary>\n\n\\`\\`\\`\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "yarn audit",
|
|
"dryRunCommand": true,
|
|
"runFromRoot": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo \"\\`\\`\\`\n\n</details>\n\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "npm pack",
|
|
"dryRunCommand": true
|
|
}
|
|
],
|
|
"publish": [
|
|
{
|
|
"command": "echo \"# NPM Package Publish\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo \"\\`\\`\\`\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "npm publish --access public",
|
|
"dryRunCommand": "npm publish --dry-run --access public",
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo \"\\`\\`\\`\"",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
}
|
|
],
|
|
"postpublish": [
|
|
"git tag ${ pkg.pkg }-v${ pkgFile.versionMajor } -f",
|
|
"git tag ${ pkg.pkg }-v${ pkgFile.versionMajor }.${ pkgFile.versionMinor } -f",
|
|
"git push --tags -f"
|
|
]
|
|
}
|
|
},
|
|
"packages": {
|
|
"tauri.js": {
|
|
"path": "./cli/tauri.js",
|
|
"manager": "javascript",
|
|
"dependencies": ["tauri"],
|
|
"assets": [
|
|
{
|
|
"path": "./cli/tauri.js/tauri-${ pkgFile.version }.tgz",
|
|
"name": "tauri.js-${ pkgFile.version }.tgz"
|
|
}
|
|
]
|
|
},
|
|
"tauri-bundler": {
|
|
"path": "./cli/tauri-bundler",
|
|
"manager": "rust"
|
|
},
|
|
"tauri-utils": {
|
|
"path": "./tauri-utils",
|
|
"manager": "rust"
|
|
},
|
|
"tauri-api": {
|
|
"path": "./tauri-api",
|
|
"manager": "rust",
|
|
"dependencies": ["tauri-utils"]
|
|
},
|
|
"tauri-updater": {
|
|
"path": "./tauri-updater",
|
|
"manager": "rust",
|
|
"publish": false
|
|
},
|
|
"tauri": {
|
|
"path": "./tauri",
|
|
"manager": "rust",
|
|
"dependencies": ["tauri-api", "tauri-updater"]
|
|
}
|
|
}
|
|
}
|