-
-
Notifications
You must be signed in to change notification settings - Fork 7.2k
Closed as not planned
Description
Clear and concise description of the problem
I'm writing a plugin that collects a list of all the imported sass files and writes them to a single file instead. I can't write them one by one because sass throws "variable not defined", so the transform request for the combined file has to be stalled until no other modules are waiting to be resolved.
Suggested solution
Currently I'm using server._pendingRequests
which is exactly what I was looking for, but it is a private property so really needs to be documented and exposed in a way that would be compatible with rollup. I proposed using this.pendingRequests
in rollup/rollup#4294.
Alternative
No response
Additional context
vuetifyjs/vuetify-loader#225
rollup/rollup#4294
Validations
- Follow our Code of Conduct
- Read the Contributing Guidelines.
- Read the docs.
- Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
MichaelGitArt