Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.23.3 #2092

Merged
merged 8 commits into from
May 21, 2021
Merged

Release 2.23.3 #2092

merged 8 commits into from
May 21, 2021

Conversation

ljharb
Copy link
Member

@ljharb ljharb commented May 21, 2021

No description provided.

arvigeus and others added 8 commits May 15, 2021 12:02
…mporting a value in Flow

This fixes this situation:

`a.js`:
```js
import { foo } from './b'
```

`b.js`:
```js
// @flow
import { bar, type Baz } from './a'
```

Previously, `no-cycle` would have not reported a dependency cycle for the import in `a.js`, even
though `b.js` is importing `bar`, which is not a type import, from `a.js`. This commit fixes that.
…es of importing file

This fixes this situation:

`a.ts`:
```ts
import { foo } from './b'
```

`b.ts`:
```ts
import type { Bar } from './a'
```

Previously, `no-cycle` would have incorrectly reported a dependency cycle for the import in `a.ts`,
even though `b.ts` is only importing types from `a.ts`.
@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 82.488% when pulling 20c373c on ljharb:release-2.23.3 into a332f20 on benmosher:release.

@ljharb ljharb merged commit 20c373c into import-js:release May 21, 2021
@ljharb ljharb deleted the release-2.23.3 branch May 21, 2021 20:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

6 participants