Skip to content

Commit

Permalink
Reorder import and require paths in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
thevuong committed Jan 9, 2024
1 parent fb517be commit 7eac7c2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @codefixlabs/ui

## 0.1.93

### Patch Changes

- Reorder import and require paths in package.json

## 0.1.92

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@codefixlabs/ui",
"version": "0.1.92",
"version": "0.1.93",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.mts"
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
Expand Down

0 comments on commit 7eac7c2

Please sign in to comment.