diff options
author | Luca Casonato <hello@lcas.dev> | 2024-06-08 18:36:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-08 18:36:13 +0200 |
commit | c1f23c578881b85ae79b524a60160d8f4fb7151b (patch) | |
tree | c6c945fb4b42cd4ac6fae7135c7ad1039630a34e /ext/node/ops/require.rs | |
parent | 22d34f7012c48a25435b38c0c306085c614bbea7 (diff) |
fix(ext/node): lossy UTF-8 read node_modules files (#24140)
Previously various reads of files in `node_modules` would error on
invalid UTF-8. These were cases involving:
- reading package.json from Rust
- reading package.json from JS
- reading CommonJS files from JS
- reading CommonJS files from Rust (for ESM translation)
- reading ESM files from Rust
Diffstat (limited to 'ext/node/ops/require.rs')
-rw-r--r-- | ext/node/ops/require.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/ops/require.rs b/ext/node/ops/require.rs index de2687001..3e1f1c6ae 100644 --- a/ext/node/ops/require.rs +++ b/ext/node/ops/require.rs @@ -451,7 +451,7 @@ where let file_path = PathBuf::from(file_path); ensure_read_permission::<P>(state, &file_path)?; let fs = state.borrow::<FileSystemRc>(); - Ok(fs.read_text_file_sync(&file_path, None)?) + Ok(fs.read_text_file_lossy_sync(&file_path, None)?) } #[op2] |