fix(ci): enable sqlite feature when publishing the sql plugin

pull/404/head sql-js-v2.0.0-alpha.0
Lucas Nogueira 2 years ago
parent 94b3747a9c
commit 7906397c64
No known key found for this signature in database
GPG Key ID: FFEA6C72E73482F1

@ -231,7 +231,28 @@
"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": {
"path": "./plugins/sql",

@ -7,6 +7,9 @@ license = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
[package.metadata.docs.rs]
features = [ "sqlite" ]
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }

Loading…
Cancel
Save