https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 8e131e055e0d101fd564b744e5d6fdf0e8bb7e87 authored by Daniel Rosenwasser on 06 September 2017, 21:15:46 UTC
Pre-allocate the appropriate number of elements in calls to 'map' and 'sameMap'.
Tip revision: 8e131e0
.travis.yml
language: node_js

node_js:
  - 'stable'
  - '6'
  - '4'

sudo: false

env:
  - workerCount=3

matrix:
  fast_finish: true

branches:
  only:
  - master
  - release-2.5

install:
  - npm uninstall typescript --no-save
  - npm uninstall tslint --no-save
  - npm install

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top