From ba566a8f1967e92d66a62ffcd8b7fa0abe414305 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Wed, 27 Jun 2018 14:33:28 -0400 Subject: [PATCH 1/2] Initial commit --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000000000..5bb679a0ea6a8 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +## What is this repository? + +This repository is a fork of Microsoft's TypeScript repository, created so that Bloomberg's +engineering team can collaborate with each other (and the rest of the TypeScript community) +on enhancements to TypeScript. Branches in this repository represent 'work in progress' that +will be contributed to the Microsoft TypeScript repository when the work is ready for review. + +If you have any questions about the branches in this repository, feel free to open an issue +so our team can discuss them with you. From d9b2726d0a14058ce4679ffaf5d4af3deda48d6b Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Tue, 21 Aug 2018 12:42:09 -0400 Subject: [PATCH 2/2] Add Travis-CI configuration --- .travis.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000000..e8af6b43ae9e3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,30 @@ +language: node_js + +node_js: + - 'stable' + - '8' + - '6' + +sudo: false + +env: + - workerCount=3 timeout=600000 + +matrix: + fast_finish: true + +branches: + only: + - es-private-fields + +install: + - npm uninstall typescript --no-save + - npm uninstall tslint --no-save + - npm install + +cache: + directories: + - node_modules + +git: + depth: 1