Skip to content
Prev Previous commit
Next Next commit
Building with node 10, because otherwise there's a weird issue, and I…
… can't be bothered to understand it.
  • Loading branch information
nicolasnoble committed May 1, 2018
commit e35856061ebd28aaee67d30a856634981affc713
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.

powershell -c "& { iwr https://raw.githubusercontent.com/grumpycoders/nvm-ps/master/nvm.ps1 | iex }"

SET PATH=%APPDATA%\nvm-ps;%APPDATA%\nvm-ps\nodejs;%PATH%

call nvm install 10
call nvm use 10

set arch_list=ia32 x64

set node_versions=4.0.0 5.0.0 6.0.0 7.0.0 8.0.0 9.0.0 10.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

nvm install 10
nvm use 10

set -ex

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

nvm install 10
nvm use 10

set -ex

cd $(dirname $0)/../../..
Expand Down