Skip to content

Commit

Permalink
Fix: Default condition should be last one (#1722)
Browse files Browse the repository at this point in the history
  • Loading branch information
roseckyj committed Feb 6, 2024
1 parent 78f31dc commit a9ecbe7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"exports": {
"node": {
"import": {
"default": "./dist/node/asciidoctor.js",
"types": "./types/index.d.ts"
"types": "./types/index.d.ts",
"default": "./dist/node/asciidoctor.js"
},
"require": {
"default": "./dist/node/asciidoctor.cjs",
"types": "./types/index.d.cts"
"types": "./types/index.d.cts",
"default": "./dist/node/asciidoctor.cjs"
}
},
"default": "./dist/browser/asciidoctor.js",
"types": "./types/index.d.ts"
"types": "./types/index.d.ts",
"default": "./dist/browser/asciidoctor.js"
},
"types": "types/index.d.ts",
"engines": {
Expand Down

0 comments on commit a9ecbe7

Please sign in to comment.