parse5 icon indicating copy to clipboard operation
parse5 copied to clipboard

since facing "ENOENT: no such file or directory, open 'node:stream'" issue

Open nehaAgarwalext opened this issue 1 year ago • 6 comments

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch [email protected] for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/parse5-parser-stream/dist/cjs/index.js b/node_modules/parse5-parser-stream/dist/cjs/index.js
index a5002be..4e9a5fd 100644
--- a/node_modules/parse5-parser-stream/dist/cjs/index.js
+++ b/node_modules/parse5-parser-stream/dist/cjs/index.js
@@ -1,7 +1,7 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
 exports.ParserStream = void 0;
-const node_stream_1 = require("node:stream");
+const { Readable } = require('stream');
 const parse5_1 = require("parse5");
 /* eslint-disable unicorn/consistent-function-scoping -- The rule seems to be broken here. */
 /**

This issue body was partially generated by patch-package.

nehaAgarwalext avatar Sep 12 '24 09:09 nehaAgarwalext