-
Notifications
You must be signed in to change notification settings - Fork 115
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
Add dependency message #233
Comments
Any updates? How I can help with it? |
First thing to do is to start again with v7, since nobody helped on the huge concurrency issue related to v8. People said they wanted to help (see #210) but I didn't see any PR :) Maybe I can handle the revert to v7... |
Yes it'd be great to switch back to v7 and narrow down the feature set a bit (like |
@MoOx you should give a direct order to people who want to help ;). Like “Could you fix this issue? What is ETA?” |
So you need a PR for this issue? In |
It would work the same way for CLI usage aswell result.messages
.filter((msg) => msg.type === 'dependency' ? msg : '')
.forEach((dep) => chokidar.add(dep.file)) |
@MoOx so what help do you need to fix this issue? PR to |
Had an issue today with HMR not working when using postcss-import 8.1.0 with postcss-loader 1.0.0. The fix suggested by @ai in webpack-contrib/postcss-loader#122 fixed my problem. Looks like the issue discussed here might be the cause? |
When someone familiar with the codebase can provide a short intro to what to
I, like mentioned in other issue before, can start working on it , but starting point, where to /wht first at best would be helpful and highly appreciated :) |
See #210 (comment) |
@RyanZim I'm neither @ai nor @MoOx but I( think it depends on your time and if your are familiar enough with the v8 code base to fix v8 related issues. If you not already aware, there is discussion going on here aswell. TLDR; |
I'm strapped for time ATM, but wouldn't mind helping/maintaining |
@ai For postcss-cli, we need: result.messages.push({
type: 'dependency',
file: absoluteFilePath,
parent: fileContainingTheImport
}) Does that sound good to you? |
@RyanZim sounds good (only fix a Do you need to add |
Not ATM. |
@ai Then again, that might be a good idea to add Perhaps we should make a |
@RyanZim we could add it to Plugin and Runner guideline. But first I want to stabilize it :D. |
@RyanZim I create a issues in other plugins about |
PR done: #241 |
New
postcss-loader
will supportdependency
message to notify webpack about imports. So we need to add few lines on every import:@MoOx @TrySound write me if you need any help with it.
The text was updated successfully, but these errors were encountered: