-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Remove globs from workspace.members for renovate
- Loading branch information
1 parent
10a4d76
commit 7093a4d
Showing
1 changed file
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,37 @@ | ||
[workspace] | ||
members = ["plugins/*", "plugins/*/examples/*/src-tauri"] | ||
# Listed without globs to prevent issues with renovate's baseBranches config. | ||
members = [ | ||
"plugins/authenticator", | ||
"plugins/autostart", | ||
"plugins/fs-extra", | ||
"plugins/fs-watch", | ||
"plugins/localhost", | ||
"plugins/log", | ||
"plugins/persisted-scope", | ||
"plugins/positioner", | ||
"plugins/single-instance", | ||
"plugins/sql", | ||
"plugins/store", | ||
"plugins/stronghold", | ||
"plugins/upload", | ||
"plugins/websocket", | ||
"plugins/window-state", | ||
"plugins/single-instance/examples/vanilla/src-tauri", | ||
"plugins/store/examples/AppSettingsManager/src-tauri", | ||
"plugins/websocket/examples/tauri-app/src-tauri", | ||
] | ||
resolver = "2" | ||
|
||
[workspace.dependencies] | ||
serde = { version = "1", features = ["derive"] } | ||
log = "0.4" | ||
serde = {version = "1", features = ["derive"]} | ||
serde_json = "1" | ||
tauri = "1" | ||
tauri-build = "1" | ||
serde_json = "1" | ||
thiserror = "1" | ||
|
||
[workspace.package] | ||
authors = ["Tauri Programme within The Commons Conservancy"] | ||
edition = "2021" | ||
authors = [ "Tauri Programme within The Commons Conservancy" ] | ||
license = "Apache-2.0 OR MIT" | ||
rust-version = "1.64" |