Skip to content

Commit

Permalink
Generated yarn.lock from package-lock.json
Browse files Browse the repository at this point in the history
This commit uses the command `yarn import` to generate a `yarn.lock`
file from an existing `package-lock.json`. Unfortunately, a
[known bug](yarnpkg/yarn#2240) exists. When
one runs `yarn install`, yarn **does not** actually install the
dependencies in `node_modules`; instead it only creates a "yarn
integrity check file."

To actually install the dependencies, one must run:

- `yarn import`
- `rm -rf node_modules`
- `yarn install`
- `rm -rf package-lock.json` (to avoid future warnings about multiple
  lock files).
  • Loading branch information
laj committed Sep 12, 2022
1 parent 21e6973 commit dc84b5e
Show file tree
Hide file tree
Showing 2 changed files with 2,258 additions and 6,904 deletions.

0 comments on commit dc84b5e

Please sign in to comment.