web-dev-qa-db-fra.com

comment convertir package-lock.json en yarn.lock?

J'ai un projet avec package-lock.json fichier.

Maintenant, je veux générer yarn.lock fichier basé sur package-lock.json fichier ou existait node_modules du projet.

Comment puis-je faire ceci? Merci.

10
slideshowp2

Vous pouvez utiliser importation de fils pour générer yarn.lock fichier à partir d'un _npm installé node_modules dossier.

Par exemple:

☁  api [develop] ⚡  yarn import   
yarn import v1.17.3
info found npm package-lock.json, converting to yarn.lock
warning jest > jest-cli > jest-config > jest-environment-jsdom > jsdom > [email protected]: use String.prototype.padStart()
success Saved lockfile.
✨  Done in 21.56s.
16
slideshowp2

Vous pouvez utiliser l'outil synp pour convertir dans les deux sens:

synp --source-file yarn.lock            # will create package-lock.json
synp --source-file package-lock.json    # will create yarn.lock
0
hlovdal