fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: fix angular examples

Lubos 1d8c6026 ec41a6b7

+226 -93
+1 -6
examples/openapi-ts-angular-common/angular.json
··· 25 25 } 26 26 ], 27 27 "styles": ["src/styles.css"], 28 - "scripts": [], 29 - "server": "src/main.server.ts", 30 - "outputMode": "server", 31 - "ssr": { 32 - "entry": "src/server.ts" 33 - } 28 + "scripts": [] 34 29 }, 35 30 "configurations": { 36 31 "production": {
+1 -1
examples/openapi-ts-angular-common/package.json
··· 22 22 "@angular/platform-browser-dynamic": "21.1.2", 23 23 "@angular/platform-server": "21.1.2", 24 24 "@angular/router": "21.1.2", 25 - "@angular/ssr": "21.0.0", 25 + "@angular/ssr": "21.1.2", 26 26 "express": "4.21.0", 27 27 "rxjs": "7.8.2", 28 28 "tslib": "2.8.1",
+2 -3
examples/openapi-ts-angular-common/src/app/app.config.server.ts
··· 1 1 import type { ApplicationConfig } from '@angular/core'; 2 2 import { mergeApplicationConfig } from '@angular/core'; 3 - import { provideServerRendering } from '@angular/platform-server'; 4 - import { provideServerRouting } from '@angular/ssr'; 3 + import { provideServerRendering, withRoutes } from '@angular/ssr'; 5 4 6 5 import { appConfig } from './app.config'; 7 6 import { serverRoutes } from './app.routes.server'; 8 7 9 8 const serverConfig: ApplicationConfig = { 10 - providers: [provideServerRendering(), provideServerRouting(serverRoutes)], 9 + providers: [provideServerRendering(withRoutes(serverRoutes))], 11 10 }; 12 11 13 12 export const config = mergeApplicationConfig(appConfig, serverConfig);
+1 -1
examples/openapi-ts-angular-common/src/app/app.routes.server.ts
··· 4 4 export const serverRoutes: ServerRoute[] = [ 5 5 { 6 6 path: '**', 7 - renderMode: RenderMode.Prerender, 7 + renderMode: RenderMode.Server, 8 8 }, 9 9 ];
+9 -1
examples/openapi-ts-angular-common/src/app/app.routes.ts
··· 1 1 import type { Routes } from '@angular/router'; 2 2 3 - export const routes: Routes = []; 3 + import { Demo } from './demo/demo'; 4 + 5 + export const routes: Routes = [ 6 + { 7 + component: Demo, 8 + path: '', 9 + pathMatch: 'full', 10 + }, 11 + ];
+1 -2
examples/openapi-ts-angular-common/src/app/demo/demo.ts
··· 1 1 import { JsonPipe } from '@angular/common'; 2 2 import { Component, inject, signal } from '@angular/core'; 3 - import { RouterOutlet } from '@angular/router'; 4 3 5 4 import { PetServiceResources } from '../../client'; 6 5 7 6 @Component({ 8 7 host: { ngSkipHydration: 'true' }, 9 - imports: [RouterOutlet, JsonPipe], 8 + imports: [JsonPipe], 10 9 selector: 'app-demo', 11 10 styleUrl: './demo.css', 12 11 templateUrl: './demo.html',
+1 -6
examples/openapi-ts-angular/angular.json
··· 25 25 } 26 26 ], 27 27 "styles": ["src/styles.css"], 28 - "scripts": [], 29 - "server": "src/main.server.ts", 30 - "outputMode": "server", 31 - "ssr": { 32 - "entry": "src/server.ts" 33 - } 28 + "scripts": [] 34 29 }, 35 30 "configurations": { 36 31 "production": {
+2 -3
examples/openapi-ts-angular/src/app/app.config.server.ts
··· 1 1 import type { ApplicationConfig } from '@angular/core'; 2 2 import { mergeApplicationConfig } from '@angular/core'; 3 - import { provideServerRendering } from '@angular/platform-server'; 4 - import { provideServerRouting } from '@angular/ssr'; 3 + import { provideServerRendering, withRoutes } from '@angular/ssr'; 5 4 6 5 import { appConfig } from './app.config'; 7 6 import { serverRoutes } from './app.routes.server'; 8 7 9 8 const serverConfig: ApplicationConfig = { 10 - providers: [provideServerRendering(), provideServerRouting(serverRoutes)], 9 + providers: [provideServerRendering(), provideServerRendering(withRoutes(serverRoutes))], 11 10 }; 12 11 13 12 export const config = mergeApplicationConfig(appConfig, serverConfig);
+9 -1
examples/openapi-ts-angular/src/app/app.routes.ts
··· 1 1 import type { Routes } from '@angular/router'; 2 2 3 - export const routes: Routes = []; 3 + import { Demo } from './demo/demo'; 4 + 5 + export const routes: Routes = [ 6 + { 7 + component: Demo, 8 + path: '', 9 + pathMatch: 'full', 10 + }, 11 + ];
+1 -3
examples/openapi-ts-angular/src/app/demo/demo.ts
··· 1 - import { JsonPipe } from '@angular/common'; 2 1 import type { HttpErrorResponse } from '@angular/common/http'; 3 2 import { HttpClient } from '@angular/common/http'; 4 3 import { Component, inject, signal } from '@angular/core'; 5 - import { RouterOutlet } from '@angular/router'; 6 4 7 5 import type { AddPetErrors, Pet } from '../../client'; 8 6 import { PetService } from '../../client'; ··· 23 21 24 22 @Component({ 25 23 host: { ngSkipHydration: 'true' }, 26 - imports: [RouterOutlet, JsonPipe], 24 + imports: [], 27 25 selector: 'app-demo', 28 26 styleUrl: './demo.css', 29 27 templateUrl: './demo.html',
+198 -66
pnpm-lock.yaml
··· 313 313 specifier: 21.1.2 314 314 version: 21.1.2(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) 315 315 '@angular/ssr': 316 - specifier: 21.0.0 317 - version: 21.0.0(82cf63d9d14337d0a50793f915784773) 316 + specifier: 21.1.2 317 + version: 21.1.2(82cf63d9d14337d0a50793f915784773) 318 318 express: 319 319 specifier: 4.21.0 320 320 version: 4.21.0 ··· 330 330 devDependencies: 331 331 '@angular-devkit/build-angular': 332 332 specifier: 21.1.2 333 - version: 21.1.2(129da5684e08fd963efba6e9daef71a1) 333 + version: 21.1.2(9456c3299e43cf6655d5e06be0ffbd07) 334 334 '@angular/cli': 335 335 specifier: 21.1.2 336 336 version: 21.1.2(@types/node@22.10.5)(chokidar@5.0.0)(hono@4.11.8) ··· 970 970 devDependencies: 971 971 '@angular-devkit/build-angular': 972 972 specifier: 21.1.2 973 - version: 21.1.2(129da5684e08fd963efba6e9daef71a1) 973 + version: 21.1.2(9456c3299e43cf6655d5e06be0ffbd07) 974 974 '@angular/cli': 975 975 specifier: 21.1.2 976 976 version: 21.1.2(@types/node@22.10.5)(chokidar@5.0.0)(hono@4.11.8) ··· 1437 1437 devDependencies: 1438 1438 '@angular-devkit/build-angular': 1439 1439 specifier: 21.1.2 1440 - version: 21.1.2(f7688569dc2a14cf255aba984f4f5151) 1440 + version: 21.1.2(140ccdf6de7ee30f07e7d3f5eb4bbd3b) 1441 1441 '@angular/animations': 1442 1442 specifier: 21.1.2 1443 1443 version: 21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)) ··· 1963 1963 1964 1964 '@angular/ssr@21.0.0': 1965 1965 resolution: {integrity: sha512-lzMzMdsAGy5OB7JsOfKK+SZQdxeOAWDg8sC/XcTUzY/BJu31Lz9kO2nuKmqcgr/aPOrD7Sc0F31u/NxGjeCdTw==} 1966 + peerDependencies: 1967 + '@angular/common': ^21.0.0 1968 + '@angular/core': ^21.0.0 1969 + '@angular/platform-server': ^21.0.0 1970 + '@angular/router': ^21.0.0 1971 + peerDependenciesMeta: 1972 + '@angular/platform-server': 1973 + optional: true 1974 + 1975 + '@angular/ssr@21.1.2': 1976 + resolution: {integrity: sha512-bmLnCbXh/Q7o9O/LiXHvtPZ3PvAW14RlpAPAs1NKXpTRcIkUaTI38a85ev4Z3+0ZkrFA8ieqAZmvcwl/Lcnbeg==} 1966 1977 peerDependencies: 1967 1978 '@angular/common': ^21.0.0 1968 1979 '@angular/core': ^21.0.0 ··· 14564 14575 dependencies: 14565 14576 '@ampproject/remapping': 2.3.0 14566 14577 '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) 14567 - '@angular-devkit/build-webpack': 0.2101.2(chokidar@5.0.0)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1))(webpack@5.104.1(esbuild@0.27.2)) 14578 + '@angular-devkit/build-webpack': 0.2101.2(chokidar@5.0.0)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)))(webpack@5.104.1(esbuild@0.27.2)) 14568 14579 '@angular-devkit/core': 21.1.2(chokidar@5.0.0) 14569 14580 '@angular/build': 21.1.2(5dcc4bcefefb5c4d2e3ed407a95c36ba) 14570 14581 '@angular/compiler-cli': 21.1.2(@angular/compiler@21.1.2)(typescript@5.9.3) ··· 14614 14625 tslib: 2.8.1 14615 14626 typescript: 5.9.3 14616 14627 webpack: 5.104.1(esbuild@0.27.2) 14617 - webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.104.1) 14618 - webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.104.1) 14628 + webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)) 14629 + webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)) 14619 14630 webpack-merge: 6.0.1 14620 14631 webpack-subresource-integrity: 5.1.0(webpack@5.104.1(esbuild@0.27.2)) 14621 14632 optionalDependencies: ··· 14649 14660 - webpack-cli 14650 14661 - yaml 14651 14662 14652 - '@angular-devkit/build-angular@21.1.2(f7688569dc2a14cf255aba984f4f5151)': 14663 + '@angular-devkit/build-angular@21.1.2(140ccdf6de7ee30f07e7d3f5eb4bbd3b)': 14653 14664 dependencies: 14654 14665 '@ampproject/remapping': 2.3.0 14655 14666 '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) 14656 - '@angular-devkit/build-webpack': 0.2101.2(chokidar@5.0.0)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1))(webpack@5.104.1(esbuild@0.27.2)) 14667 + '@angular-devkit/build-webpack': 0.2101.2(chokidar@5.0.0)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)))(webpack@5.104.1(esbuild@0.27.2)) 14657 14668 '@angular-devkit/core': 21.1.2(chokidar@5.0.0) 14658 - '@angular/build': 21.1.2(1e29bf2f543e8979b3bf8a2ca9ff9fef) 14669 + '@angular/build': 21.1.2(512ebf0959ea9f9d18579d5979fe6699) 14659 14670 '@angular/compiler-cli': 21.1.2(@angular/compiler@21.1.2)(typescript@5.9.3) 14660 14671 '@babel/core': 7.28.5 14661 14672 '@babel/generator': 7.28.5 ··· 14703 14714 tslib: 2.8.1 14704 14715 typescript: 5.9.3 14705 14716 webpack: 5.104.1(esbuild@0.27.2) 14706 - webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.104.1) 14707 - webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.104.1) 14717 + webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)) 14718 + webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)) 14708 14719 webpack-merge: 6.0.1 14709 14720 webpack-subresource-integrity: 5.1.0(webpack@5.104.1(esbuild@0.27.2)) 14710 14721 optionalDependencies: 14711 14722 '@angular/core': 21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0) 14712 14723 '@angular/platform-browser': 21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)) 14713 14724 '@angular/platform-server': 21.1.2(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/compiler@21.1.2)(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(@angular/platform-browser@21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)))(rxjs@7.8.2) 14725 + '@angular/ssr': 21.1.2(56aadac166d50e28eec4a225e30d08e3) 14714 14726 esbuild: 0.27.2 14715 14727 karma: 6.4.4 14716 14728 tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.9.3)) ··· 14737 14749 - webpack-cli 14738 14750 - yaml 14739 14751 14740 - '@angular-devkit/build-webpack@0.2101.2(chokidar@5.0.0)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1))(webpack@5.104.1(esbuild@0.27.2))': 14752 + '@angular-devkit/build-angular@21.1.2(9456c3299e43cf6655d5e06be0ffbd07)': 14753 + dependencies: 14754 + '@ampproject/remapping': 2.3.0 14755 + '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) 14756 + '@angular-devkit/build-webpack': 0.2101.2(chokidar@5.0.0)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)))(webpack@5.104.1(esbuild@0.27.2)) 14757 + '@angular-devkit/core': 21.1.2(chokidar@5.0.0) 14758 + '@angular/build': 21.1.2(7c9dd9a7b919956e3ec755bd16a9fb30) 14759 + '@angular/compiler-cli': 21.1.2(@angular/compiler@21.1.2)(typescript@5.9.3) 14760 + '@babel/core': 7.28.5 14761 + '@babel/generator': 7.28.5 14762 + '@babel/helper-annotate-as-pure': 7.27.3 14763 + '@babel/helper-split-export-declaration': 7.24.7 14764 + '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.5) 14765 + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.5) 14766 + '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5) 14767 + '@babel/preset-env': 7.28.5(@babel/core@7.28.5) 14768 + '@babel/runtime': 7.28.4 14769 + '@discoveryjs/json-ext': 0.6.3 14770 + '@ngtools/webpack': 21.1.2(@angular/compiler-cli@21.1.2(@angular/compiler@21.1.2)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.104.1(esbuild@0.27.2)) 14771 + ansi-colors: 4.1.3 14772 + autoprefixer: 10.4.23(postcss@8.5.6) 14773 + babel-loader: 10.0.0(@babel/core@7.28.5)(webpack@5.104.1(esbuild@0.27.2)) 14774 + browserslist: 4.28.1 14775 + copy-webpack-plugin: 13.0.1(webpack@5.104.1(esbuild@0.27.2)) 14776 + css-loader: 7.1.2(webpack@5.104.1(esbuild@0.27.2)) 14777 + esbuild-wasm: 0.27.2 14778 + http-proxy-middleware: 3.0.5 14779 + istanbul-lib-instrument: 6.0.3 14780 + jsonc-parser: 3.3.1 14781 + karma-source-map-support: 1.4.0 14782 + less: 4.4.2 14783 + less-loader: 12.3.0(less@4.4.2)(webpack@5.104.1(esbuild@0.27.2)) 14784 + license-webpack-plugin: 4.0.2(webpack@5.104.1(esbuild@0.27.2)) 14785 + loader-utils: 3.3.1 14786 + mini-css-extract-plugin: 2.9.4(webpack@5.104.1(esbuild@0.27.2)) 14787 + open: 11.0.0 14788 + ora: 9.0.0 14789 + picomatch: 4.0.3 14790 + piscina: 5.1.4 14791 + postcss: 8.5.6 14792 + postcss-loader: 8.2.0(postcss@8.5.6)(typescript@5.9.3)(webpack@5.104.1(esbuild@0.27.2)) 14793 + resolve-url-loader: 5.0.0 14794 + rxjs: 7.8.2 14795 + sass: 1.97.1 14796 + sass-loader: 16.0.6(sass@1.97.1)(webpack@5.104.1(esbuild@0.27.2)) 14797 + semver: 7.7.3 14798 + source-map-loader: 5.0.0(webpack@5.104.1(esbuild@0.27.2)) 14799 + source-map-support: 0.5.21 14800 + terser: 5.44.1 14801 + tinyglobby: 0.2.15 14802 + tree-kill: 1.2.2 14803 + tslib: 2.8.1 14804 + typescript: 5.9.3 14805 + webpack: 5.104.1(esbuild@0.27.2) 14806 + webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)) 14807 + webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)) 14808 + webpack-merge: 6.0.1 14809 + webpack-subresource-integrity: 5.1.0(webpack@5.104.1(esbuild@0.27.2)) 14810 + optionalDependencies: 14811 + '@angular/core': 21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1) 14812 + '@angular/platform-browser': 21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)) 14813 + '@angular/platform-server': 21.1.2(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@21.1.2)(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) 14814 + '@angular/ssr': 21.1.2(82cf63d9d14337d0a50793f915784773) 14815 + esbuild: 0.27.2 14816 + karma: 6.4.4 14817 + tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.9.3)) 14818 + transitivePeerDependencies: 14819 + - '@angular/compiler' 14820 + - '@rspack/core' 14821 + - '@swc/core' 14822 + - '@types/node' 14823 + - bufferutil 14824 + - chokidar 14825 + - debug 14826 + - html-webpack-plugin 14827 + - jiti 14828 + - lightningcss 14829 + - node-sass 14830 + - sass-embedded 14831 + - stylus 14832 + - sugarss 14833 + - supports-color 14834 + - tsx 14835 + - uglify-js 14836 + - utf-8-validate 14837 + - vitest 14838 + - webpack-cli 14839 + - yaml 14840 + 14841 + '@angular-devkit/build-webpack@0.2101.2(chokidar@5.0.0)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)))(webpack@5.104.1(esbuild@0.27.2))': 14741 14842 dependencies: 14742 14843 '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) 14743 14844 rxjs: 7.8.2 14744 14845 webpack: 5.104.1(esbuild@0.27.2) 14745 - webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.104.1) 14846 + webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)) 14746 14847 transitivePeerDependencies: 14747 14848 - chokidar 14748 14849 ··· 14777 14878 '@angular/core': 21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0) 14778 14879 tslib: 2.8.1 14779 14880 14780 - '@angular/build@21.1.2(1e29bf2f543e8979b3bf8a2ca9ff9fef)': 14881 + '@angular/build@21.1.2(512ebf0959ea9f9d18579d5979fe6699)': 14781 14882 dependencies: 14782 14883 '@ampproject/remapping': 2.3.0 14783 14884 '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) ··· 14814 14915 '@angular/core': 21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0) 14815 14916 '@angular/platform-browser': 21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)) 14816 14917 '@angular/platform-server': 21.1.2(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/compiler@21.1.2)(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(@angular/platform-browser@21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)))(rxjs@7.8.2) 14918 + '@angular/ssr': 21.1.2(56aadac166d50e28eec4a225e30d08e3) 14817 14919 karma: 6.4.4 14818 14920 less: 4.4.2 14819 14921 lmdb: 3.4.4 ··· 14871 14973 '@angular/platform-browser': 21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)) 14872 14974 '@angular/platform-server': 21.1.2(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@21.1.2)(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) 14873 14975 '@angular/ssr': 21.0.0(82cf63d9d14337d0a50793f915784773) 14976 + karma: 6.4.4 14977 + less: 4.4.2 14978 + lmdb: 3.4.4 14979 + postcss: 8.5.6 14980 + tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.10.5)(typescript@5.9.3)) 14981 + vitest: 4.0.18(@types/node@22.10.5)(jiti@2.6.1)(jsdom@23.0.0)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 14982 + transitivePeerDependencies: 14983 + - '@types/node' 14984 + - chokidar 14985 + - jiti 14986 + - lightningcss 14987 + - sass-embedded 14988 + - stylus 14989 + - sugarss 14990 + - supports-color 14991 + - terser 14992 + - tsx 14993 + - yaml 14994 + 14995 + '@angular/build@21.1.2(7c9dd9a7b919956e3ec755bd16a9fb30)': 14996 + dependencies: 14997 + '@ampproject/remapping': 2.3.0 14998 + '@angular-devkit/architect': 0.2101.2(chokidar@5.0.0) 14999 + '@angular/compiler': 21.1.2 15000 + '@angular/compiler-cli': 21.1.2(@angular/compiler@21.1.2)(typescript@5.9.3) 15001 + '@babel/core': 7.28.5 15002 + '@babel/helper-annotate-as-pure': 7.27.3 15003 + '@babel/helper-split-export-declaration': 7.24.7 15004 + '@inquirer/confirm': 5.1.21(@types/node@22.10.5) 15005 + '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.3.0(@types/node@22.10.5)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 15006 + beasties: 0.3.5 15007 + browserslist: 4.28.1 15008 + esbuild: 0.27.2 15009 + https-proxy-agent: 7.0.6 15010 + istanbul-lib-instrument: 6.0.3 15011 + jsonc-parser: 3.3.1 15012 + listr2: 9.0.5 15013 + magic-string: 0.30.21 15014 + mrmime: 2.0.1 15015 + parse5-html-rewriting-stream: 8.0.0 15016 + picomatch: 4.0.3 15017 + piscina: 5.1.4 15018 + rolldown: 1.0.0-beta.58 15019 + sass: 1.97.1 15020 + semver: 7.7.3 15021 + source-map-support: 0.5.21 15022 + tinyglobby: 0.2.15 15023 + tslib: 2.8.1 15024 + typescript: 5.9.3 15025 + undici: 7.18.2 15026 + vite: 7.3.0(@types/node@22.10.5)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 15027 + watchpack: 2.5.0 15028 + optionalDependencies: 15029 + '@angular/core': 21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1) 15030 + '@angular/platform-browser': 21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)) 15031 + '@angular/platform-server': 21.1.2(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@21.1.2)(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) 15032 + '@angular/ssr': 21.1.2(82cf63d9d14337d0a50793f915784773) 14874 15033 karma: 6.4.4 14875 15034 less: 4.4.2 14876 15035 lmdb: 3.4.4 ··· 15073 15232 tslib: 2.8.1 15074 15233 15075 15234 '@angular/ssr@21.0.0(82cf63d9d14337d0a50793f915784773)': 15235 + dependencies: 15236 + '@angular/common': 21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) 15237 + '@angular/core': 21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1) 15238 + '@angular/router': 21.1.2(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) 15239 + tslib: 2.8.1 15240 + optionalDependencies: 15241 + '@angular/platform-server': 21.1.2(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@21.1.2)(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) 15242 + 15243 + '@angular/ssr@21.1.2(56aadac166d50e28eec4a225e30d08e3)': 15244 + dependencies: 15245 + '@angular/common': 21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2) 15246 + '@angular/core': 21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0) 15247 + '@angular/router': 21.1.2(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(@angular/platform-browser@21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)))(rxjs@7.8.2) 15248 + tslib: 2.8.1 15249 + optionalDependencies: 15250 + '@angular/platform-server': 21.1.2(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/compiler@21.1.2)(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(@angular/platform-browser@21.1.2(@angular/animations@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)))(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)))(rxjs@7.8.2) 15251 + optional: true 15252 + 15253 + '@angular/ssr@21.1.2(82cf63d9d14337d0a50793f915784773)': 15076 15254 dependencies: 15077 15255 '@angular/common': 21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) 15078 15256 '@angular/core': 21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.15.1) ··· 17884 18062 tinyglobby: 0.2.15 17885 18063 unimport: 3.14.6(rollup@4.56.0) 17886 18064 vite: 7.1.2(@types/node@22.10.5)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) 17887 - vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.56.0)(vite@7.1.2(@types/node@22.10.5)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 17888 - vite-plugin-vue-inspector: 5.3.2(vite@7.1.2(@types/node@22.10.5)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 17889 - which: 3.0.1 17890 - ws: 8.18.3 17891 - transitivePeerDependencies: 17892 - - bufferutil 17893 - - rollup 17894 - - supports-color 17895 - - utf-8-validate 17896 - - vue 17897 - 17898 - '@nuxt/devtools@1.7.0(rollup@4.56.0)(vue@3.5.25(typescript@5.9.3))': 17899 - dependencies: 17900 - '@antfu/utils': 0.7.10 17901 - '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@7.1.2(@types/node@22.10.5)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 17902 - '@nuxt/devtools-wizard': 1.7.0 17903 - '@nuxt/kit': 3.15.4(magicast@0.3.5) 17904 - '@vue/devtools-core': 7.6.8(vite@7.1.2(@types/node@22.10.5)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3)) 17905 - '@vue/devtools-kit': 7.6.8 17906 - birpc: 0.2.19 17907 - consola: 3.4.2 17908 - cronstrue: 2.59.0 17909 - destr: 2.0.5 17910 - error-stack-parser-es: 0.1.5 17911 - execa: 7.2.0 17912 - fast-npm-meta: 0.2.2 17913 - flatted: 3.3.3 17914 - get-port-please: 3.2.0 17915 - hookable: 5.5.3 17916 - image-meta: 0.2.1 17917 - is-installed-globally: 1.0.0 17918 - launch-editor: 2.11.1 17919 - local-pkg: 0.5.1 17920 - magicast: 0.3.5 17921 - nypm: 0.4.1 17922 - ohash: 1.1.6 17923 - pathe: 1.1.2 17924 - perfect-debounce: 1.0.0 17925 - pkg-types: 1.3.1 17926 - rc9: 2.1.2 17927 - scule: 1.3.0 17928 - semver: 7.7.3 17929 - simple-git: 3.28.0 17930 - sirv: 3.0.2 17931 - tinyglobby: 0.2.15 17932 - unimport: 3.14.6(rollup@4.56.0) 17933 18065 vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.56.0)(vite@7.1.2(@types/node@22.10.5)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 17934 18066 vite-plugin-vue-inspector: 5.3.2(vite@7.1.2(@types/node@22.10.5)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 17935 18067 which: 3.0.1 ··· 25737 25869 nuxt@3.14.1592(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@22.10.5)(db0@0.3.2)(encoding@0.1.13)(eslint@9.39.1(jiti@2.6.1))(ioredis@5.7.0)(less@4.4.2)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.57)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(typescript@5.9.3): 25738 25870 dependencies: 25739 25871 '@nuxt/devalue': 2.0.2 25740 - '@nuxt/devtools': 1.7.0(rollup@4.56.0)(vue@3.5.25(typescript@5.9.3)) 25872 + '@nuxt/devtools': 1.7.0(rollup@4.56.0)(vite@7.1.2(@types/node@22.10.5)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.25(typescript@5.9.3)) 25741 25873 '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.56.0) 25742 25874 '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.56.0) 25743 25875 '@nuxt/telemetry': 2.6.6(magicast@0.3.5) ··· 29708 29840 29709 29841 webidl-conversions@7.0.0: {} 29710 29842 29711 - webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.104.1): 29843 + webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)): 29712 29844 dependencies: 29713 29845 colorette: 2.0.20 29714 29846 memfs: 4.56.10(tslib@2.8.1) ··· 29721 29853 transitivePeerDependencies: 29722 29854 - tslib 29723 29855 29724 - webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1): 29856 + webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)): 29725 29857 dependencies: 29726 29858 '@types/bonjour': 3.5.13 29727 29859 '@types/connect-history-api-fallback': 1.5.4 ··· 29749 29881 serve-index: 1.9.1 29750 29882 sockjs: 0.3.24 29751 29883 spdy: 4.0.2 29752 - webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.104.1) 29884 + webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.104.1(esbuild@0.27.2)) 29753 29885 ws: 8.18.3 29754 29886 optionalDependencies: 29755 29887 webpack: 5.104.1(esbuild@0.27.2)