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
For some reason reloading only works if I change Main.purs. Having this project structure
Main.purs
src/ + | +-----+Main.purs | +-----+Deps/ | +-----+Module1.purs | +-----+Module2.purs
recompilation/reloading is not being triggered when I change Deps.Module1.purs or Deps.Module2.purs, but everything works fine when I change Main.purs
Deps.Module1.purs
Deps.Module2.purs
my options:
{ test: /\.purs$/, use: [ { loader: 'purs-loader', options: { src: [ "src/**/*.purs" ], spago: true, watch: isWebpackDevServer || isWatch, pscIde: false, output: 'output', bundle: true, bundleOutput: 'dist/bundle.js' } } ] }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
For some reason reloading only works if I change
Main.purs
. Having this project structurerecompilation/reloading is not being triggered when I change
Deps.Module1.purs
orDeps.Module2.purs
, but everything works fine when I changeMain.purs
my options:
The text was updated successfully, but these errors were encountered: