mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-09-26 21:41:48 +02:00
fix(ci): enable sqlite feature when publishing the sql plugin
This commit is contained in:
+22
-1
@@ -231,7 +231,28 @@
|
|||||||
|
|
||||||
"sql": {
|
"sql": {
|
||||||
"path": "./plugins/sql",
|
"path": "./plugins/sql",
|
||||||
"manager": "rust"
|
"manager": "rust",
|
||||||
|
"publish": [
|
||||||
|
{
|
||||||
|
"command": "cargo package --no-verify",
|
||||||
|
"dryRunCommand": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "echo '<details>\n<summary><em><h4>Cargo Publish</h4></em></summary>\n\n```'",
|
||||||
|
"dryRunCommand": true,
|
||||||
|
"pipe": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "cargo publish --features sqlite",
|
||||||
|
"dryRunCommand": "cargo publish --features sqlite --dry-run",
|
||||||
|
"pipe": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "echo '```\n\n</details>\n'",
|
||||||
|
"dryRunCommand": true,
|
||||||
|
"pipe": true
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"sql-js": {
|
"sql-js": {
|
||||||
"path": "./plugins/sql",
|
"path": "./plugins/sql",
|
||||||
|
|||||||
@@ -7,6 +7,9 @@ license = { workspace = true }
|
|||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
|
|
||||||
|
[package.metadata.docs.rs]
|
||||||
|
features = [ "sqlite" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
serde_json = { workspace = true }
|
serde_json = { workspace = true }
|
||||||
|
|||||||
Reference in New Issue
Block a user