Skip to content
This repository has been archived by the owner on Jan 6, 2021. It is now read-only.

Commit

Permalink
chore: rm yarn.lock, add lock files to .gitignore (#131)
Browse files Browse the repository at this point in the history
* chore(lock): Sync yarn.lock changes on clean install

The package dependency version for `babel-cli` are out of sync in `package.json`(`6.24.1`) and
`yarn.lock`(`6.23.0`). Add changes made to lockfile by yarn after clean install

* chore: rm yarn.lock, add lock files to .gitignore

Remove yarn.lock and add yarn.lock, package-lock.json to .gitignore

* ci(travis): Use npm for running scripts

travis detects whether yarn is being used by looking for the lock file. Since the previous commit
removed yarn.lock, travis build would fail for script execution with yarn. Switch to npm to fix
build failure
  • Loading branch information
sudo-suhas authored and Kent C. Dodds committed Aug 2, 2017
1 parent 487241d commit 0fe3482
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5,734 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -4,3 +4,6 @@ dist
.opt-in
.opt-out

# Lock files
yarn.lock
package-lock.json
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -8,10 +8,10 @@ notifications:
node_js:
- '6'
script:
- yarn start validate
- npm start validate
after_success:
- yarn start report-coverage
- yarn start release
- npm start report-coverage
- npm start release
branches:
only:
- master

0 comments on commit 0fe3482

Please sign in to comment.