Results 122 comments of Alex

@Rich-Harris As it is written in the readme in the reproduction, you need to add ```js import { createRequire } from "module"; const require = createRequire(import.meta.url); ``` to the build...

@chintan-infiniteshopping If you move all `devDependencies` to `dependencies`, this error will not occur, but the dependencies will not be bundled and they will need to be installed before running

So, https://github.com/sveltejs/kit/pull/6896 appeared and I think the problem with `Dynamic require` is solved. --- When I try to build all the dependencies, it appears: A lot of `Circular dependency: ...`...

- Use not native tables, but [datatables](https://datatables.net)/[tabulator](http://tabulator.info)/[sheetjs](https://sheetjs.com)/... (so that there is normal editing, sorting, filtering, moving, etc.) - Must have a virtual dom - Ability to swap columns and rows...

- I meant [virtual scroll](https://ru.svelte.dev/repl/eae82aab17b04420885851d58de50a2e?version=3.38.2) (large tables will hang and you need to make them virtual or choose a library where they are virtual) - It is already possible to...

Yes, json5 is what we need [REPL](https://ru.svelte.dev/repl/0cc61f28336847318d83e5ff892d45a1?version=3.50.1) - During formatting/compacting, it does stringify/parse, so all non-json is deleted. You can use minifier/beautifier for js. - You need to use a...

```js let last_toast = 0; function add_toast(...) { while (last_toast == Date.now()) {} last_toast = Date.now(); toasts.add({...}); } ```

Instead of `blocks: []`, use `blocks: [{ type: "paragraph", data: {} }]`

Use `blocks: [{ type: "paragraph", data: {} }]`

### Scenes don't work without session(): ``` >bot.command('echo', (ctx) => ctx.scene.enter('scene_id')) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'enter' of undefined ```