Skip to content

Commit

Permalink
chore: correct package exports syntax (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
alopix authored May 8, 2024
1 parent b11d86a commit d3fe2f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@bbc/web-vitals",
"version": "2.0.1",
"version": "2.0.2",
"main": "dist/index.js",
"module": "esm/index.js",
"exports": {
".": {
"require": "dist/index.js",
"import": "esm/index.js"
"require": "./dist/index.js",
"import": "./esm/index.js"
}
},
"sideEffects": false,
Expand Down

0 comments on commit d3fe2f9

Please sign in to comment.