-
Notifications
You must be signed in to change notification settings - Fork 746
feat(amazonq): package.json npm scripts for build issues with vscode-extension-tester (VET) #7666
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
Changes from 1 commit
61bf08e
1c7b855
1127842
d14bcd5
2f1ea4e
74c5770
b4af3b4
e63ac47
4b464ca
9f01f9e
e902fc0
1940c99
0a24c10
7ac44f5
9d53f2a
7865392
85aad28
0c0b550
5277991
9fa3eb7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,6 +28,8 @@ | |
| "test": "npm run test -w packages/ --if-present", | ||
| "testWeb": "npm run testWeb -w packages/ --if-present", | ||
| "testE2E": "npm run testE2E -w packages/ --if-present", | ||
| "setupE2E": "cd packages/amazonq && npm run package > ../../vsix.log 2>&1 && cd ../.. && node_modules/.bin/extest install-vsix --vsix_file amazon-q-vscode-$(node scripts/get-vsix-version.js).vsix", | ||
|
||
| "testUI": "npm run testCompile && node_modules/.bin/extest run-tests packages/amazonq/dist/test/e2e/amazonq/VET.test.js -u", | ||
| "testInteg": "npm run testInteg -w packages/ --if-present", | ||
| "package": "npm run package -w packages/toolkit -w packages/amazonq", | ||
| "newChange": "echo 'Must specify subproject/workspace with -w packages/<subproject>' && false", | ||
|
|
@@ -71,7 +73,7 @@ | |
| "ts-node": "^10.9.1", | ||
| "typescript": "^5.0.4", | ||
| "util": "^0.12.5", | ||
| "vscode-extension-tester": "^8.15.0", | ||
| "vscode-extension-tester": "^8.16.2", | ||
| "webpack": "^5.95.0", | ||
| "webpack-cli": "^5.1.4", | ||
| "webpack-dev-server": "^4.15.2", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # Source files | ||
|
||
| src/** | ||
| test/** | ||
| *.ts | ||
| *.map | ||
|
|
||
| # Build artifacts | ||
| node_modules/** | ||
| out/test/** | ||
| coverage/** | ||
| .nyc_output/** | ||
|
|
||
| # Development files | ||
| .vscode/** | ||
| .github/** | ||
| scripts/** | ||
| docs/** | ||
| *.md | ||
| !README.md | ||
|
|
||
| # Config files | ||
| .eslintrc* | ||
| .prettierrc* | ||
| tsconfig*.json | ||
| webpack*.js | ||
| jest.config* | ||
| .gitignore | ||
|
|
||
| # Logs and temp files | ||
| *.log | ||
| .DS_Store | ||
| Thumbs.db | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| "name": "amazon-q-vscode", | ||
| "displayName": "Amazon Q", | ||
| "description": "The most capable generative AI-powered assistant for building, operating, and transforming software, with advanced capabilities for managing data and AI", | ||
| "version": "1.83.0-SNAPSHOT", | ||
|
||
| "version": "1.83.0-g8500b1e", | ||
| "extensionKind": [ | ||
| "workspace" | ||
| ], | ||
|
|
@@ -13,6 +13,7 @@ | |
| "type": "git", | ||
| "url": "https://github.com/aws/aws-toolkit-vscode" | ||
| }, | ||
| "homepage": "https://github.com/aws/aws-toolkit-vscode", | ||
|
||
| "bugs": { | ||
| "url": "https://github.com/aws/aws-toolkit-vscode/issues" | ||
| }, | ||
|
|
@@ -1322,26 +1323,40 @@ | |
| "fontCharacter": "\\f1de" | ||
| } | ||
| }, | ||
| "aws-schemas-registry": { | ||
| "aws-sagemaker-code-editor": { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you'll have to rebase to remove these changes. Solved this issue with Laura, so she is an expert now :) |
||
| "description": "AWS Contributed Icon", | ||
| "default": { | ||
| "fontPath": "./resources/fonts/aws-toolkit-icons.woff", | ||
| "fontCharacter": "\\f1df" | ||
| } | ||
| }, | ||
| "aws-schemas-schema": { | ||
| "aws-sagemaker-jupyter-lab": { | ||
| "description": "AWS Contributed Icon", | ||
| "default": { | ||
| "fontPath": "./resources/fonts/aws-toolkit-icons.woff", | ||
| "fontCharacter": "\\f1e0" | ||
| } | ||
| }, | ||
| "aws-stepfunctions-preview": { | ||
| "aws-schemas-registry": { | ||
| "description": "AWS Contributed Icon", | ||
| "default": { | ||
| "fontPath": "./resources/fonts/aws-toolkit-icons.woff", | ||
| "fontCharacter": "\\f1e1" | ||
| } | ||
| }, | ||
| "aws-schemas-schema": { | ||
| "description": "AWS Contributed Icon", | ||
| "default": { | ||
| "fontPath": "./resources/fonts/aws-toolkit-icons.woff", | ||
| "fontCharacter": "\\f1e2" | ||
| } | ||
| }, | ||
| "aws-stepfunctions-preview": { | ||
| "description": "AWS Contributed Icon", | ||
| "default": { | ||
| "fontPath": "./resources/fonts/aws-toolkit-icons.woff", | ||
| "fontCharacter": "\\f1e3" | ||
| } | ||
| } | ||
| }, | ||
| "walkthroughs": [ | ||
|
|
||
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.
Is it worth making this
setupUIto match thetestUIbelow?