File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 18
18
"lint:eslint" : " eslint ." ,
19
19
"lint:fix" : " pnpm run '/^(lint:biome|lint:eslint):fix$/'" ,
20
20
"lint:eslint:fix" : " eslint . --fix" ,
21
- "lint:biome:fix" : " biome check . --apply " ,
21
+ "lint:biome:fix" : " biome check . --write " ,
22
22
"prepare" : " npm run build" ,
23
23
"build" : " tsc" ,
24
24
"build:docs" : " typedoc" ,
Original file line number Diff line number Diff line change 1
- import { NormalizedTorrent , TorrentState } from '@ctrl/shared-torrent' ;
1
+ import { type NormalizedTorrent , TorrentState } from '@ctrl/shared-torrent' ;
2
2
3
- import { Torrent } from './types.js' ;
3
+ import type { Torrent } from './types.js' ;
4
4
5
5
export function normalizeTorrentData ( id : string , torrent : Torrent ) : NormalizedTorrent {
6
6
const dateAdded = new Date ( torrent . time_added * 1000 ) . toISOString ( ) ;
You can’t perform that action at this time.
0 commit comments