watchman watch-del-all
rm -rf $TMPDIR/react-*
rm -rf build/ios
yarn cache clean
lsof -i :8081
kill -9 9771
kill $(lsof -t -i:8081)
yarn start --reset-cache
| trigger: | |
| - none | |
| pool: | |
| vmImage: 'ubuntu-latest' | |
| variables: | |
| YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn | |
| GRADLE_USER_HOME: $(Pipeline.Workspace)/.gradle |
| Param( | |
| [parameter(Mandatory=$false,ValueFromPipeline=$true)][string]$content="", | |
| [parameter(Mandatory=$false)][string]$inputFile="", | |
| [parameter(Mandatory=$false)][string]$outputFile="", | |
| [parameter(Mandatory=$true)][hashtable]$tokens | |
| ) | |
| if ([string]::IsNullOrEmpty($content)) { | |
| if ([string]::IsNullOrEmpty($inputFile)) { |
| version: '2' | |
| services: | |
| myapp: | |
| build: . | |
| container_name: "myapp" | |
| image: debian/latest | |
| environment: | |
| - NODE_ENV=development | |
| - FOO=bar | |
| volumes: |
| /* | |
| * EXAMPLE USAGE | |
| * This component is text that will bounce on mount and | |
| * every time `this.props.someProperty` changes. | |
| * Too bad react native doesn't support decorators yet :/ | |
| */ | |
| import React, { | |
| Component, | |
| StyleSheet, |