Skip to content

Commit

Permalink
Migrate to Yarn (MetaMask#4409)
Browse files Browse the repository at this point in the history
This repo has been primarily using an npm lockfile until very recently
(in MetaMask#4384), but it has long used `yarn` in CI. The repo has now been
fully converted to using `yarn` everywhere.

The Yarn lockfile was generated by running `npm install` to repair the
outdated `package-lock.json` file, then `yarn import`.

`package-lock.json` has been added to `.gitignore` so that it doesn't
get accidentally re-added again.
  • Loading branch information
Gudahtt authored Nov 9, 2020
1 parent afc0c27 commit f5161d1
Show file tree
Hide file tree
Showing 4 changed files with 1,095 additions and 2,369 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!
- run: npm run ci
- run: yarn ci
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

/package-lock.json

# Created by https://www.gitignore.io/api/osx,node

### Node ###
Expand Down
Loading

0 comments on commit f5161d1

Please sign in to comment.