Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/sweet-mangos-marry.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @arethetypeswrong/cli

## 0.10.0

### Patch Changes

- Updated dependencies [30bdb07]
- @arethetypeswrong/[email protected]

## 0.9.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arethetypeswrong/cli",
"version": "0.9.0",
"version": "0.10.0",
"description": "A CLI tool for arethetypeswrong.github.io",
"author": "Andrew Branch & ej-shafran",
"contributors": [
Expand Down Expand Up @@ -45,7 +45,7 @@
"typescript": "^5.0.0-dev.20230207"
},
"dependencies": {
"@arethetypeswrong/core": "0.9.0",
"@arethetypeswrong/core": "0.10.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^10.0.1",
Expand Down
10 changes: 10 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @arethetypeswrong/core

## 0.10.0

### Minor Changes

- 30bdb07: New problem kind: **Missing `export =`**

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`.

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.

## 0.9.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arethetypeswrong/core",
"version": "0.9.0",
"version": "0.10.0",
"description": "The API behind arethetypeswrong.github.io",
"author": "Andrew Branch",
"license": "MIT",
Expand Down