Lösung für npm 'Usage of the --dev option is deprecated. Use --only=dev instead.'
English
Deutsch
Problem:
Du möchtest Entwicklungsabhängigkeiten für ein NodeJS-Paket installieren mit
npm_install_deprecated.sh
npm install --devaber du erhältst diese Fehlermeldung:
npm_warn.txt
npm WARN install Usage of the `--dev` option is deprecated. Use `--only=dev` instead.Lösung
Du kannst
npm_install.sh
npm install # Normale (nicht Entwicklungs-) Abhängigkeiten installieren
npm install --only=dev # Nur Entwicklungsabhängigkeiten installierenverwenden. Beachte, dass npm install --only=dev nur Entwicklungsabhängigkeiten installiert, daher möchtest du in den meisten Fällen beide Befehle ausführen.
Check out similar posts by category:
NodeJS
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow