Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Script evaluation using babel-node’s ‘--eval’ doesn’t apply default config file #16675

Closed
1 task
Rinzwind opened this issue Jul 24, 2024 · 2 comments · Fixed by #16642
Closed
1 task

Comments

@Rinzwind
Copy link

💻

  • Would you like to work on a fix?

How are you using Babel?

@babel/register or @babel/node

Input code

console.log("foo");

Configuration file name

babel.config.js

Configuration

module.exports = {
  plugins: [
    [ "search-and-replace", { rules: [ { search: "foo", replace: "bar" } ] } ],
  ],
};

Current and expected behavior

Using a file ‘test.js’ with the input code given above, and a file ‘babel.config.js’ with the given configuration which uses a plugin to replace "foo" by "bar", the following has the expected result:

$ npx babel-node test.js
bar

But when using --eval to pass the input code, the result is unexpected, the config file does not seem to be applied:

$ npx babel-node --eval 'console.log("foo");'
foo

Environment

  System:
    OS: macOS 13.6.7
  Binaries:
    Node: 20.16.0 - ~/.nvm/versions/node/v20.16.0/bin/node
    npm: 10.8.1 - ~/.nvm/versions/node/v20.16.0/bin/npm
  npmPackages:
    @babel/node: ^7.24.8 => 7.24.8 
    babel-plugin-search-and-replace: ^1.1.1 => 1.1.1 

Possible solution

No response

Additional context

Issue #11877, which is about --config-file not being applied, is similar but differs in that it says that a default config file did work.

@babel-bot
Copy link
Collaborator

Hey @Rinzwind! We really appreciate you taking the time to report an issue. The collaborators on this project attempt to help as many people as possible, but we're a limited number of volunteers, so it's possible this won't be addressed swiftly.

If you need any help, or just have general Babel or JavaScript questions, we have a vibrant Slack community that typically always has someone willing to help. You can sign-up here for an invite.

@JLHwung
Copy link
Contributor

JLHwung commented Jul 24, 2024

Thank you for the report. It will be fixed in v7.25.0 by #16642.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants