🚀. Socket Launch Week Day 2:Introducing Manifest Alerts.Learn more
Sign In

@jchip/nvm

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jchip/nvm - npm Package Compare versions

Comparing version
1.5.4
to
1.5.5
+27
dist/nvm.js.LICENSE.txt
/*! *****************************************************************************
Copyright (c) Microsoft Corporation.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */
/*! http://mths.be/fromcodepoint v0.1.0 by @mathias */
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
/**
* @license
* Lodash <https://lodash.com/>
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
* Released under MIT license <https://lodash.com/license>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
*/

Sorry, the diff of this file is too big to display

+1
-1

@@ -6,3 +6,3 @@ param (

$nvmVersion = "1.5.4"
$nvmVersion = "1.5.5"
$nvmVersionV = "v$nvmVersion"

@@ -9,0 +9,0 @@ $DisableInstallNvmFromTgz = $false

NVM_VERSION="1.5.4"
NVM_VERSION="1.5.5"
NVM_VERSION_V="v${NVM_VERSION}"

@@ -4,0 +4,0 @@

{
"name": "@jchip/nvm",
"description": "nvm: a universal node.js version manager for Windows (no admin) and Unix",
"version": "1.5.4",
"version": "1.5.5",
"author": "Tom.Huang <hzlhu.dargon@gmail.com>",

@@ -6,0 +6,0 @@ "contributors": [

@@ -55,3 +55,3 @@ # @jchip/nvm

cd $Env:USERPROFILE;
Invoke-WebRequest https://raw.githubusercontent.com/jchip/nvm/v1.5.4/install.ps1 -OutFile install.ps1;
Invoke-WebRequest https://raw.githubusercontent.com/jchip/nvm/v1.5.5/install.ps1 -OutFile install.ps1;
.\install.ps1 -nvmhome $Env:USERPROFILE\nvm;

@@ -67,3 +67,3 @@ del install.ps1

cd $Env:USERPROFILE;
Invoke-WebRequest https://unpkg.com/@jchip/nvm@1.5.4/install.ps1 -OutFile install.ps1;
Invoke-WebRequest https://unpkg.com/@jchip/nvm@1.5.5/install.ps1 -OutFile install.ps1;
.\install.ps1 -nvmhome $Env:USERPROFILE\nvm;

@@ -79,3 +79,3 @@ del install.ps1

cd $Env:USERPROFILE;
Invoke-WebRequest https://cdn.jsdelivr.net/npm/@jchip/nvm@1.5.4/install.ps1 -OutFile install.ps1;
Invoke-WebRequest https://cdn.jsdelivr.net/npm/@jchip/nvm@1.5.5/install.ps1 -OutFile install.ps1;
.\install.ps1 -nvmhome $Env:USERPROFILE\nvm;

@@ -140,3 +140,3 @@ del install.ps1

```bash
NVM_HOME=~/nvm curl -o- https://raw.githubusercontent.com/jchip/nvm/v1.5.4/install.sh | bash
NVM_HOME=~/nvm curl -o- https://raw.githubusercontent.com/jchip/nvm/v1.5.5/install.sh | bash
```

@@ -147,3 +147,3 @@

```bash
NVM_HOME=~/nvm wget -qO- https://raw.githubusercontent.com/jchip/nvm/v1.5.4/install.sh | bash
NVM_HOME=~/nvm wget -qO- https://raw.githubusercontent.com/jchip/nvm/v1.5.5/install.sh | bash
```

@@ -158,3 +158,3 @@

```bash
NVM_HOME=~/nvm curl -o- https://unpkg.com/@jchip/nvm@1.5.4/install.sh | bash
NVM_HOME=~/nvm curl -o- https://unpkg.com/@jchip/nvm@1.5.5/install.sh | bash
```

@@ -165,3 +165,3 @@

```bash
NVM_HOME=~/nvm wget -qO- https://unpkg.com/@jchip/nvm@1.5.4/install.sh | bash
NVM_HOME=~/nvm wget -qO- https://unpkg.com/@jchip/nvm@1.5.5/install.sh | bash
```

@@ -176,3 +176,3 @@

```bash
NVM_HOME=~/nvm curl -o- https://cdn.jsdelivr.net/npm/@jchip/nvm@1.5.4/install.sh | bash
NVM_HOME=~/nvm curl -o- https://cdn.jsdelivr.net/npm/@jchip/nvm@1.5.5/install.sh | bash
```

@@ -183,3 +183,3 @@

```bash
NVM_HOME=~/nvm wget -qO- https://cdn.jsdelivr.net/npm/@jchip/nvm@1.5.4/install.sh | bash
NVM_HOME=~/nvm wget -qO- https://cdn.jsdelivr.net/npm/@jchip/nvm@1.5.5/install.sh | bash
```

@@ -186,0 +186,0 @@

## 1.0.1 June 14, 2019
* Add PowerShell auto install script
## 1.0.0 October 08, 2018
* Upgrade the install logic
* Fix the uninstall error
## 0.2.1 November 08, 2016
* Replace windows x64 download path with win-x64
* Add `NVM_NODEJS_ORG_MIRROR` env support
## 0.1.5 November 09, 2014
* Fix error variable reference
## 0.1.3 November 08, 2014
* Fix npm install error which npm version is greater then 1.4.12
## 0.1.2 October 30, 2013
* Exit Node process while switch or switch-deactivate run failed
## 0.1.1 October 30, 2013
* Add switch and switch-deactivate commands
## 0.1.0 October 15, 2013
* Initial release

Sorry, the diff of this file is too big to display