figwheel-main

2021-12-14T16:48:55.049500Z

How exactly do I get :build-freq to work? I’m using webpack and can’t seem to get it to refresh when i change css (which has preprocessing done with loaders)

2021-12-14T17:01:52.050600Z

my dev.cljs.edn looks like this:

^{:watch-dirs ["src/cljs" "src/cljc"]
  :css-dirs ["src/css"]
  :open-url false}
{:main 
 :target :bundle
 :bundle-freq :always
 :bundle-cmd {:none ["npx" "webpack" "--mode=development"
                     "--entry" :output-to
                     "--output-path" :final-output-dir
                     "--output-filename" :final-output-filename
                     "--entry" "./src/css/netrunner.styl"]}}
i want my stylus css file to be converted automatically by webpack, thus the second --entry in :bundle-cmd

2021-12-14T17:28:02.051300Z

but it doesn’t seem like anything i do to the clojurescript or stylus files makes figwheel rerun the webpack command