소스 검색

pass features thru to cargo on dx bundle (#2271)

Aron Puddy 1 년 전
부모
커밋
c799168666
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      packages/cli/src/cli/bundle.rs

+ 4 - 0
packages/cli/src/cli/bundle.rs

@@ -86,6 +86,10 @@ impl Bundle {
             crate_config.extend_with_platform(platform);
         }
 
+        if let Some(features) = self.build.features {
+            crate_config.set_features(features);
+        }
+
         // build the desktop app
         // Since the `bundle()` function is only run for the desktop platform,
         // the `rust_flags` argument is set to `None`.