-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
chore: add extension in imports #1678
Merged
Merged
Changes from all commits
Commits
Show all changes
58 commits
Select commit
Hold shift + click to select a range
8734de4
chore: add extentsion in imports
dai-shi 10ae7f0
fix github workflow
dai-shi 4402f79
revert for zustand/context
dai-shi bda1a39
do not patch :)
dai-shi a74d5e8
fix workflow file
dai-shi 0577fbf
update ts 5
dai-shi c3f200c
patch tsconfig
dai-shi 0ea174a
use old typescript for react 16
dai-shi d03e526
downlevel-dts to 3.8
dai-shi 7faa140
Revert "downlevel-dts to 3.8"
dai-shi 40daaac
patch workflow file
dai-shi 8bda65c
patch for react 16
dai-shi e3725ec
remove ts3.4 in workflow
dai-shi 26b78c1
skipLibChecks
dai-shi e2c88f1
revert changes in test-multiple-versions.yml
dai-shi 3f8304c
fix sed
dai-shi fca34d7
wip: add allowJs
dai-shi 9f7bde5
Revert "wip: add allowJs"
dai-shi 27703b8
use ts 495
dai-shi 07a91d8
useESM false
dai-shi 411d74f
Revert "useESM false"
dai-shi 50d716d
no coverage
dai-shi 016e872
no coverage 2
dai-shi f7fbae5
no coverage 3
dai-shi 874e70f
wip
dai-shi c4ee682
disable transform
dai-shi 54cc5af
revert a change
dai-shi 72498f2
revert changes
dai-shi a0806da
Merge branch 'main' into chore/use-extension-in-imports
dai-shi a16caa4
test: try ignoring tests with dynamic imports
arjunvegda b82387b
test: skip tests that require/tests modules in isolation
arjunvegda 277a401
test: remove dynamic import
arjunvegda 46cbf74
run skipped tests on CI
dai-shi 100c81b
test: add new devtools imports to ci-only tests
arjunvegda a854dab
revert CI-ONLY-* hack
dai-shi 265720f
wip: workaround for react 16
dai-shi 246051a
wip: workaround for react 16
dai-shi 6d65d38
wip: workaround for react 16
dai-shi 243fc13
wip: workaround for react 16
dai-shi abd4825
wip: workaround for react 16
dai-shi 837d9ea
wip: workaround for react 16
dai-shi c1edd26
wip: workaround for react 16
dai-shi 2be42ff
wip: workaround for react 16
dai-shi fb4b31e
wip: workaround for react 16
dai-shi 6fd4b03
wip: workaround for react 16
dai-shi c73cf3a
wip: workaround for react 16
dai-shi dd727f4
CI-MATRIX- for devtools CI hacks
dai-shi 0b1b91e
test: add env variable to test multiple builds workflow
arjunvegda 6797efb
hack await import
dai-shi 279426a
hack await import for another one
dai-shi d4e00a1
wip: experimenting workflow file
dai-shi c416f91
wip: experimenting workflow file
dai-shi 7e9b8df
wip: experimenting workflow file
dai-shi 3052f90
use different env name
dai-shi f6e1eab
wip: experimenting workflow file
dai-shi 78bb2c9
do not use two envs
dai-shi d4d6813
revert to NODE_ENV
dai-shi 006f33e
Merge branch 'main' into chore/use-extension-in-imports
dai-shi 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 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 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 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 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 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 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 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export * from './vanilla' | ||
export * from './react' | ||
export { default } from './react' | ||
export * from './vanilla.ts' | ||
export * from './react.ts' | ||
export { default } from './react.ts' |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export * from './middleware/redux' | ||
export * from './middleware/devtools' | ||
export * from './middleware/subscribeWithSelector' | ||
export * from './middleware/combine' | ||
export * from './middleware/persist' | ||
export * from './middleware/redux.ts' | ||
export * from './middleware/devtools.ts' | ||
export * from './middleware/subscribeWithSelector.ts' | ||
export * from './middleware/combine.ts' | ||
export * from './middleware/persist.ts' |
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
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
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
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
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
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
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
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.
ooooops, it wasn't the right fix...
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.
following up #1786