Aaron Dai
Aaron Dai
So the breadcrumb at the bottom of the screen is great for knowing the path of the current file, however it'd be nice to be able to see its position...
thanks for implementing the `inspect` feature @jfairbank, very useful!
Hi @zindel thanks for the reply! I think you're correct that (1) and (2) are preventing node environment from working. Not necessarily (3) though since the application might need different...
@zindel I was looking at the source tree of the `parcel bundler` and found some integration test cases that might just serve as SSCCE for this: - [fs-alias](https://github.com/parcel-bundler/parcel/tree/master/test/integration/fs-alias) - [fs-assign-alias](https://github.com/parcel-bundler/parcel/tree/master/test/integration/fs-assign-alias)...
ohhh sorry about the typo. I mean the real issue is here: at index.js: module.exports = require('./lib/handlers'); so the handlers is exposed, however, in handlers.js: module.exports = { createClientHandler: createClientHandler,...
Is this still the best workaround in absence of this feature? ```reason module Animal { type t; val name: () => string; } module Mammal { type t; } external...