Skip to content

Instantly share code, notes, and snippets.

@willmendesneto
Created July 13, 2021 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willmendesneto/fda99dd27859571649e74d2cb2e02a54 to your computer and use it in GitHub Desktop.
Save willmendesneto/fda99dd27859571649e74d2cb2e02a54 to your computer and use it in GitHub Desktop.
# Creating folder jumping on the created folder
mkdir multiple-package-versions-in-project && \
cd multiple-package-versions-in-project \
# Starting a NPM project
npm init -y && \
# Installing old & new versions of `feature-toggle-service` package
npm install --save \
  feature-toggle-service@npm:feature-toggle-service@4.0.0 \
  feature-toggle-service-next@npm:feature-toggle-service@6.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment