Skip to content

Commit 16b5c6d

Browse files
committed
chore: upgrade to rollup ^3.0.0
1 parent aec0c3e commit 16b5c6d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.babelrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"@babel/preset-env", {
55
"modules": "commonjs",
66
"targets": {
7-
"node": "10"
7+
"node": "14"
88
}
99
}
1010
]
@@ -21,7 +21,7 @@
2121
"@babel/preset-env", {
2222
"modules": false,
2323
"targets": {
24-
"node": "10"
24+
"node": "14"
2525
}
2626
}
2727
]

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ windows-latest, ubuntu-latest, macos-latest ]
33-
node: [ 10, 11, 12, 13, 14, 15, 16, 17, 18 ]
33+
node: [ 14, 16, 17, 18 ]
3434
steps:
3535
- uses: actions/checkout@v1
3636
- uses: actions/[email protected]

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rollup-plugin-license",
3-
"version": "2.9.0",
3+
"version": "2.8.2",
44
"description": "Rollup plugin to add license banner to the final bundle and output third party licenses",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -33,7 +33,7 @@
3333
"url": "https://github.com/mjeanroy/rollup-plugin-license"
3434
},
3535
"peerDependencies": {
36-
"rollup": "^1.0.0 || ^2.0.0"
36+
"rollup": "^1.0.0 || ^2.0.0 || ^3.0.0"
3737
},
3838
"dependencies": {
3939
"commenting": "~1.1.0",
@@ -71,13 +71,13 @@
7171
"jasmine-core": "3.10.1",
7272
"prettier": "2.7.1",
7373
"rimraf": "3.0.2",
74-
"rollup": "2.79.1",
75-
"rollup-plugin-prettier": "2.3.0",
76-
"rollup-plugin-strip-banner": "2.1.0",
74+
"rollup": "3.2.3",
75+
"rollup-plugin-prettier": "3.0.0",
76+
"rollup-plugin-strip-banner": "3.0.0",
7777
"tmp": "0.2.1",
7878
"typescript": "4.8.4"
7979
},
8080
"engines": {
81-
"node": ">=10.0.0"
81+
"node": ">=14.0.0"
8282
}
8383
}

0 commit comments

Comments
 (0)