mirror of
https://github.com/tauri-apps/rustdocusaurus.git
synced 2026-02-04 02:31:18 +01:00
29 lines
767 B
JSON
29 lines
767 B
JSON
{
|
|
"gitSiteUrl": "https://github.com/tauri-apps/rustdocusaurus",
|
|
"pkgManagers": {
|
|
"javascript": {
|
|
"version": true,
|
|
"publish": true
|
|
}
|
|
},
|
|
"packages": {
|
|
"script": {
|
|
"path": "./",
|
|
"manager": "javascript",
|
|
"publish": false
|
|
},
|
|
"action": {
|
|
"path": "./github-action",
|
|
"manager": "javascript",
|
|
"preversion": [{ "command": "yarn", "runFromRoot": true }, "yarn", "yarn build"],
|
|
"getPublishedVersion": "git tag v${ pkgFile.version } 2> OUT= || echo ${ pkgFile.version }",
|
|
"publish": [
|
|
"git tag v${ pkgFile.versionMajor } -f",
|
|
"git tag v${ pkgFile.versionMajor }.${ pkgFile.versionMinor } -f",
|
|
"git push --tags -f"
|
|
],
|
|
"dependencies": ["script"]
|
|
}
|
|
}
|
|
}
|