Skip to content

Commit

Permalink
chore: fix package exports
Browse files Browse the repository at this point in the history
  • Loading branch information
KermanX committed Oct 25, 2024
1 parent 976c4fb commit ccbaae3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
"import": "./src/index.ts"
}
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"files": [
"README.md",
"dist"
Expand Down Expand Up @@ -56,6 +58,8 @@
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
}
6 changes: 5 additions & 1 deletion packages/reactivity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
"import": "./src/index.ts"
}
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"files": [
"README.md",
"dist"
Expand All @@ -45,6 +47,8 @@
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
}
6 changes: 5 additions & 1 deletion packages/vueuse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
"import": "./src/index.ts"
}
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"files": [
"README.md",
"dist",
Expand Down Expand Up @@ -51,6 +53,8 @@
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
}

0 comments on commit ccbaae3

Please sign in to comment.