Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Replace "require-like" by createRequire? #33

@slorber

Description

@slorber

require-like uses Module._load, an API that is not supported by Bun (atm): oven-sh/bun#5925

This led to bugs in Docusaurus Bun support:
oven-sh/bun#3426 (comment)

This can be prevented by using this Node API instead of the very old require-like code:

const module = require("module");

const sandbox = {
  require: module.createRequire(_filename);
}

This seems to be the "modern" way to achieve the same behavior, using a built-in API, and would get rid of a useless dependency.
(and this would permit to use this lib in Bun, until they support the older Module apis)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions