Last active
October 25, 2019 19:14
-
-
Save hperantunes/50c5776f7e53f0a28890dd3ede0ae6b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$package = (Get-Content package.json) | ConvertFrom-Json | Select-Object -Property name,version | |
$versions = npm view $package.name versions | ConvertFrom-json | |
if ($versions[1] -split "`n" -contains $package.version) { | |
throw "Package $($package.name) already has version $($package.version) published" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment