Skip to content

Commit

Permalink
fixed exports
Browse files Browse the repository at this point in the history
  • Loading branch information
wheresrhys committed Jun 16, 2024
1 parent d61a734 commit 41096ac
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
"name": "fetch-mock",
"version": "0.0.0",
"description": "Mock http requests made using fetch (or isomorphic-fetch)",
"main": "./cjs/server.js",
"browser": "./esm/client.js",
"module": "./esm/server.js",
"types": "./types/index.d.ts",
"main": "./dist/commonjs.js",
"exports": {
"types": "./types/index.d.ts",
"browser": "./src/index.js",
"import": "./src/index.js",
"require": "./dist/commonjs.js"
},
"type": "module",
"scripts": {
"test": "make lint test",
Expand Down

0 comments on commit 41096ac

Please sign in to comment.