Yinon Burgansky
Yinon Burgansky
According to [NestJS Docs](https://docs.nestjs.com/cli/monorepo#assets): we can copy assets to the dist directory by modifying `nest-cli.json`: ``` { ... "compilerOptions": { "assets": ["**/*.cypher"], "watchAssets": true } } ```
@jasperblues yes, sounds good to me.
@ConnorGray Done, removed `write_to()`.
`str` and `repr` are usually pure functions without side effects, unlike `print` which has side effects, I think using: ```python writer.write(something) writer.write(something, repr=True) # or writer.write_repr(something) writer.write(number, use_scientific_notation=True) # support...
> I worry that the proposed approach is not user-extensible. In python `**kwargs` allow you to pass any keyword arguments without knowing them ahead of time ```python class Formatter: def...
This doesn't compile currently due to `Cannot access ambient const enums when 'isolatedModules' is enabled.ts(2748)` see https://ncjamieson.com/dont-export-const-enums/ [Seroval export Future as a const enum opened issue](https://github.com/lxsmnsyc/seroval/issues/63)
> * A: Bundled files wouldn't actually be helpful in stack trace, as the trace itself is mangled. - It is exposing the full path of the source files in...