Skip to content

Commit a6bc06e

Browse files
committed
chore(deps): migrate lodash-es to es-toolkit
1 parent de5f978 commit a6bc06e

File tree

5 files changed

+47
-60
lines changed

5 files changed

+47
-60
lines changed

package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,21 @@
4444
"debug": "^4.4.0",
4545
"delay": "^6.0.0",
4646
"dl-vampire": "^2.1.3",
47+
"es-toolkit": "^1.34.1",
4748
"filenamify": "^6.0.0",
4849
"fs-extra": "^11.3.0",
4950
"got": "14",
5051
"humanize-duration": "^3.32.1",
5152
"ink": "^5.2.0",
5253
"ink-spinner": "^5.0.0",
53-
"lodash-es": "^4.17.21",
5454
"log-symbols": "^7.0.0",
5555
"moment": "^2.30.1",
5656
"ms": "^2.1.3",
5757
"picocolors": "^1.1.1",
5858
"promise.map": "^1.1.2",
5959
"promise.retry": "^2.1.0",
6060
"rc": "^1.2.8",
61-
"react": "^19.1.0",
61+
"react": "^18.3.1",
6262
"update-notifier": "^7.3.1",
6363
"valtio": "^2.1.4",
6464
"yargs": "^17.7.2",
@@ -71,11 +71,10 @@
7171
"@types/debug": "^4.1.12",
7272
"@types/fs-extra": "^11.0.4",
7373
"@types/humanize-duration": "^3.27.4",
74-
"@types/lodash-es": "^4.17.12",
7574
"@types/ms": "^2.1.0",
7675
"@types/node": "^22.13.15",
7776
"@types/rc": "^1.2.4",
78-
"@types/react": "^19.0.12",
77+
"@types/react": "^18.3.20",
7978
"@types/update-notifier": "^6.0.8",
8079
"@types/yargs": "17.0.33",
8180
"@vitest/coverage-v8": "^3.1.1",

pnpm-lock.yaml

+36-48
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/adapter/base.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { songUrl } from '$api'
22
import { Song, SongPlayUrlInfo } from '$define'
33
import { getId } from '$util'
4-
import { assert } from 'console'
5-
import { get, trimStart } from 'lodash-es'
4+
import { invariant } from 'es-toolkit'
5+
import { get, trimStart } from 'es-toolkit/compat'
66
import { extname } from 'path'
77

88
const NOT_IMPLEMENTED = 'not NOT_IMPLEMENTED'
@@ -13,7 +13,7 @@ export class BaseAdapter {
1313
constructor(url: string) {
1414
this.url = url
1515
const id = getId(url)
16-
assert(id, 'id is empty')
16+
invariant(id, 'id cannot be empty')
1717
this.id = id!
1818
}
1919

src/api/index.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { baseDebug } from '$common'
33
import { Album, DjradioProgram, Playlist, SongData, SongPlayUrlInfo } from '$define'
44
import Api from 'NeteaseCloudMusicApi'
55
import delay from 'delay'
6-
import { chunk } from 'lodash-es'
6+
import { chunk } from 'es-toolkit'
77
import pmap from 'promise.map'
88

99
const debug = baseDebug.extend('api:index')
@@ -102,7 +102,7 @@ export async function songDetail(ids: Id[]) {
102102
(chunk) => {
103103
return singleRequest(chunk.join(','))
104104
},
105-
BATCH_ID_CONCURRENCY
105+
BATCH_ID_CONCURRENCY,
106106
)
107107

108108
return songDatasArray.flat()
@@ -123,7 +123,7 @@ export async function songUrl(ids: Id[], quality?: string | number) {
123123
const infosArr = await pmap(
124124
chunks,
125125
(chunk) => singleRequest(chunk.join(',')),
126-
BATCH_ID_CONCURRENCY
126+
BATCH_ID_CONCURRENCY,
127127
)
128128
return infosArr.flat()
129129
}
@@ -152,7 +152,7 @@ export async function djradioPrograms(id: Id) {
152152
do {
153153
const res = await handleRequestLimit(
154154
Api.dj_program,
155-
`dj_program(${pagenum})`
155+
`dj_program(${pagenum})`,
156156
)({
157157
...getApiBaseConfig(),
158158
rid: id,

src/download/progress/ink.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { DownloadSongOptions } from '$index'
22
import { dl } from 'dl-vampire'
33
import { Instance, Static, Text, render } from 'ink'
44
import Spinner from 'ink-spinner'
5-
import { once } from 'lodash-es'
5+
import { once } from 'es-toolkit'
66
import logSymbols from 'log-symbols'
77
import { useEffect, useState } from 'react'
88
import { proxy, useSnapshot } from 'valtio'

0 commit comments

Comments
 (0)