Skip to content

Commit

Permalink
style: fix list files name
Browse files Browse the repository at this point in the history
  • Loading branch information
69pmb committed Jan 5, 2025
1 parent 9175720 commit 6bc7b2a
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"tsConfig": "tsconfig.app.json",
"polyfills": "src/polyfills.ts",
"allowedCommonJsDependencies": ["xml2js", "dropbox", "jszip"],
"externalDependencies": ["crypto"],
"assets": [
"src/assets",
"src/favicon.png",
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,5 @@
"*.{ts, html}": "eslint --max-warnings 0 --fix",
"*": "prettier --ignore-unknown --write",
"*.scss": "stylelint --fix"
},
"packageManager": "pnpm@9.15.2"
}
}
2 changes: 1 addition & 1 deletion src/app/list-composition/list-composition.component.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use 'list.component' as *;
@use 'list.directive' as *;

@include link('name');
@include link('artist');
2 changes: 1 addition & 1 deletion src/app/list-composition/list-composition.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
import {Utils} from '@utils/utils';
import {DataService} from '@services/data.service';
import {UtilsService} from '@services/utils.service';
import {ListDirective} from '../list/list.component';
import {ListDirective} from '../list/list.directive';
import {DexieService} from '@services/dexie.service';
import {Dropbox} from '@utils/dropbox';
import {yearsValidator} from '@utils/year.validator';
Expand Down
2 changes: 1 addition & 1 deletion src/app/list-fichier/list-fichier.component.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use 'list.component' as *;
@use 'list.directive' as *;

@include link('title');
@include link('artist');
Expand Down
2 changes: 1 addition & 1 deletion src/app/list-fichier/list-fichier.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {of, switchMap} from 'rxjs';
import {catchError, skipWhile, tap} from 'rxjs/operators';
import {MatPaginatorModule, PageEvent} from '@angular/material/paginator';

import {ListDirective} from '../list/list.component';
import {ListDirective} from '../list/list.directive';
import {
Fichier,
Composition,
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 6bc7b2a

Please sign in to comment.