Skip to content

Commit

Permalink
Follow export best-practices
Browse files Browse the repository at this point in the history
  • Loading branch information
atjn committed May 6, 2021
1 parent e68dbe7 commit a9041d4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"version": "3.0.1",
"description": "Get the size of a folder by iterating through its sub-files and -folders.",
"type": "module",
"main": "index.js",
"main": "./index.js",
"exports": "./index.js",
"bin": {
"get-folder-size": "bin/get-folder-size.js"
"get-folder-size": "./bin/get-folder-size.js"
},
"files": [
"index.js",
Expand Down

1 comment on commit a9041d4

@atjn
Copy link
Collaborator Author

@atjn atjn commented on a9041d4 May 6, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.