Skip to content

Commit

Permalink
fix: package exports
Browse files Browse the repository at this point in the history
  • Loading branch information
nonzzz committed Jan 14, 2025
1 parent 8e2b628 commit b4ff71a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,21 @@
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": "https://github.com/nonzzz/stylex-extend.git",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json",
"./*": "./*"
},
"scripts": {
"dev": "rollup --config rollup.config.ts --configPlugin swc3 --watch",
"build": "rollup --config rollup.config.ts --configPlugin swc3"
Expand Down

0 comments on commit b4ff71a

Please sign in to comment.