Skip to content

Commit 6e1996d

Browse files
Version Packages
1 parent 7bf624b commit 6e1996d

File tree

5 files changed

+20
-12
lines changed

5 files changed

+20
-12
lines changed

.changeset/sweet-mangos-marry.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @arethetypeswrong/cli
22

3+
## 0.10.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [30bdb07]
8+
- @arethetypeswrong/core@0.10.0
9+
310
## 0.9.0
411

512
### Minor Changes

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arethetypeswrong/cli",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "A CLI tool for arethetypeswrong.github.io",
55
"author": "Andrew Branch & ej-shafran",
66
"contributors": [
@@ -45,7 +45,7 @@
4545
"typescript": "^5.0.0-dev.20230207"
4646
},
4747
"dependencies": {
48-
"@arethetypeswrong/core": "0.9.0",
48+
"@arethetypeswrong/core": "0.10.0",
4949
"chalk": "^4.1.2",
5050
"cli-table3": "^0.6.3",
5151
"commander": "^10.0.1",

packages/core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @arethetypeswrong/core
22

3+
## 0.10.0
4+
5+
### Minor Changes
6+
7+
- 30bdb07: New problem kind: **Missing `export =`**
8+
9+
Previously, `FalseExportDefault` had many cases of false positives where the JavaScript assigned an object to `module.exports`, and that object had a `default` property pointing back to itself. This pattern is not a true `FalseExportDefault`, but it is still problematic if the types only declare an `export default`. These kinds of false positives of `FalseExportDefault` are now instead reported as `MissingExportEquals`.
10+
11+
Additionally, `FalseExportDefault` was only ever reported as being visible in `node16-esm`, but this was incorrect. The consequences are most likely to be visible in `node16-esm`, but the problem is fundamentally independent of the module resolution mode, and inaccuracies can be observed in other modes as well, especially when `esModuleInterop` is not enabled.
12+
313
## 0.9.0
414

515
### Minor Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arethetypeswrong/core",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "The API behind arethetypeswrong.github.io",
55
"author": "Andrew Branch",
66
"license": "MIT",

0 commit comments

Comments
 (0)