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
Hi, when trying to bundle rimraf using Rollup or similar tools, there are warnings like these:
(!) Circular dependency node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/mjs/index.js -> node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/mjs/opt-arg.js -> node_modules/.pnpm/rimraf@5.0.1/node_modules/rimraf/dist/mjs/index.js
This happens because of these imports (opt-arg imports things from index and index imports opt-args):
rimraf/src/opt-arg.ts
Lines 2 to 7 in bfda548
Haven't got any issue with this so far, but I wonder if it would be better to move the common stuff to other file?
The text was updated successfully, but these errors were encountered:
Bump
Sorry, something went wrong.
92a4e2c
No branches or pull requests
Hi, when trying to bundle rimraf using Rollup or similar tools, there are warnings like these:
This happens because of these imports (opt-arg imports things from index and index imports opt-args):
rimraf/src/opt-arg.ts
Lines 2 to 7 in bfda548
Haven't got any issue with this so far, but I wonder if it would be better to move the common stuff to other file?
The text was updated successfully, but these errors were encountered: