You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we combine a make entry and let square run multiple processes on different bundles, all but the first bundle of the bundles that share dependencies won't get triggered. E.g.
Application a.js has ../common/dep.js in a/bundle.json
Application b.js has ../common/dep.js in b/bundle.json
We see two square processes spawn, compile and watch.
Now, we change something in dep.js and save that file. What should happen is that we see two square processes get triggered, but instead we only see the square process for a.js.
The text was updated successfully, but these errors were encountered:
this is related to the amount of jobs your are letting make spawn -j2, it should be different child processes. Since square does endless loops to wait for the next write I'm wondering if it is delegated properly to all processes, or somehow one process gets in the way of the other before it is able to trigger.
When we combine a make entry and let square run multiple processes on different bundles, all but the first bundle of the bundles that share dependencies won't get triggered. E.g.
Application a.js has
../common/dep.js
ina/bundle.json
Application b.js has
../common/dep.js
inb/bundle.json
In the
Makefile
we set up:Then we run:
$ make -j2 ab.js
We see two square processes spawn, compile and watch.
Now, we change something in
dep.js
and save that file. What should happen is that we see two square processes get triggered, but instead we only see the square process fora.js
.The text was updated successfully, but these errors were encountered: