Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -809,6 +809,14 @@ jobs:
cache: npm
- run: npm ci
- name: Build and assemble canonical demo
env:
# Baked into the SPA bundle by inject-env at build time (assemble-demo.ts
# runs `nx build examples-chat-angular`, whose build target dependsOn
# inject-env). Without the key the App-mode map toggle is disabled in
# prod. The key ships in the public bundle (normal for Maps JS) — restrict
# it by HTTP referrer in the Google Cloud console. The Map ID is not a secret.
GOOGLE_MAPS_API_KEY: ${{ secrets.GOOGLE_MAPS_API_KEY }}
GOOGLE_MAPS_MAP_ID: 86d464ea7d5306034fe2a254
run: npx tsx scripts/assemble-demo.ts
- name: Deploy canonical demo to Vercel (production)
working-directory: deploy/demo
Expand Down
8 changes: 4 additions & 4 deletions examples/chat/angular/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1.5mb"
"maximumWarning": "1.6mb",
"maximumError": "1.75mb"
},
{
"type": "anyComponentStyle",
Expand All @@ -74,8 +74,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1.5mb"
"maximumWarning": "1.6mb",
"maximumError": "1.75mb"
},
{
"type": "anyComponentStyle",
Expand Down
Loading