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
Modules / functions reference(import) specific functionality instead of using indexes.
When running the build for modeling, the following error is published by rollup.
(!) Circular dependency src/primitives/index.js -> src/primitives/torus.js -> src/operations/extrusions/index.js -> src/operations/extrusions/extrudeRectangular.js -> src/operations/extrusions/extrudeRectangularPath2.js -> src/operations/expansions/index.js -> src/operations/expansions/expand.js -> src/operations/expansions/expandGeom3.js -> src/operations/expansions/expandShell.js -> src/primitives/index.js
The text was updated successfully, but these errors were encountered:
In general, imports of named functions should be importing from a file, not from an index. This eliminates extra imports, and circular dependencies.
In general, import directly from files if possible. Don't use indexes.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Expected Behavior
Modules / functions reference(import) specific functionality instead of using indexes.
Actual Behavior
When running the build for modeling, the following error is published by rollup.
Steps to Reproduce the Problem
Specifications
The text was updated successfully, but these errors were encountered: