Skip to content

Instantly share code, notes, and snippets.

@andykais
Created August 7, 2018 22:51
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 andykais/ced7c302747ec86055810e160d603ff5 to your computer and use it in GitHub Desktop.
Save andykais/ced7c302747ec86055810e160d603ff5 to your computer and use it in GitHub Desktop.
test a npm package locally in as close a manner to a published package as possible
function test_package_local() {
local cwd="$PWD"
local package_folder=$1
cd $1
local tarball=$(npm pack)
local fullpath="$package_folder/$tarball"
npm install "$fullpath"
cd "$cwd"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment