Skip to content

Commit

Permalink
Add explicit export for ./* (#2413)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntkme committed Jan 28, 2022
1 parent b82ca7a commit a00f14a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
Expand Up @@ -118,8 +118,11 @@
"main": "./lib/sinon.js",
"module": "./pkg/sinon-esm.js",
"exports": {
"require": "./lib/sinon.js",
"import": "./pkg/sinon-esm.js"
".": {
"require": "./lib/sinon.js",
"import": "./pkg/sinon-esm.js"
},
"./*": "./*"
},
"type": "module",
"cdn": "./pkg/sinon.js",
Expand Down

0 comments on commit a00f14a

Please sign in to comment.