Skip to content
Draft
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
173 changes: 128 additions & 45 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"firebase": "./lib/bin/firebase.js"
},
"scripts": {
"build": "tsc && npm run copyfiles",
"build:mcp-apps": "vite build --config src/mcp/apps/update_environment/vite.config.ts && vite build --config src/mcp/apps/init/vite.config.ts",
"build": "npm run build:mcp-apps && tsc && npm run copyfiles",
"build:publish": "tsc --build tsconfig.publish.json && npm run copyfiles",
"build:watch": "npm run build && tsc --watch",
"clean": "node -e \"fs.rmSync('lib', { recursive: true, force: true }); fs.rmSync('dev', { recursive: true, force: true });\"",
Expand Down Expand Up @@ -185,6 +186,7 @@
"@angular-devkit/architect": "^0.1402.2",
"@angular-devkit/core": "^14.2.2",
"@google/events": "^5.1.1",
"@modelcontextprotocol/ext-apps": "^1.3.2",
"@types/archiver": "^6.0.0",
"@types/async-lock": "^1.4.2",
"@types/body-parser": "^1.17.0",
Expand Down Expand Up @@ -266,7 +268,8 @@
"ts-node": "^10.4.0",
"typescript": "^5.3.3",
"typescript-json-schema": "^0.65.1",
"vite": "^4.2.1"
"vite": "^4.2.1",
"vite-plugin-singlefile": "^0.13.5"
},
"overrides": {
"@angular-devkit/core": {
Expand Down
2 changes: 1 addition & 1 deletion src/deploy/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import {
deployStatsParams,
} from "./dataconnect/context";

const TARGETS = {
export const TARGETS = {
hosting: HostingTarget,
database: DatabaseTarget,
firestore: FirestoreTarget,
Expand Down
5 changes: 5 additions & 0 deletions src/experiments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,11 @@ export const ALL_EXPERIMENTS = experiments({
default: false,
public: true,
},
mcpapps: {
shortDescription: "Enables MCP Apps features",
fullDescription: "Enables MCP Apps features, including returning UI resource URIs.",
public: true,
},
fdcift: {
shortDescription: "Enable instrumentless trial for Data Connect",
default: true,
Expand Down
Loading
Loading