@@ -0,0 +1,5 @@
+---
+"tauri-cli": minor
+
+You can now run `cargo tauri build -t none` to speed up the build if you don't need executables.
@@ -71,6 +71,9 @@ impl Build {
if let Some(names) = self.targets {
let mut types = vec![];
for name in names {
+ if name == "none" {
+ break;
+ }
match PackageType::from_short_name(&name) {
Some(package_type) => {
types.push(package_type);