Skip to content

Commit

Permalink
build: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
OpportunityLiu committed Dec 16, 2024
1 parent 02201e6 commit 9d1c757
Show file tree
Hide file tree
Showing 11 changed files with 1,210 additions and 1,079 deletions.
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,21 +61,21 @@
"tslib": "~2.8.1"
},
"devDependencies": {
"@angular/animations": "^18.2.13",
"@angular/build": "^18.2.12",
"@angular/animations": "^19.0.4",
"@angular/build": "^19.0.5",
"@angular/cdk": "^16.2.14",
"@angular/cli": "^18.2.12",
"@angular/common": "^18.2.13",
"@angular/compiler": "^18.2.13",
"@angular/compiler-cli": "^18.2.13",
"@angular/core": "^18.2.13",
"@angular/forms": "^18.2.13",
"@angular/language-service": "^18.2.13",
"@angular/cli": "^19.0.5",
"@angular/common": "^19.0.4",
"@angular/compiler": "^19.0.4",
"@angular/compiler-cli": "^19.0.4",
"@angular/core": "^19.0.4",
"@angular/forms": "^19.0.4",
"@angular/language-service": "^19.0.4",
"@angular/material": "^16.2.14",
"@angular/platform-browser": "^18.2.13",
"@angular/platform-browser-dynamic": "^18.2.13",
"@angular/router": "^18.2.13",
"@angular/service-worker": "^18.2.13",
"@angular/platform-browser": "^19.0.4",
"@angular/platform-browser-dynamic": "^19.0.4",
"@angular/router": "^19.0.4",
"@angular/service-worker": "^19.0.4",
"@commander-js/extra-typings": "^12.1.0",
"@nestjs/cli": "~10.4.9",
"@nestjs/schematics": "~10.2.3",
Expand All @@ -100,8 +100,8 @@
"supertest": "~7.0.0",
"ts-jest": "~29.2.5",
"type-fest": "~4.30.1",
"typescript": "~5.7.2",
"typescript": "~5.6.3",
"typescript-eslint": "~8.18.0",
"zone.js": "~0.14.10"
"zone.js": "~0.15.0"
}
}
2,248 changes: 1,184 additions & 1,064 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/browser/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { DbRepoService } from '#browser/services/db-repo.service';
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent implements OnInit {
constructor(
Expand Down
1 change: 1 addition & 0 deletions src/browser/app/editor-deny/editor-deny.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ import { Component } from '@angular/core';
templateUrl: './editor-deny.component.html',
styleUrls: ['./editor-deny.component.scss'],
animations: [],
standalone: false
})
export class EditorDenyComponent {}
1 change: 1 addition & 0 deletions src/browser/app/editor/editor.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ function isEditableNs(control: AbstractControl): ValidationErrors | null {
transition('* => *', [animate('0.3s ease-in-out')]),
]),
],
standalone: false
})
export class EditorComponent implements OnInit {
constructor(
Expand Down
1 change: 1 addition & 0 deletions src/browser/app/github-corner/github-corner.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Component, Input } from '@angular/core';
selector: 'app-github-corner',
templateUrl: './github-corner.component.html',
styleUrls: ['./github-corner.component.scss'],
standalone: false
})
export class GithubCornerComponent {
@Input() href!: string;
Expand Down
1 change: 1 addition & 0 deletions src/browser/app/list/list.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ type ShowImgType = 'all' | 'no-r18' | 'no-r18g' | 'none';
selector: 'app-list',
templateUrl: './list.component.html',
styleUrls: ['./list.component.scss'],
standalone: false
})
export class ListComponent implements OnInit {
constructor(
Expand Down
1 change: 1 addition & 0 deletions src/browser/app/shared/pipe/mark.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export function regexFromSearch(search?: string | null): NoSearchTerm | SearchTe
@Pipe({
name: 'mark',
pure: true,
standalone: false
})
export class MarkPipe implements PipeTransform {
constructor(
Expand Down
1 change: 1 addition & 0 deletions src/browser/app/shared/pipe/markdown.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Pipe, type PipeTransform } from '@angular/core';
@Pipe({
name: 'markdown',
pure: true,
standalone: false
})
export class MarkdownPipe implements PipeTransform {
transform(value: string | null): string {
Expand Down
1 change: 1 addition & 0 deletions src/browser/app/user/user.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { finalize } from 'rxjs/operators';
selector: 'app-user',
templateUrl: './user.component.html',
styleUrls: ['./user.component.scss'],
standalone: false
})
export class UserComponent implements OnInit {
constructor(
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"compilerOptions": {
"esModuleInterop": true
},
"files": [],
"references": [
{ "path": "./src/browser/tsconfig.json" },
Expand Down

0 comments on commit 9d1c757

Please sign in to comment.