Skip to content

Commit 85fbd70

Browse files
committed
Update rxjs
1 parent 354718b commit 85fbd70

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ try {
3535

3636
# Notes
3737

38-
- `rxjs@6` is a peer dependency for this package; it is primarily used to add types on the development stage. These type imports are removed from the JavaScript output, but are still present in `*.d.ts` files; in case if the type information is needed, `rxjs@6` should be installed manually.
38+
- `rxjs` is a peer dependency for this package; it is primarily used to add types on the development stage. These type imports are then removed from the JavaScript output, but are still present in `*.d.ts` files. In case if the type information is needed to you (for example, if your package/application is also written in TypeScript), you should install `rxjs` manually; inspect the `peerDependencies` object inside of [`observable-to-async-generator`'s `package.json` file](https://github.com/parzh/observable-to-async-generator/blob/v1.0.1-rc/package.json) to find the appropriate version of `rxjs` to install.

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@
7575
"@types/jest": "26.0.23",
7676
"@types/node": "15.6.1",
7777
"jest": "27.0.3",
78-
"rxjs": "6.6.7",
78+
"rxjs": "7.1.0",
7979
"ts-jest": "27.0.2",
8080
"ts-node": "10.0.0",
8181
"typescript": "4.3.2"
8282
},
8383
"peerDependencies": {
84-
"rxjs": "6.x.x"
84+
"rxjs": "6 || 7"
8585
}
8686
}

0 commit comments

Comments
 (0)