-
Notifications
You must be signed in to change notification settings - Fork 25
feat: add full ESM support #125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
kyletsang
wants to merge
1
commit into
main
Choose a base branch
from
import-extensions
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+2,528
−3,737
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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 |
---|---|---|
|
@@ -67,7 +67,7 @@ | |
"scripts": { | ||
"bootstrap": "yarn --network-timeout 100000 && yarn --cwd www --network-timeout 100000", | ||
"build": "rimraf lib && yarn build:esm && yarn build:cjs && yarn build:popper", | ||
"build:esm": "babel src --out-dir lib --delete-dir-on-start --extensions .ts,.tsx --ignore '**/*.d.ts' && yarn build:esm:types", | ||
"build:esm": "babel src --out-dir lib --delete-dir-on-start --extensions .ts,.tsx --ignore '**/*.d.ts' && yarn build:esm:types && echo '{\"type\": \"module\"}' > lib/package.json", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe just add the |
||
"build:cjs": "babel src --out-dir cjs --env-name cjs --delete-dir-on-start --extensions .ts,.tsx --ignore '**/*.d.ts' && yarn build:cjs:types && echo '{\"type\": \"commonjs\"}' > cjs/package.json", | ||
"build:esm:types": "tsc -p . --emitDeclarationOnly --declaration --outDir lib", | ||
"build:cjs:types": "tsc -p . --emitDeclarationOnly --declaration --outDir cjs", | ||
|
@@ -100,7 +100,7 @@ | |
"@restart/hooks": "^0.6.2", | ||
"@types/warning": "^3.0.3", | ||
"dequal": "^2.0.3", | ||
"dom-helpers": "^5.2.0", | ||
"dom-helpers": "^6.0.1", | ||
"uncontrollable": "^9.0.0", | ||
"warning": "^4.0.3" | ||
}, | ||
|
@@ -131,6 +131,7 @@ | |
"@vitest/browser": "^3.1.3", | ||
"@vitest/coverage-istanbul": "3.1.3", | ||
"babel-eslint": "^10.1.0", | ||
"babel-plugin-add-import-extension": "^1.6.0", | ||
"babel-preset-env-modules": "^1.0.1", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^9.20.0", | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the safer approach here would be to not add this, and switch tsconfig to
moduleResolution: 'NodeNext'
which will require extensions in the source. You get more validation from the TS compiler that it's correct.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am unsure whether that is compatible with also outputting a CJS build though, but it should be?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried this initially, but had difficulties in getting docusaurus to resolve the paths with the ".js" extension and not breaking hot reload. There might be better support for TS in docusaurus v3, but that's another large exercise 😅