Skip to content

Commit

Permalink
Add Travis config and update dependencies
Browse files Browse the repository at this point in the history
I've chosen here to make the project use Yarn instead
of having both a package-lock.json and yarn.lock file
which is not recommended
  • Loading branch information
Mark Robinson committed Jun 15, 2019
1 parent af73fe6 commit d727617
Show file tree
Hide file tree
Showing 5 changed files with 161 additions and 10,888 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.log
dist/
.idea/
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
language: node_js
cache:
yarn: true
directories:
- node_modules
install:
- yarn install
script:
- yarn test
Loading

0 comments on commit d727617

Please sign in to comment.