Skip to content

Commit 84b0110

Browse files
committed
🎭 Merge branch 'main' into improve-binding-element-type-inference
Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com>
2 parents 69ebdc5 + 6aa9b87 commit 84b0110

File tree

368 files changed

+22846
-2110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

368 files changed

+22846
-2110
lines changed

.github/pr_owners.txt

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
sandersn
2-
elibarzilay
32
weswigham
43
andrewbranch
54
RyanCavanaugh
65
sheetalkamat
7-
orta
86
rbuckton
97
ahejlsberg
108
amcasey
11-
jessetrinity
129
minestarks
1310
armanio123
1411
gabritto
1512
jakebailey
1613
DanielRosenwasser
14+
navya9singh

.github/workflows/ci.yml

-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ jobs:
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333
check-latest: true
34-
- name: Remove existing TypeScript
35-
run: |
36-
npm uninstall typescript --no-save
37-
npm uninstall tslint --no-save
3834
- run: npm ci
3935

4036
# Re: https://github.com/actions/setup-node/pull/125

.github/workflows/release-branch-artifact.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-node@v3
15-
- name: Remove existing TypeScript
16-
run: |
17-
npm uninstall typescript --no-save
18-
npm uninstall tslint --no-save
1915
- name: npm install and test
2016
run: |
2117
npm ci

.github/workflows/update-package-lock.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- uses: actions/setup-node@v3
1818
with:
19-
node-version: 14
19+
node-version: 16
2020

2121
- name: Configure git and update package-lock.json
2222
run: |
2323
git config user.email "typescriptbot@microsoft.com"
2424
git config user.name "TypeScript Bot"
25-
npm install --package-lock-only --ignore-scripts
25+
rm package-lock.json
26+
npm install --package-lock-only --ignore-scripts # This is a no-op if package-lock.json is present.
2627
git add -f package-lock.json
2728
if git commit -m "Update package-lock.json"; then
2829
git push

0 commit comments

Comments
 (0)