mirror of
https://github.com/tauri-apps/tauri-action.git
synced 2026-01-31 00:35:20 +01:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"gitSiteUrl": "https://github.com/tauri-apps/tauri-action/",
|
|
"pkgManagers": {
|
|
"javascript": {
|
|
"version": true,
|
|
"getPublishedVersion": "npm view ${ pkg.pkg } version",
|
|
"prepublish": [
|
|
{
|
|
"command": "npm pack",
|
|
"dryRunCommand": true
|
|
}
|
|
],
|
|
"publish": [
|
|
{
|
|
"command": "echo # Package Publish",
|
|
"dryRunCommand": "echo # Package Publish",
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "npm publish --access public",
|
|
"dryRunCommand": "echo publish here",
|
|
"pipe": true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"packages": {
|
|
"action": {
|
|
"path": "./packages/action",
|
|
"manager": "javascript",
|
|
"postpublish": [
|
|
"git tag ${ pkg.pkg }-v${ pkgFile.versionMajor } -f",
|
|
"git tag ${ pkg.pkg }-v${ pkgFile.versionMajor }.${ pkgFile.versionMinor } -f",
|
|
"git push --tags -f"
|
|
],
|
|
"dependencies": [
|
|
"core"
|
|
],
|
|
"assets": [
|
|
{
|
|
"path": "./packages/action/tauri-action-${ pkgFile.version }.tgz",
|
|
"name": "tauri-action-${ pkgFile.version }.tgz"
|
|
}
|
|
]
|
|
},
|
|
"core": {
|
|
"path": "./packages/core",
|
|
"manager": "javascript",
|
|
"assets": [
|
|
{
|
|
"path": "./packages/core/tauri-apps-action-core-${ pkgFile.version }.tgz",
|
|
"name": "action-core-${ pkgFile.version }.tgz"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|