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
How often can you reproduce it? Have
Description: AMD define doesn't work for dynamic import.
Steps to reproduce:
** * load single module * @param {string} moduleName module name or rel path as key * @returns {Promise} promise with module object */ export function loadModule( moduleName ) { /* if ( /few-button$/.test( moduleName ) ) { return Promise.resolve( FewButton ); } */ return import( moduleName ); }
define( [ '//cdn.jsdelivr.net/npm/vue/dist/vue.js', 'lib/httpVueLoader' ], ( Vue, httpVueLoader ) => { ...
In this practice, steal.js will go to a call stack which disabling define explicitly:
Error: define is not a function
Expected results:
Environment:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How often can you reproduce it?
Have
Description:
AMD define doesn't work for dynamic import.
Steps to reproduce:
In this practice, steal.js will go to a call stack which disabling define explicitly:
Error: define is not a function
.Expected results:
Environment:
The text was updated successfully, but these errors were encountered: