dirac

Dirac v1.7.2 is out: https://github.com/binaryage/dirac/releases/tag/v1.7.2
Casey 2018-05-05T12:06:25.000042Z

small update on the source maps in node.js

Casey 2018-05-05T12:07:06.000028Z

I got the source map inlining patch to the compiler to apply, it was rather easy. and it works.

Casey 2018-05-05T12:07:22.000052Z

but for node.js it doesn't solve the source maps not loading issue

Casey 2018-05-05T12:08:09.000093Z

it's not a cljs/dirac thing at this point.. its definitly something weird about devtools and node

Casey 2018-05-05T12:08:39.000036Z

AFAICT there seems to be 2 "dev tools", the first is the one that loads with <chrome-devtools://devtools/bundled/inspector.html?experiments=false&amp;v8only=true&amp;ws=>

Casey 2018-05-05T12:09:18.000071Z

The second is loaded by the "Open dedicated DevTools for Node" link in <chrome://inspect>

Casey 2018-05-05T12:09:38.000092Z

This second, node.js specific one, actually loads source maps when attaching to a remote node process

Casey 2018-05-05T12:09:55.000072Z

The first one (which is the one dirac uses/is based on) doesn't load source maps, no matter if they are inline or absolute urls

Casey 2018-05-05T12:14:50.000056Z

Ah, and this second one lives at <chrome-devtools://devtools/bundled/node_app.html> I wonder if its possible to make Dirac use that? Not sure how dirac actually works under the hood.