Skip to content

Commit

Permalink
remove chokidar and use native watcher
Browse files Browse the repository at this point in the history
use yarn
  • Loading branch information
sokra committed Jan 4, 2019
1 parent a1f8f3f commit 805b665
Show file tree
Hide file tree
Showing 10 changed files with 267 additions and 188 deletions.
6 changes: 5 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"env": {
"node": true
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"strict": 0,
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ script: npm run travis

after_success:
- cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
- cat ./coverage/coverage.json | node_modules/codecov.io/bin/codecov.io.js
- bash <(curl -s https://codecov.io/bash) -F $JOB_PART -X gcov
- rm -rf ./coverage
9 changes: 6 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
init:
- git config --global core.autocrlf input

cache:
- "..\\.yarn-cache"

# what combinations to test
environment:
matrix:
Expand All @@ -13,11 +16,11 @@ environment:

install:
- ps: Install-Product node $env:nodejs_version x64
- npm install
- yarn --preferred-cache-folder ..\\.yarn-cache

build: off

test_script:
- node --version
- npm --version
- cmd: npm test
- yarn --version
- cmd: yarn test
Loading

0 comments on commit 805b665

Please sign in to comment.