We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey there! Thanks a lot for this plugin!
I am trying to use it with an import syntax like that :
import ImportGlobPlugin from 'esbuild-plugin-import-glob'; await esbuild.build( { entryPoints: [ './main.js' ], bundle: true, outfile: './scripts.js', plugins: [ ImportGlobPlugin(), ], } );
But I get this error: TypeError: ImportGlobPlugin is not a function
TypeError: ImportGlobPlugin is not a function
Is there anything I can do?
Thank you very much for your help!
The text was updated successfully, but these errors were encountered:
This worked in my case:
import ImportGlobPlugin from "esbuild-plugin-import-glob"; const ImportGlob = ImportGlobPlugin.default await esbuild.build({ plugins: [ImportGlob()], // ... })
Sorry, something went wrong.
No branches or pull requests
Hey there! Thanks a lot for this plugin!
I am trying to use it with an import syntax like that :
But I get this error:
TypeError: ImportGlobPlugin is not a function
Is there anything I can do?
Thank you very much for your help!
The text was updated successfully, but these errors were encountered: