-
Notifications
You must be signed in to change notification settings - Fork 3
feat: new vite-friendly /utils exports
#595
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
Merged
Merged
Changes from 22 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
2493a22
first pass
kanadgupta a599961
chore: see if this import alias will get tests passing
kanadgupta 614dcf0
refactor: slightly cleaner test cleanup
kanadgupta 5244ba3
chore: fix up export path
kanadgupta 1acc8e5
chore: tsconfig tweak
kanadgupta 6d30b08
chore: convert yet another file to TS
kanadgupta a27c9f9
chore: test script tweak
kanadgupta 609e0d7
Update vitest.setup.ts
kanadgupta 347993c
ci: rework build process a bit
kanadgupta bc8b134
chore: try tweaking exports object
kanadgupta 4628ebf
Update .eslintignore
kanadgupta 6671600
chore: remove redundant rimraf
kanadgupta d5e7821
chore: attempt to revert some TS conversions to see if that fixes things
kanadgupta 8242e38
fix: don't optimize deps, transpile only
kanadgupta 5063845
fix: don't `--write` during test step
kanadgupta 5b5c035
chore: reconvert TS since that wasn't actually the problem
kanadgupta b02d0bc
chore: shift around for better diff
kanadgupta 3226d1a
chore: run it back
kanadgupta 8976403
Revert "chore: run it back"
kanadgupta e2f7789
revert: actually we don't need that top-level describe
kanadgupta 6c9c737
chore: deps cleanup
kanadgupta 4dfcd0f
chore!: bump min node version to 22
kanadgupta 69a9d3c
chore: remove identity-obj-proxy
kanadgupta 465341a
chore: remove `defaultProps` to address warning
kanadgupta 48be9e4
chore: install knip, rip out a few things
kanadgupta 83593b2
chore: format command
kanadgupta 705b5db
chore: suppress vitest lint warnings
kanadgupta 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| node_modules/ | ||
| coverage/ | ||
| dist/ | ||
| dist-utils/ | ||
| public/index* | ||
| __tests__/__fixtures__/**/sample.* |
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 |
|---|---|---|
| @@ -1,4 +1,10 @@ | ||
| { | ||
| "extends": ["@readme/eslint-config", "@readme/eslint-config/react"], | ||
| "root": true | ||
| "overrides": [ | ||
| { | ||
| "files": ["**/*.ts", "**/*.tsx"], | ||
| "extends": ["@readme/eslint-config/typescript"], | ||
| }, | ||
| ], | ||
| "root": true, | ||
| } |
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 |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| dist/ | ||
| dist-utils/ | ||
| node_modules/ | ||
| coverage/ |
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 |
|---|---|---|
|
|
@@ -3,4 +3,4 @@ __tests__/ | |
| coverage/ | ||
| .eslint* | ||
| .prettier* | ||
| jest.config.js | ||
| vitest* | ||
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 |
|---|---|---|
| @@ -1,7 +1,8 @@ | ||
| { | ||
| "extends": [ | ||
| "@readme/eslint-config/testing/jest", | ||
| "@readme/eslint-config/testing/vitest", | ||
| "@readme/eslint-config/testing/jest-dom", | ||
| "@readme/eslint-config/testing/react" | ||
| ] | ||
| "@readme/eslint-config/testing/react", | ||
| "@readme/eslint-config/typescript", | ||
| ], | ||
| } |
94 changes: 47 additions & 47 deletions
94
...s__/__snapshots__/codeMirror.test.js.snap → ...s__/__snapshots__/codeMirror.test.ts.snap
Large diffs are not rendered by default.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.