Skip to content

Commit

Permalink
fix: default condition should be last one
Browse files Browse the repository at this point in the history
  • Loading branch information
voliva committed Jul 12, 2023
1 parent 625c9cc commit 6f51cac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"import": "./dist/core.es2019.mjs",
"require": "./dist/index.cjs"
},
"default": "./dist/core.es2017.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/core.es2017.js"
},
"./package.json": "./package.json"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"import": "./dist/dom.es2019.mjs",
"require": "./dist/index.cjs"
},
"default": "./dist/dom.es2017.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/dom.es2017.js"
},
"./package.json": "./package.json"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"import": "./dist/utils.es2019.mjs",
"require": "./dist/index.cjs"
},
"default": "./dist/utils.es2017.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/utils.es2017.js"
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit 6f51cac

Please sign in to comment.