Revision 4c4c80322a1512391d2708a9008e910401c16ca1 authored by TypeScript Bot on 03 June 2022, 00:47:14 UTC, committed by GitHub on 03 June 2022, 00:47:14 UTC
* Cherry-pick PR #49360 into release-4.7

Component commits:
5eb6425569 Expose import mode calculation functions

1f907ae640 Make `SourceFileImportsList` internal again.

4e40185fe8 Accepted API baselines.

* Fix lints.

Co-authored-by: Daniel Rosenwasser <drosen@microsoft.com>
Co-authored-by: Daniel Rosenwasser <DanielRosenwasser@users.noreply.github.com>
1 parent 3ce08c6
Raw File
Dockerfile
# We use this dockerfile to build a packed tarfile which we import in our `docker` tests
FROM node:current
COPY . /typescript
WORKDIR /typescript
RUN npm ci
RUN npm i -g gulp-cli
RUN gulp configure-insiders && gulp LKG && gulp clean && npm pack .
back to top