Sha256: 00f09a07a9b5af6d152b293a7e77d923212f3e0457f20839261f707f61d12081
Contents?: true
Size: 388 Bytes
Versions: 26
Compression:
Stored size: 388 Bytes
Contents
#!/bin/bash set -e if [ -z "$(which yarn)" ]; then echo "A local yarn installation is required for yarn development." >&2 exit 127 fi # setup test fixtures BASE_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" cd $BASE_PATH/test/fixtures/yarn if [ "$1" == "-f" ]; then find . -not -regex "\.*" -and -not -name "package\.json" -print0 | xargs -0 rm -rf fi yarn install
Version data entries
26 entries across 26 versions & 1 rubygems