An syntax error in a less file crash the meteor process

An syntax error in a less file crash the meteor process.
Had anyone else had this happen ?

=> Started proxy.

/home/mick/.meteor/packages/meteor-tool/.1.8.1.4ie9oe.sh0wq++os.linux.x86_64+web.browser+web.browser.legacy+web.cordova/mt-os.linux.x86_64/dev_bundle/lib/node_modules/fibers/fibers.js:90
					return fn.apply(this, arguments);
					          ^
[object Object]

Process finished with exit code 1

This sounds similar to something I ran into with the stylus compiler:

It seems to happen when the styles imported in javascript, meaning a JS wrapper file needs to be created by the compiler, but if the compilation fails, there’s no file to wrap and the whole thing throws.

Normally you get the compilation error immediately, but if you are using lazy loaded packages and dynamic imports, it loses the error in the extra layers of wrappers and indirection required.