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

Commit

Permalink
Fix: Add missing package exports
Browse files Browse the repository at this point in the history
This fixes some issues when using rollup's node resolve 11

rollup/plugins#540
  • Loading branch information
apexskier committed Jan 19, 2021
1 parent 82f5049 commit a3eee3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
"description": "Shared utilites for developing Nova.app extensions",
"main": "./dst/index.js",
"exports": {
".": "./dst/index.js",
"./dependency-management": "./dst/dependencyManagement",
"./async": "./dst/async"
"./async": "./dst/async",
"./cleanPath": "./dst/cleanPath"
},
"files": [
"./dst"
Expand Down

0 comments on commit a3eee3c

Please sign in to comment.