Skip to content

Commit

Permalink
fix(exports): key order is significant
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Aug 20, 2024
1 parent a81a573 commit 3b63851
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions projects/auth-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,19 @@
},
"exports": {
"./core": {
"require": "./cjs/core/index.js",
"types": "./core/index.d.ts",
"import": "./esm/core/index.js",
"require": "./cjs/core/index.js",
"browser": "./browser/core/index.min.js"
"browser": "./browser/core/index.min.js",
"default": "./esm/core/index.js"
},
"./oidc": {
"require": "./cjs/oidc/index.js",
"types": "./oidc/index.d.ts",
"import": "./esm/oidc/index.js",
"require": "./cjs/oidc/index.js",
"browser": "./browser/oidc/index.min.js"
}
"browser": "./browser/oidc/index.min.js",
"default": "./esm/oidc/index.js"
},
"./package.json": "./package.json"
}
}

0 comments on commit 3b63851

Please sign in to comment.