forked from aws/aws-toolkit-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request aws#4342 from hayemaxi/restructure3
refactor: move toolkit to monorepo structure These commits restructure our project into a monorepo using npm workspaces. The original toolkit extension code now lives under packages/toolkit/. Additional extensions and common modules will go under the packages/ folder. This change will allow us to divide the toolkit into separate modules and extensions as needed. A summary of changes include: - Creating a root package.json - Moving all extension src code, resources/, types/, and syntaxes to a subproject with the original package.json - Updating paths throughout the code and configs to reference the new file structure - Script and packaging changes to work with this new structure See `docs/ARCHITECTURE.md#monorepo-structure` for more info.
- Loading branch information
Showing
1,399 changed files
with
4,891 additions
and
4,674 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
node_modules/** | ||
dist/** | ||
node_modules/ | ||
dist/ | ||
src.gen/** | ||
**/*.json | ||
**/*.gen.ts | ||
types/*.d.ts | ||
|
||
# Duplicate entries because prettier can be ran from root or within the workspace/subpackage. | ||
# TODO: Avoid this. | ||
src/shared/telemetry/clienttelemetry.d.ts | ||
src/codewhisperer/client/codewhispererclient.d.ts | ||
src/codewhisperer/client/codewhispereruserclient.d.ts | ||
src/amazonqFeatureDev/client/featuredevproxyclient.d.ts | ||
**/*.gen.ts | ||
src/testFixtures/** | ||
types/*.d.ts | ||
packages/toolkit/src/shared/telemetry/clienttelemetry.d.ts | ||
packages/toolkit/src/codewhisperer/client/codewhispererclient.d.ts | ||
packages/toolkit/src/codewhisperer/client/codewhispereruserclient.d.ts | ||
packages/toolkit/src/amazonqFeatureDev/client/featuredevproxyclient.d.ts | ||
packages/toolkit/src/testFixtures/** |
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
Validating CODEOWNERS rules …
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 @@ | ||
* @aws/aws-ides-team | ||
src/codewhisperer/ @aws/codewhisperer-team | ||
src/amazonqFeatureDev/ @aws/earlybird | ||
src/codewhispererChat/ @aws/aws-mynah | ||
src/amazonq/ @aws/aws-mynah | ||
packages/toolkit/src/codewhisperer/ @aws/codewhisperer-team | ||
packages/toolkit/src/amazonqFeatureDev/ @aws/earlybird | ||
packages/toolkit/src/codewhispererChat/ @aws/aws-mynah | ||
packages/toolkit/src/amazonq/ @aws/aws-mynah |
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,12 +1,15 @@ | ||
out | ||
resources/endpoints.json | ||
CHANGELOG.md | ||
src/shared/telemetry/service-2.json | ||
.changes | ||
src/testFixtures/** | ||
*.d.ts | ||
*.gen.ts | ||
dist/** | ||
types/*.d.ts | ||
dist | ||
src.gen/** | ||
plugins/*/dist/** | ||
|
||
# Duplicate entries because prettier can be ran from root or within the workspace/subpackage. | ||
# TODO: Avoid this. | ||
src/shared/telemetry/service-2.json | ||
src/testFixtures/** | ||
|
||
packages/toolkit/src/shared/telemetry/service-2.json | ||
packages/toolkit/src/testFixtures/** |
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 was deleted.
Oops, something went wrong.
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.