yarn.lock 转换为 package-lock.json
synp
Convert yarn.lock
to package-lock.json
and vice versa.
install
npm install -g synp
command line usage
yarn.lock => package-lock.json
yarn # be sure the node_modules folder dir and is updated
synp --source-file /path/to/yarn.lock
# will create /path/to/package-lock.json
package-lock.json 转换为 yarn.lock
package-lock.json => yarn.lock
npm install # be sure the node_modules dir exists and is updated
synp --source-file /path/to/package-lock.json
# will create /path/to/yarn.lock