Skip to content

Commit c1f73a7

Browse files
authored
Merge pull request #13 from kjagiello/export-package-json
Explicitly export package.json
2 parents 058cfc4 + 7763842 commit c1f73a7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@
77
"module": "dist/index.mjs",
88
"main": "dist/index.js",
99
"exports": {
10-
"require": "./dist/index.js",
11-
"import": "./dist/index.mjs"
10+
".": {
11+
"require": "./dist/index.js",
12+
"import": "./dist/index.mjs"
13+
},
14+
"./package.json": "./package.json"
1215
},
1316
"scripts": {
1417
"tailwind:watch": "chokidar 'docs/tailwind*.*' -c 'npm run tailwind:build'",

0 commit comments

Comments
 (0)