Skip to content

Commit

Permalink
chore: added missing implicit dependency on types to eslint-plugin (#…
Browse files Browse the repository at this point in the history
…4381)

* fix: added missing implicit dependency on types to eslint-plugin

* chore: move to typescript-estree
  • Loading branch information
Josh Goldberg committed Jan 2, 2022
1 parent ccee1a2 commit 6ae200c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion packages/types/tools/copy-ast-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,7 @@ async function main(): Promise<void> {
]);
}

void main();
main().catch(error => {
console.error(error);
process.exitCode = 1;
});
2 changes: 1 addition & 1 deletion packages/typescript-estree/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"root": "packages/typescript-estree",
"type": "library",
"implicitDependencies": []
"implicitDependencies": ["@typescript-eslint/types"]
}

0 comments on commit 6ae200c

Please sign in to comment.