Skip to content

Commit 35ad5dd

Browse files
committed
chore: add support for rollup ^2.0.0
1 parent 46192ec commit 35ad5dd

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ windows-latest, ubuntu-latest ]
33-
node: [ 6, 7, 8, 9, 10, 11, 12, 13 ]
33+
node: [ 10, 11, 12, 13 ]
3434
steps:
3535
- uses: actions/checkout@v1
3636
- uses: actions/setup-node@v1

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@
2424

2525
language: node_js
2626
node_js:
27-
- "6"
28-
- "7"
29-
- "8"
30-
- "9"
3127
- "10"
3228
- "11"
3329
- "12"

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rollup-plugin-strip-banner",
3-
"version": "1.2.0",
3+
"version": "1.1.0",
44
"description": "Rollup plugin that can be used to remove banner on modules",
55
"main": "dist/index.js",
66
"scripts": {
@@ -31,7 +31,7 @@
3131
"rollup-plugin"
3232
],
3333
"peerDependencies": {
34-
"rollup": "^1.0.0"
34+
"rollup": "^1.0.0 || ^2.0.0"
3535
},
3636
"devDependencies": {
3737
"@babel/core": "7.9.0",
@@ -53,10 +53,10 @@
5353
"gulp-strip-banner": "0.0.2",
5454
"jasmine-core": "3.5.0",
5555
"rimraf": "3.0.2",
56-
"rollup": "1.32.1",
56+
"rollup": "2.1.0",
5757
"tmp": "0.1.0"
5858
},
5959
"engines": {
60-
"node": ">=6.0.0"
60+
"node": ">=10.0.0"
6161
}
6262
}

0 commit comments

Comments
 (0)