Skip to content

Commit fd88b3b

Browse files
committed
chore(deps): update dependencies to latest
1 parent 63eab97 commit fd88b3b

7 files changed

Lines changed: 3572 additions & 5171 deletions

File tree

package-lock.json

Lines changed: 1486 additions & 3242 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rollup-license-plugin",
33
"version": "3.0.2",
44
"type": "module",
5-
"packageManager": "npm@10.8.1",
5+
"packageManager": "npm@11.6.2",
66
"description": "Extracts OSS license information of the npm packages in your rollup or vite output",
77
"keywords": [
88
"rollup",
@@ -45,21 +45,21 @@
4545
"dependencies": {
4646
"get-npm-tarball-url": "^2.1.0",
4747
"node-fetch": "^3.3.2",
48-
"semver": "^7.7.2",
48+
"semver": "^7.7.3",
4949
"spdx-expression-validate": "^2.0.0"
5050
},
5151
"devDependencies": {
52-
"@types/node": "^22.9.0",
53-
"@types/semver": "^7.7.0",
54-
"@vitest/coverage-v8": "^3.0.7",
55-
"lint-staged": "^15.2.10",
56-
"prettier": "^3.3.3",
57-
"rollup": "^4.24.4",
58-
"tsup": "^8.3.5",
59-
"typescript": "^5.6.3",
60-
"vite": "^6.2.0",
61-
"vite-tsconfig-paths": "^5.1.0",
62-
"vitest": "^3.0.7"
52+
"@types/node": "^24.10.1",
53+
"@types/semver": "^7.7.1",
54+
"@vitest/coverage-v8": "^4.0.8",
55+
"lint-staged": "^16.2.6",
56+
"prettier": "^3.6.2",
57+
"rollup": "^4.53.2",
58+
"tsup": "^8.5.1",
59+
"typescript": "^5.9.3",
60+
"vite": "^7.2.2",
61+
"vite-tsconfig-paths": "^5.1.4",
62+
"vitest": "^4.0.8"
6363
},
6464
"lint-staged": {
6565
"*.{ts}": [

src/utils.test.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { describe, expect, test } from 'vitest'
1+
import { describe, expect, it } from 'vitest'
22
import { getLicense } from './utils'
33

44
describe('getLicense', function () {
5-
test('works with string-type license field', function () {
5+
it('works with string-type license field', function () {
66
expect(
77
getLicense('[email protected]', {
88
name: 'foo',
@@ -12,7 +12,7 @@ describe('getLicense', function () {
1212
).toBe('MIT')
1313
})
1414

15-
test('works with deprecated object-type license field', function () {
15+
it('works with deprecated object-type license field', function () {
1616
expect(
1717
getLicense('[email protected]', {
1818
name: 'foo',
@@ -25,7 +25,7 @@ describe('getLicense', function () {
2525
).toBe('MIT')
2626
})
2727

28-
test('works with deprecated licenses field', function () {
28+
it('works with deprecated licenses field', function () {
2929
expect(
3030
getLicense('[email protected]', {
3131
name: 'foo',
@@ -44,7 +44,7 @@ describe('getLicense', function () {
4444
).toBe('MIT')
4545
})
4646

47-
test('works with incorrect string-type licenses field', function () {
47+
it('works with incorrect string-type licenses field', function () {
4848
expect(
4949
getLicense('[email protected]', {
5050
name: 'foo',
@@ -54,7 +54,7 @@ describe('getLicense', function () {
5454
).toBe('MIT')
5555
})
5656

57-
test('throws if license is missing', function () {
57+
it('throws if license is missing', function () {
5858
expect(() =>
5959
getLicense('[email protected]', {
6060
name: 'foo',
@@ -63,7 +63,7 @@ describe('getLicense', function () {
6363
).toThrow(new Error('Could not find license info for [email protected]'))
6464
})
6565

66-
test('throws if license is invalid', function () {
66+
it('throws if license is invalid', function () {
6767
expect(() =>
6868
getLicense('[email protected]', {
6969
name: 'foo',
@@ -77,7 +77,7 @@ describe('getLicense', function () {
7777
)
7878
})
7979

80-
test('throws if license is unacceptable', function () {
80+
it('throws if license is unacceptable', function () {
8181
expect(() =>
8282
getLicense(
8383
@@ -93,7 +93,7 @@ describe('getLicense', function () {
9393
).toThrow(new Error('Found unacceptable license "MIT" for [email protected]'))
9494
})
9595

96-
test('allows overriding license values using exact version numbers', function () {
96+
it('allows overriding license values using exact version numbers', function () {
9797
expect(
9898
getLicense(
9999
@@ -112,7 +112,7 @@ describe('getLicense', function () {
112112
).toBe('Apache-2.0')
113113
})
114114

115-
test('allows overriding license values for scoped packages', function () {
115+
it('allows overriding license values for scoped packages', function () {
116116
expect(
117117
getLicense(
118118
@@ -131,7 +131,7 @@ describe('getLicense', function () {
131131
).toBe('Apache-2.0')
132132
})
133133

134-
test('allows overriding license values using version ranges', function () {
134+
it('allows overriding license values using version ranges', function () {
135135
expect(
136136
getLicense(
137137
@@ -150,7 +150,7 @@ describe('getLicense', function () {
150150
).toBe('Apache-2.0')
151151
})
152152

153-
test('allows overriding license values without specifying versions', function () {
153+
it('allows overriding license values without specifying versions', function () {
154154
expect(
155155
getLicense(
156156

0 commit comments

Comments
 (0)