-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
The entry point C:\\Users\\...\\node_modules\\...\\index.ts
cannot be marked as external
#42
Comments
🎉 This issue has been resolved in version 4.0.4 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This is not fixed in 4.0.4 (#43) The cause was not the Windows path, but that the file is marked as external although it is the filepath if it is located in node_modules. It worked perfectly in 4.0.2 and below. |
🎉 This issue has been resolved in version 4.1.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This should be fixed, now it's controlled by |
I can confirm that the problem is fixed in 4.1.0. Thanks for the great work! 💯 |
Since
^4.0.3
it is no longer possible to bundle files from the node_modules. This can happen because the path is marked as external byargs.path.match(PATH_NODE_MODULES_RE)
, even if it has been declared as non-external with theexternal
option.I use the default configuration:
The text was updated successfully, but these errors were encountered: