https://github.com/Microsoft/TypeScript
Raw File
Tip revision: a5c9f40344d625ab3a86acad474fcc8474412fc0 authored by Andy on 15 August 2017, 21:59:26 UTC
In services, show the aliasSymbol for a type even if it's not accessible in the current scope (#17810)
Tip revision: a5c9f40
jenkins.sh
#!/usr/bin/env bash

# Set up NVM
export NVM_DIR="/home/dotnet-bot/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"

nvm install $1

npm uninstall typescript --no-save
npm uninstall tslint --no-save
npm install
npm update
npm test
back to top