Skip to content

Commit

Permalink
misc: update deps (#186)
Browse files Browse the repository at this point in the history
* misc: update deps

* ci: remove 24.05
  • Loading branch information
SuperSandro2000 authored Dec 9, 2024
2 parents 68e9fad + f3f229c commit 834fe31
Show file tree
Hide file tree
Showing 7 changed files with 1,724 additions and 1,879 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flake-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target: [ "24.05", "24.11", "unstable" ]
target: [ "24.11", "unstable" ]

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 2 additions & 6 deletions nix/frontend.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{ callPackage, lib, path, stdenv, nodejs, baseHref ? "/", title ? "NuschtOS Search" }:
{ lib, stdenv, nodejs, pnpm, baseHref ? "/", title ? "NuschtOS Search" }:

let
manifest = lib.importJSON ../package.json;
pnpm = callPackage (path + "/pkgs/development/tools/pnpm/generic.nix") {
version = "9.12.3";
hash = "sha256-JCNXcsxKyCpiYnzUf4NMcmZ6LOh3mahG7E6OVV4tS4s=";
};
in
stdenv.mkDerivation (finalAttrs: {
pname = manifest.name;
Expand All @@ -25,7 +21,7 @@ stdenv.mkDerivation (finalAttrs: {

pnpmDeps = pnpm.fetchDeps {
inherit (finalAttrs) pname version src;
hash = "sha256-gSCyJ7dK63z0WYIXHvj4YXI7azp5pFOhsIXRbwdyRVU=";
hash = "sha256-iv0pNO/pIFvxoKweViX0tkXlK0EEvYs656MQdREqb6U=";
};

nativeBuildInputs = [ nodejs pnpm.configHook ];
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,35 +11,35 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.12",
"@angular/common": "^18.2.12",
"@angular/compiler": "^18.2.12",
"@angular/core": "^18.2.12",
"@angular/forms": "^18.2.12",
"@angular/platform-browser": "^18.2.12",
"@angular/platform-browser-dynamic": "^18.2.12",
"@angular/router": "^18.2.12",
"@angular/animations": "^19.0.3",
"@angular/common": "^19.0.3",
"@angular/compiler": "^19.0.3",
"@angular/core": "^19.0.3",
"@angular/forms": "^19.0.3",
"@angular/platform-browser": "^19.0.3",
"@angular/platform-browser-dynamic": "^19.0.3",
"@angular/router": "^19.0.3",
"@feel/form": "^0.0.30",
"@feel/style": "^0.0.30",
"@fontsource/dm-mono": "^5.1.0",
"@fontsource/dm-sans": "^5.1.0",
"@nuschtos/fixx": "^0.0.6",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.14.10"
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.12",
"@angular/cli": "^18.2.12",
"@angular/compiler-cli": "^18.2.12",
"@angular/language-service": "^18.2.12",
"@types/jasmine": "~5.1.4",
"@angular-devkit/build-angular": "^19.0.3",
"@angular/cli": "^19.0.3",
"@angular/compiler-cli": "^19.0.3",
"@angular/language-service": "^19.0.3",
"@types/jasmine": "~5.1.5",
"jasmine-core": "~5.5.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "~5.5.4"
"typescript": "~5.6.3"
}
}
3,530 changes: 1,691 additions & 1,839 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

11 changes: 5 additions & 6 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ import { OptionComponent } from './core/components/option/option.component';
import { TITLE } from './core/config.domain';

@Component({
selector: 'app-root',
standalone: true,
imports: [SearchComponent, OptionComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
selector: 'app-root',
imports: [SearchComponent, OptionComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class AppComponent {

Expand Down
11 changes: 5 additions & 6 deletions src/app/core/components/option/option.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ import { AsyncPipe, NgFor, NgIf } from '@angular/common';
import { SearchService } from '../../data/search.service';

@Component({
selector: 'app-option',
standalone: true,
imports: [NgIf, NgFor, AsyncPipe, RouterLink],
templateUrl: './option.component.html',
styleUrl: './option.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
selector: 'app-option',
imports: [NgIf, NgFor, AsyncPipe, RouterLink],
templateUrl: './option.component.html',
styleUrl: './option.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class OptionComponent {

Expand Down
11 changes: 5 additions & 6 deletions src/app/core/components/search/search.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@ function prefix(options: SearchedOption[]): string {
}

@Component({
selector: 'app-search',
standalone: true,
imports: [ReactiveFormsModule, TextFieldComponent, NgIf, AsyncPipe, NgFor, RouterLink, DropdownComponent],
templateUrl: './search.component.html',
styleUrl: './search.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
selector: 'app-search',
imports: [ReactiveFormsModule, TextFieldComponent, NgIf, AsyncPipe, NgFor, RouterLink, DropdownComponent],
templateUrl: './search.component.html',
styleUrl: './search.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class SearchComponent implements OnInit, AfterViewInit, OnDestroy {

Expand Down

0 comments on commit 834fe31

Please sign in to comment.