Eugene
Eugene
Somehow this is caused by `react-refresh-webpack-plugin`. If I disable it, the app works as expected for me `env FAST_REFRESH=false npm start`
@pmmmwh is correct - the issue is way upstream from CRA or react-refresh, and it has been fixed in Node at https://github.com/nodejs/node/commit/c1442ec9c45cecf156fb32ad2174c4aceef37de7 (I confirmed by compiling from that commit and...
@MasatoshiTada This might be related https://github.com/nodejs/node/issues/37061
@Harshadcse You are using Node `v14` - the easiest way to make this work is to upgrade to a current release `v16`.
Thanks for the thought! I thought this library would be used once to generate files from relatively small SVG fonts. The advantage of buffer inputs seems a bit unclear for...
Ah I see how this could be limiting. I'll try to add that feature in shortly. On a related topic, here are undocumented examples of how I did the same...
As a workaround, I re-inject any missing padding before passing the text to this library, like so - ```js let b64 = "AAAAAAA"; // base64-encoded text that could be missing...
Yep, all `*.d.ts` files are not included in the `dist` bundle (see https://www.unpkg.com/browse/@cubejs-backend/[email protected]/dist/src/types/) and only `enums.ts` gets released. Typescript does not copy `.d.ts` files during the build process because it...
+1. This is especially useful/necessary for Mac-based developers where it's common to continuously download & run untrusted code (e.g. `node_modules` for Node.js) as the current user, so any 3rd-party code...
FWIW, I get full types when I declare my Module worker this way - ```ts // worker.ts const workerHandler: ExportedHandler = { async fetch(req, env, ctx) { return new Response("hello");...