Skip to content

Commit

Permalink
fix(eslint): use correct index.js (#23)
Browse files Browse the repository at this point in the history
Resolves #22

## 📑 Description

Change old and wrong `main` file name in `package.json` from `index.cjs` to `index.js`.
  • Loading branch information
mheob committed Aug 26, 2022
1 parent 00c342f commit 7c1d265
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/funny-donkeys-watch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@mheob/eslint-config": patch
---

Change old and wrong `main` file name in `package.json` from `index.cjs` to `index.js`.
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"license": "MIT",
"author": "Alexander Böhm <tools@boehm.work>",
"main": "index.cjs",
"main": "index.js",
"files": [
"index.js",
"base.js",
Expand Down

0 comments on commit 7c1d265

Please sign in to comment.