Skip to content

Commit

Permalink
chore: change package exports to import instead of default (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding authored Feb 22, 2024
1 parent 67d854b commit 441410c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/multiple-select-vanilla/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
".": {
"types": "./dist/index.d.ts",
"node": "./dist/multiple-select.cjs",
"require": "./dist/multiple-select.cjs",
"default": "./dist/multiple-select.js"
"import": "./dist/multiple-select.js",
"require": "./dist/multiple-select.cjs"
},
"./dist/browser/*": "./dist/browser/*",
"./dist/locales/*": "./dist/locales/*",
Expand Down Expand Up @@ -75,4 +75,4 @@
"sass": "^1.71.1",
"typescript": "5.4.1-rc"
}
}
}

0 comments on commit 441410c

Please sign in to comment.