Skip to content

Commit 43c1e19

Browse files
authored
Merge pull request #22 from olafurpg/react
Handle named import clauses
2 parents 7b0bd88 + 91b0748 commit 43c1e19

29 files changed

+3214
-3716
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
- run: npm install
12+
- run: yarn install
13+
- run: yarn install
14+
working-directory: snapshots
1315
- run: npm run test
1416
lint:
1517
runs-on: ubuntu-latest
1618
steps:
1719
- uses: actions/checkout@v2
18-
- run: npm install
19-
- run: npm run prettier-check
20-
- run: npm run eslint
20+
- run: yarn install
21+
- run: yarn run prettier-check
22+
- run: yarn run eslint

.github/workflows/pr-auditor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: pr-auditor
22
on:
33
pull_request:
4-
types: [ closed, edited, opened ]
4+
types: [closed, edited, opened]
55

66
jobs:
77
run:

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
dist
22
node_modules
3+
src/lsif.ts
4+
snapshots/output

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## LSIF Node
22

33
### v0.1.0 (2022/02/25 15:43 +00:00)
4+
45
- [#6](https://github.com/sourcegraph/lsif-typescript/pull/6) Merge pull request #6 from olafurpg/release (@olafurpg)
56
- [#4](https://github.com/sourcegraph/lsif-typescript/pull/4) Merge pull request #4 from sourcegraph/add-pr-auditor-and-test-plan (@sourcegraph)
6-
- [#1](https://github.com/sourcegraph/lsif-typescript/pull/1) Merge pull request #1 from olafurpg/new-start (@olafurpg)
7+
- [#1](https://github.com/sourcegraph/lsif-typescript/pull/1) Merge pull request #1 from olafurpg/new-start (@olafurpg)

0 commit comments

Comments
 (0)