-
-
Notifications
You must be signed in to change notification settings - Fork 88
Fix test fixture upgrade scripts #942
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 4 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
e4dfabf
Fix test fixture upgrade scripts
SimeonC b2240b9
Merge branch 'main' into fix-test-case-upgrader
SimeonC 415fc9f
Upgrade typescript
SimeonC a756baf
Update src/scripts/transformRecordedTests/transformations/reorderFiel…
SimeonC 599368b
Update website TS version and small style change
SimeonC 6fc95aa
Merge branch 'main' into fix-test-case-upgrader
SimeonC a328448
Kick CI
pokey 22677b8
Update .vscode/settings.json
pokey f169241
Merge branch 'main' into pr/SimeonC/942
pokey c0d73d0
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 653a0b8
Factor orthogonal work into separate PRs
pokey 5de5261
Tweaks
pokey 7a85b60
Fix test case transformer
pokey 9c07b70
tweak readme
pokey 1ae51ff
Merge branch 'main' into fix-test-case-upgrader
pokey 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 |
---|---|---|
|
@@ -22,5 +22,6 @@ | |
"pojo", | ||
"subword" | ||
], | ||
"files.eol": "\n" | ||
"files.eol": "\n", | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
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.
This is nice; let's upgrade Typescript in this PR as well though I think
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 upgraded TS as well, but I left the website at 4.5 as the typedocs only supports up to 4.5 and I didn't want to risk breaking the website!
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.
Hmm I think that will be a problem, because we run typedocs on all the code in cursorless to generate api docs. We should prob pin both to the same version
When we switch to nx we'll only have one set of versions for everything fwiw
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 can try upgrade it but I'm not familiar with docasaurus and it's typedocs so I'd need someone to double check that. It may end up being a much bigger upgrade - if it does need more than a simple dependency upgrade do we want to just do that here or make a different PR for upgrading the website deps.
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 upgraded TS in website, it seems working to me as far as I can tell. The types are getting output in the contributor docs but I'm not sure they're 100% 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.
We should probably also make VSCode actually ask whether we want to use it too, otherwise nobody will actually switch to it.
Uh oh!
There was an error while loading. Please reload this page.
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.
@auscompgeek that sounds reasonable to me. Any objections @SimeonC ?
Re types in website; I just kicked off a deploy preview. I'll take a look at docs once it's out to see if they look sane
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.
Huh. Unfortunately this PR breaks the api docs. For example, in the docs for
runCommand
, see how on production there are a bunch of links in the description, but these seem to have disappeared for some reason in the deploy preview 😕