Skip to content

Commit

Permalink
fix: incorrect export path (#273)
Browse files Browse the repository at this point in the history
Solves this error:

```
Error [ERR_MODULE_NOT_FOUND]: Cannot find module 'node_modules/datastore-s3/src/index.js'
```

Co-authored-by: Alex Potsides <alex@achingbrain.net>
  • Loading branch information
Marcel-G and achingbrain committed Nov 27, 2023
1 parent f496d4f commit e840ed4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/blockstore-s3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./src/index.js"
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/datastore-s3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./src/index.js"
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
Expand Down

0 comments on commit e840ed4

Please sign in to comment.