-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(build): missing dependencies failing aws amplify deployment
- Loading branch information
Showing
6 changed files
with
427 additions
and
80 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
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,20 @@ | ||
version: 1 | ||
applications: | ||
- appRoot: apps/docs | ||
frontend: | ||
phases: | ||
preBuild: | ||
commands: | ||
- npm i -g pnpm | ||
- pnpm i | ||
- pnpm playwright install | ||
build: | ||
commands: | ||
- pnpm nx build docs --verbose | ||
artifacts: | ||
baseDirectory: .next | ||
files: | ||
- '**/*' | ||
cache: | ||
paths: | ||
- node_modules/**/* |
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,9 @@ | ||
{ | ||
"name": "hackathon", | ||
"$schema": "../../node_modules/nx/schemas/project-schema.json", | ||
"sourceRoot": "apps/hackathon", | ||
"projectType": "application", | ||
"tags": [], | ||
"// targets": "to see all targets run: nx show project hackathon --web", | ||
"targets": {} | ||
} |
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,9 @@ | ||
{ | ||
"name": "landing-page", | ||
"$schema": "../../node_modules/nx/schemas/project-schema.json", | ||
"sourceRoot": "apps/landing-page", | ||
"projectType": "application", | ||
"tags": [], | ||
"// targets": "to see all targets run: nx show project landing-page --web", | ||
"targets": {} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,9 @@ | |
"type": "git", | ||
"url": "https://github.com/cuhacking/2025.git" | ||
}, | ||
"scripts": {}, | ||
"scripts": { | ||
"postinstall": "pnpx playwright install" | ||
}, | ||
"private": true, | ||
"dependencies": { | ||
"@remix-run/node": "^2.8.1", | ||
|
@@ -36,7 +38,7 @@ | |
"@nx/next": "19.5.7", | ||
"@nx/playwright": "19.5.7", | ||
"@nx/remix": "19.5.7", | ||
"@nx/vite": "19.5.7", | ||
"@nx/vite": "^19.6.0", | ||
"@nx/web": "19.5.7", | ||
"@nx/workspace": "19.5.7", | ||
"@playwright/test": "^1.36.0", | ||
|
@@ -56,8 +58,9 @@ | |
"@typescript-eslint/eslint-plugin": "^7.16.0", | ||
"@typescript-eslint/parser": "^7.16.0", | ||
"@vitejs/plugin-react": "^4.2.0", | ||
"@vitest/coverage-v8": "^1.0.4", | ||
"@vitest/ui": "^1.3.1", | ||
"@vitejs/plugin-react-swc": "^3.7.0", | ||
"@vitest/coverage-v8": "^2.0.5", | ||
"@vitest/ui": "^2.0.5", | ||
"autoprefixer": "10.4.13", | ||
"babel-jest": "^29.4.1", | ||
"eslint": "~8.57.0", | ||
|
@@ -87,5 +90,6 @@ | |
"typescript": "~5.5.2", | ||
"vite": "^5.0.0", | ||
"vitest": "^2.0.5" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.