Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

Commit

Permalink
Fix main entry point in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
christianvuerings committed Oct 16, 2023
1 parent a5e7843 commit a57857a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
7 changes: 1 addition & 6 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1 @@
.github
.nvmrc
.prettierrc
jest.config.js
src
tsconfig.json
src/tests
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.0.4

- Fix main entry point in `package.json`

# 0.0.3

- Fix rule name from `no-re-exports` to `no-re-export` (part 2)
Expand Down
File renamed without changes.
11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "eslint-plugin-no-re-export",
"version": "0.0.3",
"version": "0.0.4",
"description": "ESLint plugin to disallow re-exporting in TypeScript/JavaScript",
"main": "index.js",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/christianvuerings/eslint-plugin-no-re-export"
Expand All @@ -14,6 +14,13 @@
},
"author": "Christian Vuerings",
"license": "MIT",
"files": [
"docs",
"dist",
"index.d.ts",
"index.js",
"package.json"
],
"exports": {
".": {
"types": "./index.d.ts",
Expand Down

0 comments on commit a57857a

Please sign in to comment.