Skip to content

Instantly share code, notes, and snippets.

@matijagrcic
Last active August 19, 2022 12:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matijagrcic/a8541215766af653e32acd0f1d648e2e to your computer and use it in GitHub Desktop.
Save matijagrcic/a8541215766af653e32acd0f1d648e2e to your computer and use it in GitHub Desktop.
Recommended extensions and tasks for React Native
{
// See https://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"esbenp.prettier-vscode",
"msjsdiag.vscode-react-native",
"mhutchie.git-graph",
"eamodio.gitlens",
"donjayamanne.githistory",
"wix.vscode-import-cost",
"byCedric.vscode-expo",
"streetsidesoftware.code-spell-checker",
"richardwillis.vscode-gradle-extension-pack",
"adelphes.android-dev-ext",
"srmeyers.git-prefix",
"pflannery.vscode-versionlens",
"jondot.vscode-hygen",
"josetr.cmake-language-support-vscode",
]
}
{
// See https://code.visualstudio.com/docs/editor/tasks
// for the documentation about the tasks.json format
"tasks": [
{
"type": "shell",
"label": "Run Android - Development",
"command": "yarn android:development"
},
{
"type": "shell",
"label": "Build Android - Staging",
"command": "yarn android:staging"
},
{
"type": "shell",
"label": "Run iOS - Development - Mini",
"command": "yarn ios:development:mini"
},
{
"type": "shell",
"label": "Run iOS - Staging - Mini",
"command": "yarn ios:staging:mini"
},
{
"type": "shell",
"label": "Compile",
"command": "yarn run compile"
},
{
"type": "shell",
"label": "Prepare clean build",
"command": "yarn run prepare-clean-build"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment