Arlen Beiler

Results 235 comments of Arlen Beiler

@Jermolene there is pre-existing undefined behavior if a truthy value is returned by an asynchronous command. Specifically, in asynchronous mode, if a truthy value is returned, the callback is called...

I think most likely we need to remove the code that checks the returned value from the asynchronous branch. The callback should be the only thing considered. However, this would...

Using the list mechanism for the routing would be highly useful, but that's a separate issue I guess. I'll investigate that part when I have time.

Wow, I didn't know that. That's actually a really good idea and should have some very practical implications for TW Cloud. I like the idea as I've also been trying...

So I spent a few hours playing with the idea, and here is the result: https://github.com/Jermolene/TiddlyWiki5/compare/master...Arlen22:compile-modules You can try it out by running `node tiddlywiki.js editions/server --listen`. I haven't tried...

Per Jeremy's comment about this being a feature not a bug, I guess not.

My bad, I did not properly understand what this was when I closed this. So Jeremy did not say this was a feature. It is still a problem, however the...

My esbuild config ```js return await esbuild.context({ entryPoints: { main: resolve(rootdir, 'src/main.tsx'), polyfill: resolve(rootdir, 'polyfill.ts'), }, bundle: true, target: 'ES2022', platform: 'browser', jsx: 'automatic', outdir: publicdir, sourcemap: true, metafile: true,...

A cleaner log of the same errors ``` client/node_modules/levelup/lib/levelup.js:2:23: ERROR: Could not resolve "util" client/node_modules/levelup/lib/levelup.js:9:21: ERROR: Could not resolve "assert" client/node_modules/sublevel-pouchdb/node_modules/readable-stream/lib/_stream_readable.js:43:21: ERROR: Could not resolve "stream" client/node_modules/sublevel-pouchdb/node_modules/readable-stream/lib/_stream_writable.js:40:21: ERROR: Could not...

@saqimtiaz So what would be the scenario where you would want to save a system tiddler back to the server but not have other clients see that change until they...