Skip to content

Commit ee138d1

Browse files
chore(deps): lock file maintenance minor/patch updates (#5684)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 2d59dbc commit ee138d1

File tree

8 files changed

+377
-376
lines changed

8 files changed

+377
-376
lines changed

LICENSE.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ Repository: jorgebucaran/colorette
208208
## date-time
209209
License: MIT
210210
By: Sindre Sorhus
211-
Repository: git+https://github.com/sindresorhus/date-time.git
211+
Repository: sindresorhus/date-time
212212

213213
> MIT License
214214
>
@@ -271,7 +271,7 @@ Repository: lukeed/flru
271271
## glob-parent
272272
License: ISC
273273
By: Gulp Team, Elan Shanker, Blaine Bublitz
274-
Repository: git+https://github.com/gulpjs/glob-parent.git
274+
Repository: gulpjs/glob-parent
275275

276276
> The ISC License
277277
>
@@ -294,7 +294,7 @@ Repository: git+https://github.com/gulpjs/glob-parent.git
294294
## is-binary-path
295295
License: MIT
296296
By: Sindre Sorhus
297-
Repository: git+https://github.com/sindresorhus/is-binary-path.git
297+
Repository: sindresorhus/is-binary-path
298298

299299
> MIT License
300300
>
@@ -311,7 +311,7 @@ Repository: git+https://github.com/sindresorhus/is-binary-path.git
311311
## is-extglob
312312
License: MIT
313313
By: Jon Schlinkert
314-
Repository: git+https://github.com/jonschlinkert/is-extglob.git
314+
Repository: jonschlinkert/is-extglob
315315

316316
> The MIT License (MIT)
317317
>
@@ -340,7 +340,7 @@ Repository: git+https://github.com/jonschlinkert/is-extglob.git
340340
## is-glob
341341
License: MIT
342342
By: Jon Schlinkert, Brian Woodward, Daniel Perez
343-
Repository: git+https://github.com/micromatch/is-glob.git
343+
Repository: micromatch/is-glob
344344

345345
> The MIT License (MIT)
346346
>
@@ -369,7 +369,7 @@ Repository: git+https://github.com/micromatch/is-glob.git
369369
## is-number
370370
License: MIT
371371
By: Jon Schlinkert, Olsten Larck, Rouven Weßling
372-
Repository: git+https://github.com/jonschlinkert/is-number.git
372+
Repository: jonschlinkert/is-number
373373

374374
> The MIT License (MIT)
375375
>
@@ -427,7 +427,7 @@ Repository: https://github.com/rich-harris/magic-string
427427
## normalize-path
428428
License: MIT
429429
By: Jon Schlinkert, Blaine Bublitz
430-
Repository: git+https://github.com/jonschlinkert/normalize-path.git
430+
Repository: jonschlinkert/normalize-path
431431

432432
> The MIT License (MIT)
433433
>
@@ -589,7 +589,7 @@ Repository: https://github.com/tapjs/signal-exit.git
589589
## time-zone
590590
License: MIT
591591
By: Sindre Sorhus
592-
Repository: git+https://github.com/sindresorhus/time-zone.git
592+
Repository: sindresorhus/time-zone
593593

594594
> MIT License
595595
>
@@ -606,7 +606,7 @@ Repository: git+https://github.com/sindresorhus/time-zone.git
606606
## to-regex-range
607607
License: MIT
608608
By: Jon Schlinkert, Rouven Weßling
609-
Repository: git+https://github.com/micromatch/to-regex-range.git
609+
Repository: micromatch/to-regex-range
610610

611611
> The MIT License (MIT)
612612
>

browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"homepage": "https://rollupjs.org/",
2222
"dependencies": {
23-
"@types/estree": "1.0.5"
23+
"@types/estree": "1.0.6"
2424
},
2525
"files": [
2626
"dist/**/*.wasm",

cli/run/batchWarnings.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ export default function batchWarnings(command: Record<string, any>): BatchWarnin
3232
warningOccurred = true;
3333

3434
if (silent) return;
35-
if (warning.code! in deferredHandlers) {
36-
getOrCreate(deferredWarnings, warning.code!, getNewArray).push(warning);
37-
} else if (warning.code! in immediateHandlers) {
35+
if ((warning.code as string) in deferredHandlers) {
36+
getOrCreate(deferredWarnings, warning.code, getNewArray).push(warning);
37+
} else if ((warning.code as string) in immediateHandlers) {
3838
immediateHandlers[warning.code!](warning);
3939
} else {
4040
title(warning.message);

0 commit comments

Comments
 (0)