-
-
Notifications
You must be signed in to change notification settings - Fork 245
Allow deferring plugin execution so loaders have time to generate files #40
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
Comments
Hi :) |
Awesome, thanks, I've created a PR #44 |
Merged! I will release it as |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
We recently started using https://github.com/Jimdo/typings-for-css-modules-loader. It creates
d.ts
files forcss-modules
providing us with type checking and intellisense on css class names.The problem is that the
d.ts
files are typically generated afterfork-ts-checker-webpack-plugin
is started. It means, the plugin either throws an error that a file is missing or checks an old version ofd.ts
file.I suggest to add an async plugin hook
fork-ts-checker-service-before-start
so I can deferfork-ts-checker-webpack-plugin
start up from another plugin.If it sounds alright, I can create a PR implementing it.
I guess another option would be to add a flag
startAfterFinishModules
orstartAfterCompile
so the plugin will start type checking on compilationfinish-modules
or compilerafter-compile
The text was updated successfully, but these errors were encountered: