Skip to content

Commit 15887c5

Browse files
committed
fix: widen peer dep + move others to optional
1 parent 520b59a commit 15887c5

3 files changed

Lines changed: 212 additions & 20 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ npm install --save-dev rollup-plugin-atomic
1111
You should also install the peer dependencies:
1212

1313
```
14-
"rollup": "2.21.0",
14+
"rollup": "^2"
1515
```
1616

1717
and the following (only those that you use are needed):
1818

1919
```
20-
"typescript": "^3.9.6",
21-
"coffeescript": "^1.12.7",
22-
"@babel/core": "^7.10.5",
20+
"typescript": "^4",
21+
"coffeescript": "^1",
22+
"@babel/core": "^7"
2323
```
2424

2525
## Usage

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,12 @@
3838
"rollup-plugin-visualizer": "^4.1.1"
3939
},
4040
"peerDependencies": {
41-
"rollup": "2.31.0",
42-
"typescript": "^4.0.3",
43-
"coffeescript": "^1.12.7",
44-
"@babel/core": "^7.12.1"
41+
"rollup": "^2"
42+
},
43+
"optionalDependencies": {
44+
"typescript": "^4",
45+
"coffeescript": "^1",
46+
"@babel/core": "^7"
4547
},
4648
"devDependencies": {
4749
"typescript": "^4.0.3",

0 commit comments

Comments
 (0)