We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1891618 commit 4d507f9Copy full SHA for 4d507f9
.changes/cli-no-targets.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri-cli": minor
3
4
+
5
+You can now run `cargo tauri build -t none` to speed up the build if you don't need executables.
cli/core/src/build.rs
@@ -71,6 +71,9 @@ impl Build {
71
if let Some(names) = self.targets {
72
let mut types = vec![];
73
for name in names {
74
+ if name == "none" {
75
+ break;
76
+ }
77
match PackageType::from_short_name(&name) {
78
Some(package_type) => {
79
types.push(package_type);
0 commit comments