Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

@gluestack-style/[email protected]

Compare
Choose a tag to compare
@ankit-tailor ankit-tailor released this 11 Sep 12:31
· 451 commits to main since this release
586c5b0

Feature #409

  • Added GLUESTACK_STYLE_TARGET environment variable to remove unwanted data from orderedResolved prop
  • GLUESTACK_STYLE_TARGET accepts native or web as a value

You can add the following to your package.json scripts,

  "scripts": {
    "start-native": "GLUESTACK_STYLE_TARGET=native expo start -c",
    "start-native-release-mode": "GLUESTACK_STYLE_TARGET=native expo start --no-dev --minify",
    "start-web": "GLUESTACK_STYLE_TARGET=web expo start -c",
    "android": "GLUESTACK_STYLE_TARGET=native yarn expo run:android",
    "ios": "GLUESTACK_STYLE_TARGET=native yarn expo run:ios",
    "web": "GLUESTACK_STYLE_TARGET=web expo start --web"
  },