feat(ci): setup

This commit is contained in:
Lucas Nogueira
2021-09-28 10:10:07 -03:00
parent a47dc390e2
commit f71e328850
9 changed files with 272 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"gitSiteUrl": "https://www.github.com/tauri-apps/tauri-plugin-websocket/",
"pkgManagers": {
"rust": {
"version": true,
"publish": true,
"getPublishedVersion": "cargo search ${ pkg.pkg } --limit 1 | sed -nE 's/^[^\"]*\"//; s/\".*//1p' -"
},
"javascript": {
"version": true,
"publish": true,
"getPublishedVersion": "npm view ${ pkgFile.pkg.name } version"
}
},
"packages": {
"tauri-plugin-websocket-api": {
"path": "./typescript",
"manager": "javascript",
"dependencies": ["tauri-plugin-websocket"]
},
"tauri-plugin-websocket": {
"path": ".",
"manager": "rust"
}
}
}