Skip to content

Commit

Permalink
fix #230 : CJS / ESM conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
tipy01 committed Oct 12, 2023
1 parent 0d0415f commit 7cbf59d
Show file tree
Hide file tree
Showing 4 changed files with 1,388 additions and 1,557 deletions.
File renamed without changes.
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"name": "svelte-i18n",
"version": "3.7.4",
"main": "dist/runtime.cjs.js",
"module": "dist/runtime.esm.js",
"type": "module",
"main": "dist/runtime.js",
"exports": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.js",
"require": "./dist/runtime.cjs"
},
"types": "dist/runtime.d.ts",
"bin": {
"svelte-i18n": "dist/cli.js"
Expand Down Expand Up @@ -92,7 +97,7 @@
"deepmerge": "^4.2.2",
"esbuild": "^0.19.2",
"estree-walker": "^2",
"intl-messageformat": "^9.13.0",
"intl-messageformat": "^10.5.3",
"sade": "^1.8.1",
"tiny-glob": "^0.2.9"
}
Expand Down
Loading

0 comments on commit 7cbf59d

Please sign in to comment.