This commit is contained in:
Chris Trevino 2017-02-08 11:36:44 -08:00 коммит произвёл GitHub
Родитель dd99e843d1
Коммит d9b38a2938
2 изменённых файлов: 11 добавлений и 39 удалений

Просмотреть файл

@ -1,17 +1,15 @@
*~
__test__
src
wallaby.conf.js
typings/
.editorconfig
tsconfig.json
typings.json
.eslintrc
.npmignore
.gitignore
.travis.yml
.vscode/
src/
coverage/
test/
scripts/
.nyc_output/
.vscode/
test-results.xml
circle.yml
.npmignore
.eslintrc
__test__
wallaby.conf.js
tsconfig.json
yarn.lock
*~

Просмотреть файл

@ -1,26 +0,0 @@
machine:
environment:
YARN_VERSION: 0.18.1
PATH: "${PATH}:${HOME}/.yarn/bin:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6
dependencies:
pre:
- |
if [[ ! -e ~/.yarn/bin/yarn || $(yarn --version) != "${YARN_VERSION}" ]]; then
echo "Download and install Yarn."
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version $YARN_VERSION
else
echo "The correct version of Yarn is already installed."
fi
override:
- yarn install
cache_directories:
- ~/.yarn
- ~/.cache/yarn
test:
override:
- yarn test