April Arcus
April Arcus
I was concerned that some of the example code in `README.md` uses `this.setState()` as though it is a synchronous operation. This PR updates the sample code to use the second...
The packages `workbox-cacheable-response`, `workbox-core`, `workbox-expiration`, and `workbox-strategies` fail under jest with [--experimental-vm-modules](https://jestjs.io/docs/ecmascript-modules) with this error: ``` Jest encountered an unexpected token This usually means that you are trying to import...
(1) Suppose the final `` component unmounts from the page. What is the expected behavior? Will the `` from the HTML template be restored? (2) Suppose a second `React.render()` context...
If webpack-cli is terminated by SIGINT while writing to the filesystem cache (e.g. in watch mode during an incremental rebuild of a project with large external source maps), the filesystem...
with `"lodash/import-scope": ["error", "method"]`, named typescript type imports from lodash produce false positive errors: ``` import type { DebouncedFunc } from 'lodash' // error ```
TypeScript does not follow semantic versioning; 4.0 was not a breaking change from 3.9. The version range in this project's package.json means that projects running on TypeScript 4.x cannot de-duplicate...
Proposal: a type which excludes all properties assignable to its parameter. This is useful for enforcing exhaustive destructuring in higher-order-components: ```typescript interface ExtraProps { store: StoreType theme: ThemeType } type...
Follow-up to @stof's suggestion at https://github.com/twbs/bootstrap-sass/issues/1226#issuecomment-1056845983. Adopts the https://github.com/twbs/rfs library to handle division in a forward- and backward- compatible fashion in both libsass and dart-sass. Reverts `devDependency` pin to `node-sass`....
"Last _n_ versions" refers to the last _n_ versions as of a "now" which corresponds to the moment the build is initiated. However, once my team cuts a release branch,...
Currently, `$ngReduxProvider.provideStore(store)` leaves a dangling subscription on `store` when the AngularJS app is torn down by `$rootScope.$destroy()`. The listener, and the private `ngReduxStore` referenced within it, will then be leaked.