Skip to content

Commit

Permalink
Fix breaking change in exports
Browse files Browse the repository at this point in the history
Fixes #159
  • Loading branch information
sonnyp committed Dec 12, 2024
1 parent 937d9b8 commit afc29d5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ltx",
"version": "3.1.0",
"version": "3.1.1",
"description": "<xml for=\"JavaScript\">",
"author": "Astro",
"repository": {
Expand All @@ -12,8 +12,12 @@
"type": "module",
"main": "src/ltx.js",
"exports": {
"import": "./src/ltx.js",
"require": "./lib/ltx.js"
".": {
"import": "./src/ltx.js",
"require": "./lib/ltx.js"
},
"./src/*": "./src/*",
"./lib/*": "./lib/*"
},
"contributors": [
"Stephan Maka",
Expand Down

0 comments on commit afc29d5

Please sign in to comment.