Skip to content

Commit 02a264e

Browse files
authoredApr 10, 2024··
fix(no-unsupported-features): stream/promises is stable (#235)
fix: `stream/promises` is stable closes #234
1 parent ae5329c commit 02a264e

File tree

1 file changed

+2
-8
lines changed
  • lib/unsupported-features/node-builtins-modules

1 file changed

+2
-8
lines changed
 

‎lib/unsupported-features/node-builtins-modules/stream.js

+2-8
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,8 @@ module.exports = {
102102
...Stream,
103103
},
104104

105-
"stream/promises": {
106-
[READ]: { experimental: ["15.0.0"] },
107-
...StreamPromise,
108-
},
109-
"node:stream/promises": {
110-
[READ]: { experimental: ["15.0.0"] },
111-
...StreamPromise,
112-
},
105+
"stream/promises": StreamPromise,
106+
"node:stream/promises": StreamPromise,
113107

114108
"stream/web": {
115109
[READ]: { experimental: ["16.5.0"], supported: ["21.0.0"] },

0 commit comments

Comments
 (0)
Please sign in to comment.