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.
refactor: separate toolkit into core library (aws#4475)
In order to share code between multiple extensions we need to create a core library. Rather than create a core lib package, we decided to rename the current toolkit as a core library and create a barebones replacement that will generate the extension by importing from the core lib. This is easier than searching for common components, unwiring them, and hoisting them into an empty core lib package. List of commits: * initial restructuring and code moving * rename toolkit to core * rename stuff to core, 'inherit' fields from core package.json * rename toolkit2 to toolkit, cleanup * debugging works (non chrome/webpack only) * run in browser (but debugging doesnt work) * delete resources, package.nls.json * move/update auxillary files, e.g. types/, templates/, etc * update vscode configurations, build scripts, core lib tests. * update infra configs (e.g. root package.json, codecov) * remove unnecessary changes * update AWS.Token import error comments * fix web tests by adding webCompile to core * generalize .vscodeignore, remove dev artifacts * fix package.json scripts * update documentation * fix import from mainline commit, fix prepublish script * remove compile from postinstall in core lib * try compiling on install with bigger heap size * try to fix flaky linux unit tests * add more docs + workspace file for easier opening * fix up configs * update docs to specify how to import from core lib
- Loading branch information
Showing
1,411 changed files
with
5,372 additions
and
4,770 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
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 | ||
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 | ||
packages/core/src/codewhisperer/ @aws/codewhisperer-team | ||
packages/core/src/amazonqFeatureDev/ @aws/earlybird | ||
packages/core/src/codewhispererChat/ @aws/aws-mynah | ||
packages/core/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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": "." | ||
}, | ||
{ | ||
"path": "packages/core" | ||
}, | ||
{ | ||
"path": "packages/toolkit" | ||
}, | ||
{ | ||
"path": "packages/amazonq" | ||
} | ||
], | ||
"settings": { | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} | ||
} |
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
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.