Skip to content

Commit df4904f

Browse files
authored
build: rename vite apps to have -app suffix (#493)
* fix: extra lines in inline recommendation * build: rename vite apps to have `-app` suffix
1 parent 98ad5bd commit df4904f

File tree

177 files changed

+6
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+6
-6
lines changed

build-scripts/build.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ def build_npm_packages(run_test: bool = True) -> NpmBuildOutput:
8686
# copy to output
8787
dashboard_path = BUILD_DIR / "dashboard"
8888
shutil.rmtree(dashboard_path, ignore_errors=True)
89-
shutil.copytree("packages/dashboard/dist", dashboard_path)
89+
shutil.copytree("packages/dashboard-app/dist", dashboard_path)
9090

9191
autocomplete_path = BUILD_DIR / "autocomplete"
9292
shutil.rmtree(autocomplete_path, ignore_errors=True)
93-
shutil.copytree("packages/autocomplete/dist", autocomplete_path)
93+
shutil.copytree("packages/autocomplete-app/dist", autocomplete_path)
9494

9595
vscode_path = BUILD_DIR / "vscode-plugin.vsix"
9696
shutil.rmtree(vscode_path, ignore_errors=True)
File renamed without changes.
File renamed without changes.
File renamed without changes.

packages/autocomplete/package.json packages/autocomplete-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@amzn/autocomplete",
2+
"name": "@amzn/autocomplete-app",
33
"private": true,
44
"version": "1.0.0",
55
"repository": "https://github.com/aws/amazon-q-developer-cli",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

packages/dashboard/package.json packages/dashboard-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@amzn/dashboard",
2+
"name": "@amzn/dashboard-app",
33
"private": true,
44
"version": "1.0.0",
55
"repository": "https://github.com/aws/amazon-q-developer-cli",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pnpm-lock.yaml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)