https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 22b9c69873054512917a4cdefd19313db1a996ea authored by Ron Buckton on 10 February 2017, 01:36:25 UTC
Merge the comment writer back into the emitter to reduce stack size.
Tip revision: 22b9c69
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
npm uninstall tslint
npm install
npm update
npm test
back to top