-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(nuxt): remove cjs * chore: update changeset --------- Co-authored-by: Gao Sun <[email protected]>
- Loading branch information
Showing
2 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"@logto/nuxt": minor | ||
--- | ||
|
||
remove commonjs export, fix non-default exports | ||
|
||
- The CJS build generated by `@nuxt/module-builder` only exports the default export, causing issues for users who want to use named exports. | ||
- Nuxt stills uses the CJS build if certain fields are found, regardless of the `"type": "module"` field in `package.json`. Since Nuxt 3 uses ESM by default, we just remove the CJS export to avoid confusion. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters