From d9b38a293875031bfd2f55691ad2fdda47230d74 Mon Sep 17 00:00:00 2001 From: Chris Trevino Date: Wed, 8 Feb 2017 11:36:44 -0800 Subject: [PATCH] Update .npmignore (#14) --- .npmignore | 24 +++++++++++------------- circle.yml | 26 -------------------------- 2 files changed, 11 insertions(+), 39 deletions(-) delete mode 100644 circle.yml diff --git a/.npmignore b/.npmignore index 22fa70e..a75a737 100644 --- a/.npmignore +++ b/.npmignore @@ -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 +*~ diff --git a/circle.yml b/circle.yml deleted file mode 100644 index c83403a..0000000 --- a/circle.yml +++ /dev/null @@ -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