Dobes Vandermeer
Dobes Vandermeer
It would be nice if `@extends` could be used with `@typedef`, for example: ``` /** * @typedef {Object} A * @prop {string} a */ /** * @typedef {Object} B *...
TypeScript best practice is to use `interface` to define these kinds of types, but this generator output `type Xxx = { ... }` instead.
This changes the debounce timeout to apply globally rather than per-file. This fixes an issue where if various different files were being changed, the process would restart even though the...
### Problem When running a build, the app restarts over and over even though we set a debounce value of 10 seconds ### Suspected cause Looking at the code, it...
When using a browser process stub, it might not have `process.versions.node` set even if `process` is set. This makes the `identity-obj-proxy` work in those environments. Fixes https://github.com/keyz/identity-obj-proxy/issues/16
We are simulating `process` in the browser using https://github.com/defunctzombie/node-process/blob/master/browser.js . It doesn't have `process.versions.node` in it, so this check over here gives an error: https://github.com/keyz/identity-obj-proxy/blob/master/src/index.js#L10 It would be nice if...
When I have a dependency like: ``` "i18next-phrase-in-context-editor-post-processor": "patch:[email protected]#./patches/i18next-phrase-in-context-editor-post-processor+1.3.0.patch", ``` I can't have multiple dependencies on that package in different workspaces as the path to the patch could be different....
You can watch everything by passing no arguments to `npm-watch`, or watch just one script by giving it as a command line argument. `npm-watch` has a certain amount of fixed...
It would be nice to be able to specify the signal argument to nodemon, e.g. to set `SIGTERM` instead of the default `SIGUSR1`.
There's a piece of code: ``` this.stream(pathname, files, new(buffer.Buffer)(stat.size), res, function (e, buffer) { if (e) { return finish(500, {}) } exports.store[key] = { stat: stat, buffer: buffer, timestamp: Date.now()...