Skip to content

Commit

Permalink
fix(react-formio): fix exports fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Feb 28, 2025
1 parent c22c4c9 commit 8023efe
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
4 changes: 3 additions & 1 deletion packages/react-formio-stores/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
"license": "MIT",
"exports": {
".": {
"tsed-source": "./src/index.ts",
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
}
},
"scripts": {
Expand Down
4 changes: 3 additions & 1 deletion packages/react-formio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
"module": "./dist/index.modern.js",
"exports": {
".": {
"tsed-source": "./src/index.ts",
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
}
},
"source": "src/index.ts",
Expand Down
4 changes: 3 additions & 1 deletion packages/redux-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@
"license": "MIT",
"exports": {
".": {
"tsed-source": "./src/index.tsx",
"import": "./dist/index.modern.js",
"require": "./dist/index.js"
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
}
},
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions packages/tailwind-formio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
"module": "dist/index.modern.js",
"source": "src/index.ts",
"type": "commonjs",
"exports": {
".": {
"tsed-source": "./src/index.ts",
"import": "./dist/index.modern.js",
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
}
},
"scripts": {
"watch": "nodemon --watch ./src --ext ts,js,ejs --exec \"yarn build\"",
"build:templates": "gulp templates",
Expand Down

0 comments on commit 8023efe

Please sign in to comment.