diff --git a/apps/cockpit/instrumentation-client.ts b/apps/cockpit/instrumentation-client.ts index ae24d3687..3c472d616 100644 --- a/apps/cockpit/instrumentation-client.ts +++ b/apps/cockpit/instrumentation-client.ts @@ -6,9 +6,8 @@ import { shouldCaptureAnalytics } from './src/lib/analytics/properties'; const token = process.env.NEXT_PUBLIC_COCKPIT_POSTHOG_TOKEN; const captureLocal = process.env.NEXT_PUBLIC_COCKPIT_CAPTURE_LOCAL === 'true'; const host = typeof window === 'undefined' ? undefined : window.location.host; -const doNotTrack = typeof navigator !== 'undefined' && navigator.doNotTrack === '1'; -if (shouldCaptureAnalytics({ token, captureLocal, host, doNotTrack })) { +if (shouldCaptureAnalytics({ token, captureLocal, host })) { posthog.init(token!, { api_host: process.env.NEXT_PUBLIC_COCKPIT_POSTHOG_HOST ?? 'https://us.i.posthog.com', persistence: 'memory', diff --git a/apps/cockpit/project.json b/apps/cockpit/project.json index ce545c51b..232f456c7 100644 --- a/apps/cockpit/project.json +++ b/apps/cockpit/project.json @@ -57,7 +57,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-langgraph-streaming-angular:serve:cockpit --port 4300", + "npx nx run cockpit-langgraph-streaming-angular:serve:cockpit --port 4300", "cd cockpit/langgraph/streaming/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -68,7 +68,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-langgraph-persistence-angular:serve:cockpit --port 4301", + "npx nx run cockpit-langgraph-persistence-angular:serve:cockpit --port 4301", "cd cockpit/langgraph/persistence/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -79,7 +79,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-langgraph-interrupts-angular:serve:cockpit --port 4302", + "npx nx run cockpit-langgraph-interrupts-angular:serve:cockpit --port 4302", "cd cockpit/langgraph/interrupts/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -90,7 +90,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-langgraph-memory-angular:serve:cockpit --port 4303", + "npx nx run cockpit-langgraph-memory-angular:serve:cockpit --port 4303", "cd cockpit/langgraph/memory/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -101,7 +101,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-langgraph-durable-execution-angular:serve:cockpit --port 4304", + "npx nx run cockpit-langgraph-durable-execution-angular:serve:cockpit --port 4304", "cd cockpit/langgraph/durable-execution/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -112,7 +112,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-langgraph-subgraphs-angular:serve:cockpit --port 4305", + "npx nx run cockpit-langgraph-subgraphs-angular:serve:cockpit --port 4305", "cd cockpit/langgraph/subgraphs/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -123,7 +123,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-langgraph-time-travel-angular:serve:cockpit --port 4306", + "npx nx run cockpit-langgraph-time-travel-angular:serve:cockpit --port 4306", "cd cockpit/langgraph/time-travel/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -134,7 +134,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-langgraph-deployment-runtime-angular:serve:cockpit --port 4307", + "npx nx run cockpit-langgraph-deployment-runtime-angular:serve:cockpit --port 4307", "cd cockpit/langgraph/deployment-runtime/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -145,7 +145,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-deep-agents-planning-angular:serve:cockpit --port 4310", + "npx nx run cockpit-deep-agents-planning-angular:serve:cockpit --port 4310", "cd cockpit/deep-agents/planning/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -156,7 +156,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-deep-agents-filesystem-angular:serve:cockpit --port 4311", + "npx nx run cockpit-deep-agents-filesystem-angular:serve:cockpit --port 4311", "cd cockpit/deep-agents/filesystem/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -167,7 +167,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-deep-agents-subagents-angular:serve:cockpit --port 4312", + "npx nx run cockpit-deep-agents-subagents-angular:serve:cockpit --port 4312", "cd cockpit/deep-agents/subagents/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -178,7 +178,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-deep-agents-memory-angular:serve:cockpit --port 4313", + "npx nx run cockpit-deep-agents-memory-angular:serve:cockpit --port 4313", "cd cockpit/deep-agents/memory/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -189,7 +189,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-deep-agents-skills-angular:serve:cockpit --port 4314", + "npx nx run cockpit-deep-agents-skills-angular:serve:cockpit --port 4314", "cd cockpit/deep-agents/skills/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true @@ -200,7 +200,7 @@ "options": { "commands": [ "npx nx serve cockpit --port 4201", - "npx nx serve cockpit-deep-agents-sandboxes-angular:serve:cockpit --port 4315", + "npx nx run cockpit-deep-agents-sandboxes-angular:serve:cockpit --port 4315", "cd cockpit/deep-agents/sandboxes/python && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123" ], "parallel": true diff --git a/apps/cockpit/scripts/serve-example.ts b/apps/cockpit/scripts/serve-example.ts index f129c7ba0..3f4c13a27 100644 --- a/apps/cockpit/scripts/serve-example.ts +++ b/apps/cockpit/scripts/serve-example.ts @@ -30,12 +30,12 @@ process.on('SIGTERM', cleanup); run('cockpit', 'npx nx serve cockpit --port 4201', '36'); if (allMode) { - capabilities.forEach((c) => run(c.id, `npx nx serve ${c.angularProject}:serve:cockpit --port ${c.port}`, '33')); + capabilities.forEach((c) => run(c.id, `npx nx run ${c.angularProject}:serve:cockpit --port ${c.port}`, '33')); console.log('\nšŸš€ Starting cockpit + all 14 examples\n'); } else { const cap = findCapability(capabilityArg!); if (!cap) { console.error(`Unknown: ${capabilityArg}`); process.exit(1); } - run(cap.id, `npx nx serve ${cap.angularProject}:serve:cockpit --port ${cap.port}`, '33'); + run(cap.id, `npx nx run ${cap.angularProject}:serve:cockpit --port ${cap.port}`, '33'); run(`${cap.id}-py`, `cd ${cap.pythonDir} && source $HOME/.local/bin/env 2>/dev/null; uv sync && uv run langgraph dev --port 8123`, '35'); console.log(`\nšŸš€ ${cap.id}: cockpit=4201 angular=${cap.port} langgraph=8123\n`); } diff --git a/apps/cockpit/src/app/layout.tsx b/apps/cockpit/src/app/layout.tsx index b28ceeb08..4a7a8cf3b 100644 --- a/apps/cockpit/src/app/layout.tsx +++ b/apps/cockpit/src/app/layout.tsx @@ -2,6 +2,7 @@ import type { ReactNode } from 'react'; import { cookies } from 'next/headers'; import { cssVars, ThemeProvider } from '@ngaf/ui-react'; import type { Theme } from '@ngaf/design-tokens'; +import { AnalyticsBootstrap } from '../components/analytics-bootstrap'; import './cockpit.css'; export const metadata = { @@ -38,6 +39,7 @@ export default async function RootLayout({ children }: RootLayoutProps) { color: 'var(--ds-text-primary)', }} > + {children} diff --git a/apps/cockpit/src/components/analytics-bootstrap.tsx b/apps/cockpit/src/components/analytics-bootstrap.tsx new file mode 100644 index 000000000..fe449d15b --- /dev/null +++ b/apps/cockpit/src/components/analytics-bootstrap.tsx @@ -0,0 +1,37 @@ +// SPDX-License-Identifier: MIT +'use client'; + +import { useEffect } from 'react'; +import posthog from 'posthog-js'; +import { getCockpitSessionId } from '../lib/analytics/distinct-id'; +import { shouldCaptureAnalytics } from '../lib/analytics/properties'; + +/** + * Client-side analytics bootstrap. Initializes posthog-js once per + * client process when env + privacy gates pass. + * + * Mounted from the root layout. Renders nothing. Idempotent — re-renders + * (e.g. fast-refresh) check `__loaded` before re-initializing. + */ +export function AnalyticsBootstrap(): null { + useEffect(() => { + if ((posthog as unknown as { __loaded?: boolean }).__loaded) { + return; + } + const token = process.env.NEXT_PUBLIC_COCKPIT_POSTHOG_TOKEN; + const captureLocal = process.env.NEXT_PUBLIC_COCKPIT_CAPTURE_LOCAL === 'true'; + const host = typeof window === 'undefined' ? undefined : window.location.host; + if (!shouldCaptureAnalytics({ token, captureLocal, host })) { + return; + } + posthog.init(token as string, { + api_host: process.env.NEXT_PUBLIC_COCKPIT_POSTHOG_HOST ?? 'https://us.i.posthog.com', + persistence: 'memory', + bootstrap: { distinctID: getCockpitSessionId() }, + autocapture: false, + capture_pageview: false, + defaults: '2026-01-30', + }); + }, []); + return null; +} diff --git a/apps/cockpit/src/components/run-mode/run-mode.tsx b/apps/cockpit/src/components/run-mode/run-mode.tsx index 1cebfac8d..ba9f2ba14 100644 --- a/apps/cockpit/src/components/run-mode/run-mode.tsx +++ b/apps/cockpit/src/components/run-mode/run-mode.tsx @@ -1,5 +1,7 @@ // SPDX-License-Identifier: MIT -import React from 'react'; +'use client'; + +import React, { useEffect, useState } from 'react'; import { ThemedFrame } from '@ngaf/ui-react'; import { getCockpitSessionId } from '../../lib/analytics/distinct-id'; @@ -21,6 +23,20 @@ function buildIframeSrc(runtimeUrl: string, capabilitySlug: string): string { } export function RunMode({ entryTitle, runtimeUrl, capabilitySlug }: RunModeProps) { + // SSR-safe: render an empty iframe placeholder so HTML matches across server + // and client, then fill the src in via effect once the session id is available. + // `getCockpitSessionId()` returns a fresh UUID per process; on SSR that UUID + // would differ from the one generated client-side, breaking hydration. + const [src, setSrc] = useState(null); + + useEffect(() => { + if (runtimeUrl) { + setSrc(buildIframeSrc(runtimeUrl, capabilitySlug)); + } else { + setSrc(null); + } + }, [runtimeUrl, capabilitySlug]); + if (!runtimeUrl) { return (
@@ -32,7 +48,7 @@ export function RunMode({ entryTitle, runtimeUrl, capabilitySlug }: RunModeProps return (
{ token: undefined, captureLocal: true, host: 'cockpit.example.com', - doNotTrack: false, - }), - ).toBe(false); - }); - - test('returns false when DO_NOT_TRACK', () => { - expect( - shouldCaptureAnalytics({ - token: 'phc_x', - captureLocal: true, - host: 'cockpit.example.com', - doNotTrack: true, }), ).toBe(false); }); @@ -31,7 +19,6 @@ describe('shouldCaptureAnalytics', () => { token: 'phc_x', captureLocal: false, host: 'localhost:4201', - doNotTrack: false, }), ).toBe(false); }); @@ -42,7 +29,6 @@ describe('shouldCaptureAnalytics', () => { token: 'phc_x', captureLocal: true, host: 'localhost:4201', - doNotTrack: false, }), ).toBe(true); }); @@ -53,7 +39,6 @@ describe('shouldCaptureAnalytics', () => { token: 'phc_x', captureLocal: false, host: 'cockpit.example.com', - doNotTrack: false, }), ).toBe(true); }); diff --git a/apps/cockpit/src/lib/analytics/properties.ts b/apps/cockpit/src/lib/analytics/properties.ts index 275682814..3dd1394a0 100644 --- a/apps/cockpit/src/lib/analytics/properties.ts +++ b/apps/cockpit/src/lib/analytics/properties.ts @@ -3,12 +3,10 @@ export interface CaptureGuardInput { token: string | undefined; captureLocal: boolean; host: string | undefined; - doNotTrack: boolean; } export function shouldCaptureAnalytics(input: CaptureGuardInput): boolean { if (!input.token) return false; - if (input.doNotTrack) return false; if (!input.captureLocal && isLocalhost(input.host)) return false; return true; } diff --git a/cockpit/ag-ui/streaming/angular/project.json b/cockpit/ag-ui/streaming/angular/project.json index 68ec45727..d89f2a840 100644 --- a/cockpit/ag-ui/streaming/angular/project.json +++ b/cockpit/ag-ui/streaming/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/ag-ui/streaming/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/ag-ui/streaming/angular/src/main.ts", "tsConfig": "cockpit/ag-ui/streaming/angular/tsconfig.app.json", - "styles": ["cockpit/ag-ui/streaming/angular/src/styles.css"] + "styles": [ + "cockpit/ag-ui/streaming/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -42,8 +54,12 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-ag-ui-streaming-angular:build:production" }, - "development": { "buildTarget": "cockpit-ag-ui-streaming-angular:build:development" } + "production": { + "buildTarget": "cockpit-ag-ui-streaming-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-ag-ui-streaming-angular:build:development" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/a2ui/angular/project.json b/cockpit/chat/a2ui/angular/project.json index 683c36939..68cc80836 100644 --- a/cockpit/chat/a2ui/angular/project.json +++ b/cockpit/chat/a2ui/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/a2ui/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/a2ui/angular/src/main.ts", "tsConfig": "cockpit/chat/a2ui/angular/tsconfig.app.json", - "styles": ["cockpit/chat/a2ui/angular/src/styles.css"] + "styles": [ + "cockpit/chat/a2ui/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/a2ui/angular/src/environments/environment.ts", + "with": "cockpit/chat/a2ui/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/a2ui/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-a2ui-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-a2ui-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-a2ui-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-a2ui-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-a2ui-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-a2ui-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/debug/angular/project.json b/cockpit/chat/debug/angular/project.json index d41edfa9a..5b3a03b18 100644 --- a/cockpit/chat/debug/angular/project.json +++ b/cockpit/chat/debug/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/debug/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/debug/angular/src/main.ts", "tsConfig": "cockpit/chat/debug/angular/tsconfig.app.json", - "styles": ["cockpit/chat/debug/angular/src/styles.css"] + "styles": [ + "cockpit/chat/debug/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/debug/angular/src/environments/environment.ts", + "with": "cockpit/chat/debug/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/debug/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-debug-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-debug-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-debug-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-debug-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-debug-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-debug-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/generative-ui/angular/project.json b/cockpit/chat/generative-ui/angular/project.json index fd43d50ef..df0489f91 100644 --- a/cockpit/chat/generative-ui/angular/project.json +++ b/cockpit/chat/generative-ui/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/generative-ui/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/generative-ui/angular/src/main.ts", "tsConfig": "cockpit/chat/generative-ui/angular/tsconfig.app.json", - "styles": ["cockpit/chat/generative-ui/angular/src/styles.css"] + "styles": [ + "cockpit/chat/generative-ui/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/generative-ui/angular/src/environments/environment.ts", + "with": "cockpit/chat/generative-ui/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/generative-ui/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-generative-ui-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-generative-ui-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-generative-ui-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-generative-ui-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-generative-ui-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-generative-ui-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/input/angular/project.json b/cockpit/chat/input/angular/project.json index 6ba960877..1ac396d5d 100644 --- a/cockpit/chat/input/angular/project.json +++ b/cockpit/chat/input/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/input/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/input/angular/src/main.ts", "tsConfig": "cockpit/chat/input/angular/tsconfig.app.json", - "styles": ["cockpit/chat/input/angular/src/styles.css"] + "styles": [ + "cockpit/chat/input/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/input/angular/src/environments/environment.ts", + "with": "cockpit/chat/input/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/input/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-input-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-input-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-input-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-input-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-input-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-input-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/interrupts/angular/project.json b/cockpit/chat/interrupts/angular/project.json index 18cdd5ef8..a59abba46 100644 --- a/cockpit/chat/interrupts/angular/project.json +++ b/cockpit/chat/interrupts/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/interrupts/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/interrupts/angular/src/main.ts", "tsConfig": "cockpit/chat/interrupts/angular/tsconfig.app.json", - "styles": ["cockpit/chat/interrupts/angular/src/styles.css"] + "styles": [ + "cockpit/chat/interrupts/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/interrupts/angular/src/environments/environment.ts", + "with": "cockpit/chat/interrupts/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/interrupts/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-interrupts-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-interrupts-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-interrupts-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-interrupts-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-interrupts-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-interrupts-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/messages/angular/project.json b/cockpit/chat/messages/angular/project.json index ec13ef09a..a48080255 100644 --- a/cockpit/chat/messages/angular/project.json +++ b/cockpit/chat/messages/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/messages/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/messages/angular/src/main.ts", "tsConfig": "cockpit/chat/messages/angular/tsconfig.app.json", - "styles": ["cockpit/chat/messages/angular/src/styles.css"] + "styles": [ + "cockpit/chat/messages/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/messages/angular/src/environments/environment.ts", + "with": "cockpit/chat/messages/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/messages/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-messages-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-messages-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-messages-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-messages-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-messages-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-messages-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/subagents/angular/project.json b/cockpit/chat/subagents/angular/project.json index 05ae1af11..139bdd234 100644 --- a/cockpit/chat/subagents/angular/project.json +++ b/cockpit/chat/subagents/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/subagents/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/subagents/angular/src/main.ts", "tsConfig": "cockpit/chat/subagents/angular/tsconfig.app.json", - "styles": ["cockpit/chat/subagents/angular/src/styles.css"] + "styles": [ + "cockpit/chat/subagents/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/subagents/angular/src/environments/environment.ts", + "with": "cockpit/chat/subagents/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/subagents/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-subagents-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-subagents-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-subagents-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-subagents-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-subagents-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-subagents-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/theming/angular/project.json b/cockpit/chat/theming/angular/project.json index 5db69f38b..0ff5c5c17 100644 --- a/cockpit/chat/theming/angular/project.json +++ b/cockpit/chat/theming/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/theming/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/theming/angular/src/main.ts", "tsConfig": "cockpit/chat/theming/angular/tsconfig.app.json", - "styles": ["cockpit/chat/theming/angular/src/styles.css"] + "styles": [ + "cockpit/chat/theming/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/theming/angular/src/environments/environment.ts", + "with": "cockpit/chat/theming/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/theming/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-theming-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-theming-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-theming-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-theming-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-theming-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-theming-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/threads/angular/project.json b/cockpit/chat/threads/angular/project.json index 5b2948700..f93127671 100644 --- a/cockpit/chat/threads/angular/project.json +++ b/cockpit/chat/threads/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/threads/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/threads/angular/src/main.ts", "tsConfig": "cockpit/chat/threads/angular/tsconfig.app.json", - "styles": ["cockpit/chat/threads/angular/src/styles.css"] + "styles": [ + "cockpit/chat/threads/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/threads/angular/src/environments/environment.ts", + "with": "cockpit/chat/threads/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/threads/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-threads-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-threads-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-threads-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-threads-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-threads-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-threads-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/timeline/angular/project.json b/cockpit/chat/timeline/angular/project.json index d767ed64b..d7b50c9c7 100644 --- a/cockpit/chat/timeline/angular/project.json +++ b/cockpit/chat/timeline/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/timeline/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/timeline/angular/src/main.ts", "tsConfig": "cockpit/chat/timeline/angular/tsconfig.app.json", - "styles": ["cockpit/chat/timeline/angular/src/styles.css"] + "styles": [ + "cockpit/chat/timeline/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/timeline/angular/src/environments/environment.ts", + "with": "cockpit/chat/timeline/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/timeline/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-timeline-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-timeline-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-timeline-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-timeline-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-timeline-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-timeline-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/chat/tool-calls/angular/project.json b/cockpit/chat/tool-calls/angular/project.json index ab2966061..a16d92402 100644 --- a/cockpit/chat/tool-calls/angular/project.json +++ b/cockpit/chat/tool-calls/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/chat/tool-calls/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/chat/tool-calls/angular/src/main.ts", "tsConfig": "cockpit/chat/tool-calls/angular/tsconfig.app.json", - "styles": ["cockpit/chat/tool-calls/angular/src/styles.css"] + "styles": [ + "cockpit/chat/tool-calls/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/chat/tool-calls/angular/src/environments/environment.ts", + "with": "cockpit/chat/tool-calls/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/chat/tool-calls/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-chat-tool-calls-angular:build:production" }, - "development": { "buildTarget": "cockpit-chat-tool-calls-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-chat-tool-calls-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-chat-tool-calls-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-chat-tool-calls-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-chat-tool-calls-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/deep-agents/filesystem/angular/project.json b/cockpit/deep-agents/filesystem/angular/project.json index 61aa3d5d2..8ea454c56 100644 --- a/cockpit/deep-agents/filesystem/angular/project.json +++ b/cockpit/deep-agents/filesystem/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/deep-agents/filesystem/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/deep-agents/filesystem/angular/src/main.ts", "tsConfig": "cockpit/deep-agents/filesystem/angular/tsconfig.app.json", - "styles": ["cockpit/deep-agents/filesystem/angular/src/styles.css"] + "styles": [ + "cockpit/deep-agents/filesystem/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/deep-agents/filesystem/angular/src/environments/environment.ts", + "with": "cockpit/deep-agents/filesystem/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/deep-agents/filesystem/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-deep-agents-filesystem-angular:build:production" }, - "development": { "buildTarget": "cockpit-deep-agents-filesystem-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-deep-agents-filesystem-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-deep-agents-filesystem-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-deep-agents-filesystem-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-deep-agents-filesystem-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/deep-agents/memory/angular/project.json b/cockpit/deep-agents/memory/angular/project.json index 0c8c2373d..8de461993 100644 --- a/cockpit/deep-agents/memory/angular/project.json +++ b/cockpit/deep-agents/memory/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/deep-agents/memory/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/deep-agents/memory/angular/src/main.ts", "tsConfig": "cockpit/deep-agents/memory/angular/tsconfig.app.json", - "styles": ["cockpit/deep-agents/memory/angular/src/styles.css"] + "styles": [ + "cockpit/deep-agents/memory/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/deep-agents/memory/angular/src/environments/environment.ts", + "with": "cockpit/deep-agents/memory/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/deep-agents/memory/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-deep-agents-memory-angular:build:production" }, - "development": { "buildTarget": "cockpit-deep-agents-memory-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-deep-agents-memory-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-deep-agents-memory-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-deep-agents-memory-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-deep-agents-memory-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/deep-agents/planning/angular/project.json b/cockpit/deep-agents/planning/angular/project.json index fa69589b4..a66fdf3bf 100644 --- a/cockpit/deep-agents/planning/angular/project.json +++ b/cockpit/deep-agents/planning/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/deep-agents/planning/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/deep-agents/planning/angular/src/main.ts", "tsConfig": "cockpit/deep-agents/planning/angular/tsconfig.app.json", - "styles": ["cockpit/deep-agents/planning/angular/src/styles.css"] + "styles": [ + "cockpit/deep-agents/planning/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/deep-agents/planning/angular/src/environments/environment.ts", + "with": "cockpit/deep-agents/planning/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/deep-agents/planning/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-deep-agents-planning-angular:build:production" }, - "development": { "buildTarget": "cockpit-deep-agents-planning-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-deep-agents-planning-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-deep-agents-planning-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-deep-agents-planning-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-deep-agents-planning-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/deep-agents/sandboxes/angular/project.json b/cockpit/deep-agents/sandboxes/angular/project.json index 1a7f94061..fc812171e 100644 --- a/cockpit/deep-agents/sandboxes/angular/project.json +++ b/cockpit/deep-agents/sandboxes/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/deep-agents/sandboxes/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/deep-agents/sandboxes/angular/src/main.ts", "tsConfig": "cockpit/deep-agents/sandboxes/angular/tsconfig.app.json", - "styles": ["cockpit/deep-agents/sandboxes/angular/src/styles.css"] + "styles": [ + "cockpit/deep-agents/sandboxes/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/deep-agents/sandboxes/angular/src/environments/environment.ts", + "with": "cockpit/deep-agents/sandboxes/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/deep-agents/sandboxes/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-deep-agents-sandboxes-angular:build:production" }, - "development": { "buildTarget": "cockpit-deep-agents-sandboxes-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-deep-agents-sandboxes-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-deep-agents-sandboxes-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-deep-agents-sandboxes-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-deep-agents-sandboxes-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/deep-agents/skills/angular/project.json b/cockpit/deep-agents/skills/angular/project.json index a22efa570..837c6d41d 100644 --- a/cockpit/deep-agents/skills/angular/project.json +++ b/cockpit/deep-agents/skills/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/deep-agents/skills/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/deep-agents/skills/angular/src/main.ts", "tsConfig": "cockpit/deep-agents/skills/angular/tsconfig.app.json", - "styles": ["cockpit/deep-agents/skills/angular/src/styles.css"] + "styles": [ + "cockpit/deep-agents/skills/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/deep-agents/skills/angular/src/environments/environment.ts", + "with": "cockpit/deep-agents/skills/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/deep-agents/skills/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-deep-agents-skills-angular:build:production" }, - "development": { "buildTarget": "cockpit-deep-agents-skills-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-deep-agents-skills-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-deep-agents-skills-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-deep-agents-skills-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-deep-agents-skills-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/deep-agents/subagents/angular/project.json b/cockpit/deep-agents/subagents/angular/project.json index 41afc7aea..2bb825312 100644 --- a/cockpit/deep-agents/subagents/angular/project.json +++ b/cockpit/deep-agents/subagents/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/deep-agents/subagents/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/deep-agents/subagents/angular/src/main.ts", "tsConfig": "cockpit/deep-agents/subagents/angular/tsconfig.app.json", - "styles": ["cockpit/deep-agents/subagents/angular/src/styles.css"] + "styles": [ + "cockpit/deep-agents/subagents/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/deep-agents/subagents/angular/src/environments/environment.ts", + "with": "cockpit/deep-agents/subagents/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/deep-agents/subagents/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-deep-agents-subagents-angular:build:production" }, - "development": { "buildTarget": "cockpit-deep-agents-subagents-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-deep-agents-subagents-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-deep-agents-subagents-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-deep-agents-subagents-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-deep-agents-subagents-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/langgraph/deployment-runtime/angular/project.json b/cockpit/langgraph/deployment-runtime/angular/project.json index c3be26f33..2843a0ff7 100644 --- a/cockpit/langgraph/deployment-runtime/angular/project.json +++ b/cockpit/langgraph/deployment-runtime/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/langgraph/deployment-runtime/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/langgraph/deployment-runtime/angular/src/main.ts", "tsConfig": "cockpit/langgraph/deployment-runtime/angular/tsconfig.app.json", - "styles": ["cockpit/langgraph/deployment-runtime/angular/src/styles.css"] + "styles": [ + "cockpit/langgraph/deployment-runtime/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/langgraph/deployment-runtime/angular/src/environments/environment.ts", + "with": "cockpit/langgraph/deployment-runtime/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/langgraph/deployment-runtime/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-langgraph-deployment-runtime-angular:build:production" }, - "development": { "buildTarget": "cockpit-langgraph-deployment-runtime-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-langgraph-deployment-runtime-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-langgraph-deployment-runtime-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-langgraph-deployment-runtime-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-langgraph-deployment-runtime-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/langgraph/durable-execution/angular/project.json b/cockpit/langgraph/durable-execution/angular/project.json index 87f52807d..320e36cba 100644 --- a/cockpit/langgraph/durable-execution/angular/project.json +++ b/cockpit/langgraph/durable-execution/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/langgraph/durable-execution/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/langgraph/durable-execution/angular/src/main.ts", "tsConfig": "cockpit/langgraph/durable-execution/angular/tsconfig.app.json", - "styles": ["cockpit/langgraph/durable-execution/angular/src/styles.css"] + "styles": [ + "cockpit/langgraph/durable-execution/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/langgraph/durable-execution/angular/src/environments/environment.ts", + "with": "cockpit/langgraph/durable-execution/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/langgraph/durable-execution/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-langgraph-durable-execution-angular:build:production" }, - "development": { "buildTarget": "cockpit-langgraph-durable-execution-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-langgraph-durable-execution-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-langgraph-durable-execution-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-langgraph-durable-execution-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-langgraph-durable-execution-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/langgraph/interrupts/angular/project.json b/cockpit/langgraph/interrupts/angular/project.json index 13df9b906..acb85fd8d 100644 --- a/cockpit/langgraph/interrupts/angular/project.json +++ b/cockpit/langgraph/interrupts/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/langgraph/interrupts/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/langgraph/interrupts/angular/src/main.ts", "tsConfig": "cockpit/langgraph/interrupts/angular/tsconfig.app.json", - "styles": ["cockpit/langgraph/interrupts/angular/src/styles.css"] + "styles": [ + "cockpit/langgraph/interrupts/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/langgraph/interrupts/angular/src/environments/environment.ts", + "with": "cockpit/langgraph/interrupts/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/langgraph/interrupts/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-langgraph-interrupts-angular:build:production" }, - "development": { "buildTarget": "cockpit-langgraph-interrupts-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-langgraph-interrupts-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-langgraph-interrupts-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-langgraph-interrupts-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-langgraph-interrupts-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/langgraph/memory/angular/project.json b/cockpit/langgraph/memory/angular/project.json index 3a516c7ca..49f84126e 100644 --- a/cockpit/langgraph/memory/angular/project.json +++ b/cockpit/langgraph/memory/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/langgraph/memory/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/langgraph/memory/angular/src/main.ts", "tsConfig": "cockpit/langgraph/memory/angular/tsconfig.app.json", - "styles": ["cockpit/langgraph/memory/angular/src/styles.css"] + "styles": [ + "cockpit/langgraph/memory/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/langgraph/memory/angular/src/environments/environment.ts", + "with": "cockpit/langgraph/memory/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/langgraph/memory/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-langgraph-memory-angular:build:production" }, - "development": { "buildTarget": "cockpit-langgraph-memory-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-langgraph-memory-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-langgraph-memory-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-langgraph-memory-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-langgraph-memory-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/langgraph/persistence/angular/project.json b/cockpit/langgraph/persistence/angular/project.json index 57584e20b..ebfecf197 100644 --- a/cockpit/langgraph/persistence/angular/project.json +++ b/cockpit/langgraph/persistence/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/langgraph/persistence/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/langgraph/persistence/angular/src/main.ts", "tsConfig": "cockpit/langgraph/persistence/angular/tsconfig.app.json", - "styles": ["cockpit/langgraph/persistence/angular/src/styles.css"] + "styles": [ + "cockpit/langgraph/persistence/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/langgraph/persistence/angular/src/environments/environment.ts", + "with": "cockpit/langgraph/persistence/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/langgraph/persistence/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-langgraph-persistence-angular:build:production" }, - "development": { "buildTarget": "cockpit-langgraph-persistence-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-langgraph-persistence-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-langgraph-persistence-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-langgraph-persistence-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-langgraph-persistence-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/langgraph/streaming/angular/project.json b/cockpit/langgraph/streaming/angular/project.json index 65fad2213..8b4515281 100644 --- a/cockpit/langgraph/streaming/angular/project.json +++ b/cockpit/langgraph/streaming/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/langgraph/streaming/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/langgraph/streaming/angular/src/main.ts", "tsConfig": "cockpit/langgraph/streaming/angular/tsconfig.app.json", - "styles": ["cockpit/langgraph/streaming/angular/src/styles.css"] + "styles": [ + "cockpit/langgraph/streaming/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/langgraph/streaming/angular/src/environments/environment.ts", + "with": "cockpit/langgraph/streaming/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/langgraph/streaming/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-langgraph-streaming-angular:build:production" }, - "development": { "buildTarget": "cockpit-langgraph-streaming-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-langgraph-streaming-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-langgraph-streaming-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-langgraph-streaming-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-langgraph-streaming-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/langgraph/subgraphs/angular/project.json b/cockpit/langgraph/subgraphs/angular/project.json index cce23df7a..41b601ace 100644 --- a/cockpit/langgraph/subgraphs/angular/project.json +++ b/cockpit/langgraph/subgraphs/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/langgraph/subgraphs/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/langgraph/subgraphs/angular/src/main.ts", "tsConfig": "cockpit/langgraph/subgraphs/angular/tsconfig.app.json", - "styles": ["cockpit/langgraph/subgraphs/angular/src/styles.css"] + "styles": [ + "cockpit/langgraph/subgraphs/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/langgraph/subgraphs/angular/src/environments/environment.ts", + "with": "cockpit/langgraph/subgraphs/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/langgraph/subgraphs/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-langgraph-subgraphs-angular:build:production" }, - "development": { "buildTarget": "cockpit-langgraph-subgraphs-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-langgraph-subgraphs-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-langgraph-subgraphs-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-langgraph-subgraphs-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-langgraph-subgraphs-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/langgraph/time-travel/angular/project.json b/cockpit/langgraph/time-travel/angular/project.json index 2a8cd3f60..19a4f9de6 100644 --- a/cockpit/langgraph/time-travel/angular/project.json +++ b/cockpit/langgraph/time-travel/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/langgraph/time-travel/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/langgraph/time-travel/angular/src/main.ts", "tsConfig": "cockpit/langgraph/time-travel/angular/tsconfig.app.json", - "styles": ["cockpit/langgraph/time-travel/angular/src/styles.css"] + "styles": [ + "cockpit/langgraph/time-travel/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/langgraph/time-travel/angular/src/environments/environment.ts", + "with": "cockpit/langgraph/time-travel/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/langgraph/time-travel/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-langgraph-time-travel-angular:build:production" }, - "development": { "buildTarget": "cockpit-langgraph-time-travel-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-langgraph-time-travel-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-langgraph-time-travel-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-langgraph-time-travel-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-langgraph-time-travel-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/render/computed-functions/angular/project.json b/cockpit/render/computed-functions/angular/project.json index c959cf433..2d4d095e2 100644 --- a/cockpit/render/computed-functions/angular/project.json +++ b/cockpit/render/computed-functions/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/render/computed-functions/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/render/computed-functions/angular/src/main.ts", "tsConfig": "cockpit/render/computed-functions/angular/tsconfig.app.json", - "styles": ["cockpit/render/computed-functions/angular/src/styles.css"] + "styles": [ + "cockpit/render/computed-functions/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/render/computed-functions/angular/src/environments/environment.ts", + "with": "cockpit/render/computed-functions/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/render/computed-functions/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-render-computed-functions-angular:build:production" }, - "development": { "buildTarget": "cockpit-render-computed-functions-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-render-computed-functions-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-render-computed-functions-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-render-computed-functions-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-render-computed-functions-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/render/element-rendering/angular/project.json b/cockpit/render/element-rendering/angular/project.json index 1c1ea31d0..acfd2caca 100644 --- a/cockpit/render/element-rendering/angular/project.json +++ b/cockpit/render/element-rendering/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/render/element-rendering/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/render/element-rendering/angular/src/main.ts", "tsConfig": "cockpit/render/element-rendering/angular/tsconfig.app.json", - "styles": ["cockpit/render/element-rendering/angular/src/styles.css"] + "styles": [ + "cockpit/render/element-rendering/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/render/element-rendering/angular/src/environments/environment.ts", + "with": "cockpit/render/element-rendering/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/render/element-rendering/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-render-element-rendering-angular:build:production" }, - "development": { "buildTarget": "cockpit-render-element-rendering-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-render-element-rendering-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-render-element-rendering-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-render-element-rendering-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-render-element-rendering-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/render/registry/angular/project.json b/cockpit/render/registry/angular/project.json index 2d7c482c8..6168371c5 100644 --- a/cockpit/render/registry/angular/project.json +++ b/cockpit/render/registry/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/render/registry/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/render/registry/angular/src/main.ts", "tsConfig": "cockpit/render/registry/angular/tsconfig.app.json", - "styles": ["cockpit/render/registry/angular/src/styles.css"] + "styles": [ + "cockpit/render/registry/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/render/registry/angular/src/environments/environment.ts", + "with": "cockpit/render/registry/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/render/registry/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-render-registry-angular:build:production" }, - "development": { "buildTarget": "cockpit-render-registry-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-render-registry-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-render-registry-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-render-registry-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-render-registry-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/render/repeat-loops/angular/project.json b/cockpit/render/repeat-loops/angular/project.json index 8c02340ae..4b45d2e82 100644 --- a/cockpit/render/repeat-loops/angular/project.json +++ b/cockpit/render/repeat-loops/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/render/repeat-loops/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/render/repeat-loops/angular/src/main.ts", "tsConfig": "cockpit/render/repeat-loops/angular/tsconfig.app.json", - "styles": ["cockpit/render/repeat-loops/angular/src/styles.css"] + "styles": [ + "cockpit/render/repeat-loops/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/render/repeat-loops/angular/src/environments/environment.ts", + "with": "cockpit/render/repeat-loops/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/render/repeat-loops/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-render-repeat-loops-angular:build:production" }, - "development": { "buildTarget": "cockpit-render-repeat-loops-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-render-repeat-loops-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-render-repeat-loops-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-render-repeat-loops-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-render-repeat-loops-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/render/spec-rendering/angular/project.json b/cockpit/render/spec-rendering/angular/project.json index dd23e97c6..b43976268 100644 --- a/cockpit/render/spec-rendering/angular/project.json +++ b/cockpit/render/spec-rendering/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/render/spec-rendering/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/render/spec-rendering/angular/src/main.ts", "tsConfig": "cockpit/render/spec-rendering/angular/tsconfig.app.json", - "styles": ["cockpit/render/spec-rendering/angular/src/styles.css"] + "styles": [ + "cockpit/render/spec-rendering/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/render/spec-rendering/angular/src/environments/environment.ts", + "with": "cockpit/render/spec-rendering/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/render/spec-rendering/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-render-spec-rendering-angular:build:production" }, - "development": { "buildTarget": "cockpit-render-spec-rendering-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-render-spec-rendering-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-render-spec-rendering-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-render-spec-rendering-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-render-spec-rendering-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": { diff --git a/cockpit/render/state-management/angular/project.json b/cockpit/render/state-management/angular/project.json index 906da48d9..252b14998 100644 --- a/cockpit/render/state-management/angular/project.json +++ b/cockpit/render/state-management/angular/project.json @@ -6,7 +6,9 @@ "targets": { "build": { "executor": "@angular/build:application", - "outputs": ["{options.outputPath.base}"], + "outputs": [ + "{options.outputPath.base}" + ], "options": { "outputPath": { "base": "dist/cockpit/render/state-management/angular", @@ -14,13 +16,23 @@ }, "browser": "cockpit/render/state-management/angular/src/main.ts", "tsConfig": "cockpit/render/state-management/angular/tsconfig.app.json", - "styles": ["cockpit/render/state-management/angular/src/styles.css"] + "styles": [ + "cockpit/render/state-management/angular/src/styles.css" + ] }, "configurations": { "production": { "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } ], "outputHashing": "none" }, @@ -36,11 +48,15 @@ ] }, "cockpit": { - "budgets": [ - { "type": "initial", "maximumWarning": "500kb", "maximumError": "1mb" }, - { "type": "anyComponentStyle", "maximumWarning": "4kb", "maximumError": "8kb" } + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "cockpit/render/state-management/angular/src/environments/environment.ts", + "with": "cockpit/render/state-management/angular/src/environments/environment.development.ts" + } ], - "outputHashing": "none", "browser": "cockpit/render/state-management/angular/src/main.cockpit.ts" } }, @@ -50,9 +66,15 @@ "continuous": true, "executor": "@angular/build:dev-server", "configurations": { - "production": { "buildTarget": "cockpit-render-state-management-angular:build:production" }, - "development": { "buildTarget": "cockpit-render-state-management-angular:build:development" }, - "cockpit": { "buildTarget": "cockpit-render-state-management-angular:build:cockpit" } + "production": { + "buildTarget": "cockpit-render-state-management-angular:build:production" + }, + "development": { + "buildTarget": "cockpit-render-state-management-angular:build:development" + }, + "cockpit": { + "buildTarget": "cockpit-render-state-management-angular:build:cockpit" + } }, "defaultConfiguration": "development", "options": {