Skip to content

Commit

Permalink
fix(preset-env): Update data (#6719)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Dec 26, 2022
1 parent d8d9965 commit d506c96
Show file tree
Hide file tree
Showing 4 changed files with 2,003 additions and 57 deletions.
12 changes: 12 additions & 0 deletions crates/preset_env_base/src/lib.rs
Expand Up @@ -18,6 +18,18 @@ pub mod version;
pub struct BrowserData<T: Default> {
#[serde(default)]
pub chrome: T,
#[serde(default, rename = "chrome-android")]
pub chrome_android: T,
#[serde(default, rename = "firefox-android")]
pub firerfox_android: T,
#[serde(default, rename = "opera-android")]
pub opera_android: T,

#[serde(default)]
pub quest: T,
#[serde(default, rename = "react-native")]
pub react_native: T,

#[serde(default)]
pub and_chr: T,
#[serde(default)]
Expand Down

0 comments on commit d506c96

Please sign in to comment.