azerum
azerum
protobuf.js version: 7.10.1 ### Please describe the expected and actual behavior If I create `Vector` message instance without setting fields, they will have default value for numbers - `0`: ```ts...
In current documentation about `createTransform()` it unclear `inboundState` and `outboundState` parameters are full redux states to be serialized/deserialized or a value of a field of the state: ```js import {...
`flagForceColor` and `hasFlag()` were not defined. I've copy-pasted them from the original source Considering that the comment on top of `src/utils/terminal.js` says "Lifted _and modified_ from: https://github.com/chalk/supports-color/blob/main/index.js (MIT)", I am...
Scripts that are run with `npx-safe` still have network access, even when `allow-net` is `false`. See [this repository](https://github.com/azerum/node-safe-repro) for the details The net access is given explicitly in the [code](https://github.com/berstend/node-safe/blob/master/src/options/packageManager.js#L139)...
### Summary # Suggestion Use [prebuildify](https://github.com/prebuild/prebuildify) instead of prebuild-install. Unlike prebuild-install, prebuildify ships all precompiled binaries with the package This simplifies deployment by a lot, since now, no matter what...
**Describe the bug** Launching Xpra from launchpad app crashes. Opening `/Applications/Xpra.app/Contents/MacOS/Launcher` by double-clicking in Finder also crashes and shows more detailed error: ``` (Xpra-Launcher:16227): Gtk-CRITICAL **: 02:26:48.768: gtk_window_add_accel_group: assertion 'GTK_IS_WINDOW...
Minimal TS code: ```ts import 'disposablestack/auto' async function main() { await using stack = new AsyncDisposableStack() stack.defer(() => { console.log('1') }) stack.defer(() => { throw new Error('2') }) } void...
The issue is that when `Promise.race()` inside `select()` completes, `select()` removes the first race of each participating channel. However, that race might have been added by another `select()`, called earlier....
I assume that `select()` should unblock with `undefined` only when the selected channel is closed However, it may unblock `undefined` even when the channel is not closed. This happens when...