Slava

Results 181 comments of Slava
trafficstars

Published as `@ton.js/[email protected]` for testing and as a hotfix.

The only way to work around this that I've found so far is to use [babel-plugin-transform-remove-imports](https://github.com/uiwjs/babel-plugin-transform-remove-imports) plugin: ```javascript [ 'babel-plugin-transform-remove-imports', { test: /^regenerator-runtime\/runtime/, }, ], ```

@nicolo-ribaudo I can't get into much details right now, but we are working in complex environment with a lot of library code, end-user applications and dedicated service for polyfills and...

@JMarkoski you should mention that this would lead to a less efficient bundles due to the addition of extraneous polyfills, that are not actually used by the library. However, it...

> I'm planning to publish the package on NPM this coming weekend. That was a very long weekend... 😅

Hello! Thank you for this great tool! However, my command line looks very ugly, it doesn't "fit" into `package.json` and is unreadable: `concurrently --names database,build,run --prefix '[{name}] ({time})' --prefix-colors cyan,yellow,green...

Hello! Thank you for this great tool. However, I'm having the same issue. I'm trying to build TypeScript Node.js library with esbuild (I was using webpack/rollup before), but the way...

An extremely useful feature when working with discriminated types. Actually, I use `MergeExclusive` mostly when I have more than two types.

It can be converted to an arbitrary argument type like this: ```ts export type MergeExclusiveMultiple = ( T extends [infer U, ...infer R] ? MergeExclusive : never ); // Use...

_Okay, the fact that it's closing is caused by the script stopping execution. Don't know why the library is not keeping the process running, but this is yet another story._...