https://github.com/Microsoft/TypeScript
Raw File
Tip revision: abfcdc268cba8f43ff98d6a34af0dd8a3c79a545 authored by Ron Buckton on 12 August 2020, 02:10:20 UTC
Prototype implementation of umdExport/umdGlobal
Tip revision: abfcdc2
.travis.yml
language: node_js

node_js:
  - 'node'
  - '12'
  - '10'

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

branches:
  only:
  - master
  - /^release-.*/

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top