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

Options are not working correctly #18

Open
mariobm opened this issue Jan 12, 2021 · 0 comments
Open

Options are not working correctly #18

mariobm opened this issue Jan 12, 2021 · 0 comments

Comments

@mariobm
Copy link

mariobm commented Jan 12, 2021

let options = {}
for (let i = 0; i < config.transform.length; i++) {
options = config.transform[i][2]
}

What is the point of this code? If you have multiple transforms, it only considers the last one.
I had problems with other plugin for this reason.
I have 3 transforms:

transform:
      {
        '^.+\\.(js|jsx|mjs|cjs|ts|tsx)$': 'node_modules\\react-scripts\\config\\jest\\babelTransform.js',
        '^.+\\.css$': 'node_modules\\react-scripts\\config\\jest\\cssTransform.js',
        '^(?!.*\\.(js|jsx|mjs|cjs|ts|tsx|css|json)$)': 'node_modules\\react-scripts\\config\\jest\\fileTransform.js'
      }

I changed the first one to esbuild-jest. On ".jsx" extension runs perfectly but when i switch to ".js" it throws error.
That's why I added loaders option to it. But i couldn't see the difference because only first one had loaders others
didn't and i ended up with empty object returned from getOptions.

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

No branches or pull requests

1 participant