Maxime Mangel
Maxime Mangel
@nojaf It looks like the old setting is a subset of the one I proposed. So for me, I am in favour of replacing them we what I proposed but...
Oh my bad, I missed that difference. Now I questioning my whole life as I always though I was using `stroustrup`, let's go with `aglined` as you did in the...
While working on the new Fable infrastructure I discovered that `--fableLib` is used for development of Fable and probably can't be made a flag unless another hidden flag is provided....
Got it. I suppose using `_fs.py` suffix would not conflict with Python naming and still allow for file nesting to work.
> But I suppose it will still not be grouped like above? It will in VSCode, you can configure the rule for nesting the file, in this case using the...
@smoothdeveloper all the modules will have _fs suffix for python consumers. Not necessarily, if you provide `--outDir` or `-e py` then the generated files with have `.py` extension. This is...
Thank you for opening this issue and taking time to investigate on this feature. It can seems obvious, but for such a feature to be included in Fable, it is...
Here is a summary of our discussion *@nojaf @jwosty Please feel free to complete or correct me* ## NuGet integration We would not go with Option B because currently, Fable...
Problem with option B, is that it requires new TFM for each .NET release and makes documentation and authoring library more complex for author libraries. For example, I am using...
Generated code should probably have some parentheses: ```js export const x = () => { ({ DoNothing: () => { }, Test: () => { toConsole(printf("Test")); } }).Test(); }; ```