-
Notifications
You must be signed in to change notification settings - Fork 512
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
refactor: move toolkit to monorepo structure #4342
Merged
+4,891
−4,674
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
ee06aba
initial restructure
hayemaxi 00f58a3
some initial changes to scripts, package jsons
hayemaxi 681feb5
build script updates
hayemaxi 65f7b0e
fix references and remove createRelease from root package.json
hayemaxi b706495
fix up . config files and move .vscodeignore to toolkit package
hayemaxi 865831a
update scripts
hayemaxi 4c8ddf2
move types, fix tsconfig, scripts
hayemaxi e483b28
fix linting, add header to gitignore-parser.d.ts
hayemaxi d90ee4a
move templates/, syntaxes/ resources/ to packages/toolkit/. command …
hayemaxi 7bccd17
enable browser webpack again, copy doc files over for extension packing.
hayemaxi f4b4f10
move src/browser workspace from toolkit package.json to root package.…
hayemaxi bd6e4ed
update some CI commands to use -w packages/toolkit
hayemaxi aa81e7b
update .gitignore + temp update to remove generated resources
hayemaxi f8bdf6e
remove generated resources
hayemaxi b1c2346
update .gitignore and .prettierignore, temp move endpoints.json to or…
hayemaxi d0e2c38
update .prettierignore for endpoints.json, move endpoints.json under …
hayemaxi e3613e6
restore newline in endspoints.json
hayemaxi 88d86c7
fix vscode debugging configurations, misc package.json updates.
hayemaxi 2a24633
update format, lint scripts, and .ignore files
hayemaxi 752d504
move .c8rc.json to packages/toolkit
hayemaxi 797b44c
add testCompile root shortcut
hayemaxi 575a3f6
update .test-coverage output path
hayemaxi 81740b2
add generateNonCodeFiles script root shortcut
hayemaxi c69c256
temp: delete package.json
hayemaxi 9164073
Merge branch 'master' of https://github.com/aws/aws-toolkit-vscode in…
hayemaxi ed75c6f
restore root package.json and package-lock.json after mainline merge
hayemaxi 897087c
move createRelease script to root, update packaging ignore.
hayemaxi e3b0d57
script moves packaged .vsix to root
hayemaxi 64c98e5
restore codecov.yml to original
hayemaxi 817fe4a
update .eslintignore
hayemaxi 00b742c
fix testRunner to output report to top-level .test-reports/
hayemaxi dd0024a
restore SNAPSHOT to toolkit package.json
hayemaxi db9f77c
Merge branch 'master' of https://github.com/aws/aws-toolkit-vscode in…
hayemaxi 21c66e2
Add/update documentation.
hayemaxi 8fee66b
remove merge conflict resolution anomaly: download.ts
hayemaxi 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
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.
Future: should concepts like
globalSetup.test.ts
should be shared ? They solve lots of edge-cases and copy-pasting that across the subprojects adds quality risk.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.
yes there should be a shared test setup function/library in a commons folder. Will document.