feat: Add deep link plugin for mobile (#504)

Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
Co-authored-by: Lucas Nogueira <lucas@tauri.app>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
Fabian-Lars
2023-09-14 13:55:51 +02:00
committed by GitHub
parent 2409b01fe7
commit eccd6f977a
150 changed files with 12067 additions and 62 deletions
+20 -3
View File
@@ -52,8 +52,7 @@
"shell",
"updater",
"window"
],
"postversion": "pnpm install --no-frozen-lockfile"
]
},
"api-example-js": {
"path": "./examples/api",
@@ -74,7 +73,16 @@
"shell-js",
"updater-js",
"window-js"
]
],
"postversion": "pnpm install --no-frozen-lockfile"
},
"deep-link-example-js": {
"path": "./plugins/deep-link/examples/app",
"manager": "javascript",
"publish": false,
"dependencies": ["deep-link-js"],
"postversion": "pnpm install --no-frozen-lockfile"
},
"app": {
@@ -122,6 +130,15 @@
"manager": "javascript"
},
"deep-link": {
"path": "./plugins/deep-link",
"manager": "rust"
},
"deep-link-js": {
"path": "./plugins/deep-link",
"manager": "javascript"
},
"fs": {
"path": "./plugins/fs",
"manager": "rust"
+6
View File
@@ -0,0 +1,6 @@
---
"deep-link": major
"deep-link-js": major
---
Initial release.