Skip to content

Commit 3778fd8

Browse files
megha-narayananMegha NarayananAmplifiyer
authored
[DevTools] Dependencies and Basic Structure (#2868)
* PR1: Dependencies, Basic React App Facade, and Barebones Devtools Command Includes basic react app and sandbox devtools command --------- Co-authored-by: Megha Narayanan <meghabit@amazon.com> Co-authored-by: Amplifiyer <pravgupt@amazon.com>
1 parent 146f603 commit 3778fd8

33 files changed

+5132
-76
lines changed

.changeset/busy-flowers-reply.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'@aws-amplify/sandbox': minor
3+
'@aws-amplify/backend-cli': minor
4+
'@aws-amplify/backend-deployer': patch
5+
'@aws-amplify/ai-constructs': patch
6+
---
7+
8+
Add dev tools react app

.changeset/forty-camels-jog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

.eslint_dictionary.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"deprecations",
5252
"deprecator",
5353
"deserializer",
54+
"devtools",
5455
"disambiguator",
5556
"docx",
5657
"downlevel",
@@ -62,6 +63,7 @@
6263
"enum",
6364
"enums",
6465
"envinfo",
66+
"errno",
6567
"esbuild",
6668
"esnext",
6769
"execa",
@@ -217,6 +219,7 @@
217219
"verifier",
218220
"versioned",
219221
"versioning",
222+
"vite",
220223
"whoami",
221224
"wildcard",
222225
"wildcards",

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ packages/client-config/src/client-config-schema
1616

1717
# Directory below is git-ignored. We create and delete test projects in e2e tests there.
1818
packages/integration-tests/src/e2e-tests
19+
20+
# Frontend code
21+
packages/cli/src/commands/sandbox/sandbox-devtools/react-app/**

.github/dependency_review_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,5 @@ allow-licenses:
2828
- X11
2929
- zlib-acknowledgement
3030
- Zlib
31+
- LicenseRef-scancode-unknown-license-reference AND MIT
32+
- MIT AND Zlib

.github/workflows/health_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
runs-on: ${{ matrix.os }}
148148
needs:
149149
- resolve_inputs
150-
timeout-minutes: 10
150+
timeout-minutes: 45
151151
steps:
152152
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
153153
- uses: ./.github/actions/setup_node

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,8 @@ concurrent_workspace_script_cache.json
2222

2323
testDir
2424
/.amplify
25+
26+
# React app build files
27+
packages/cli/src/commands/sandbox/sandbox-devtools/public/
28+
packages/cli/src/commands/sandbox/sandbox-devtools/react-app/dist/
29+
packages/cli/src/commands/sandbox/sandbox-devtools/amplify-backend.code-workspace

0 commit comments

Comments
 (0)