Skip to content

Commit

Permalink
Merge pull request #447 from jpudysz/feature/codegen
Browse files Browse the repository at this point in the history
fix: codegen path
  • Loading branch information
jpudysz authored Dec 16, 2024
2 parents 5d84e89 + e36eb18 commit 87fbaaf
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,24 @@
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"exports": {
".": {
"types": "./lib/typescript/src/index.d.ts",
"module": "./lib/module/index",
"default": "./lib/commonjs/index"
"default": "./lib/commonjs/index",
"react-native": "./src/index"
},
"./components/native/*": {
"module": "./lib/module/components/native/*",
"default": "./lib/commonjs/components/native/*"
"default": "./lib/commonjs/components/native/*",
"react-native": "./src/components/native/*"
},
"./plugin": {
"module": "./plugin/index.js",
"default": "./plugin/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"src",
Expand Down

0 comments on commit 87fbaaf

Please sign in to comment.