-
-
Notifications
You must be signed in to change notification settings - Fork 280
v7 #730
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
|
This would also be nice because it replaces (edit updates sharp) and therefore closes a high severity vulnerability in tar-fs. 😄 |
|
@Magnus-V Actually, I think it will continue to use Also confirmed here: |
# Conflicts: # example/yarn.lock
(After a check with a legal team, it's actually OK)
|
@nandorojo Just shipped import "dotenv/config";
import { ExpoConfig, ConfigContext } from "expo/config";
export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
// …
platforms: ["android", "ios", "web"], // must be explicit
plugins: [
[
"react-native-bootsplash",
{
logo: "svgs/light-logo.svg", // required
background: "#F5FCFF", // optional (default: "#fff")
logoWidth: 100, // optional (default: 100)
assetsOutput: "assets/bootsplash", // optional (default: "assets/bootsplash")
android: {
darkContentBarsStyle: true, // optional
},
// Addon options
licenseKey: process.env.BOOTSPLASH_LICENSE_KEY,
brand: "svgs/light-brand.svg", // optional
brandWidth: 80, // optional (default: 80)
darkBackground: "#00090A", // optional
darkLogo: "svgs/dark-logo.svg", // optional
darkBrand: "svgs/dark-brand.svg", // optional,
},
],
],
});Other changes:
|
|
So good! I'll get this set up in v0 |
No description provided.