Dmitrii Kanatnikov
Dmitrii Kanatnikov
Hi! I make some changes in `package.json` file, add [exports field](https://nodejs.org/dist/latest-v12.x/docs/api/esm.html#esm_package_entry_points) but `patch-package` doesn't see any changes in it
#### What problem are you trying to solve? speed improvement #### Describe the feature use new http/1.1 client https://github.com/nodejs/undici, which is faster than builtin `http` original tweet - https://twitter.com/matteocollina/status/1298148085210775553 ####...
```ts type Tail = ((...args: T) => any) extends ((_: any, ...args: infer P) => any) ? P : []; Tail // [2, 3] ``` ## Upvote & Fund -...
Hi there! Our common pattern is to write template in `index.tsx` (or `view.tsx`) and styles in `styles.tsx`. So the most common component dir structure looks like: client/components/AwesomeComponent: - index.tsx -...
### Description Native ES modules were landed in [[email protected]](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V12.md#2019-07-23-version-1270-current-targos) (see [proposal-pkg-exports](https://github.com/jkrems/proposal-pkg-exports/)). I created [small repo](https://github.com/rifler/node-esm-example/) with interested for me packages like express, lodash, redux, redux-saga, etc - and try to...
__Feature to document__ [Doc says](https://webpack.js.org/configuration/optimization/#optimizationmoduleids): ``` To override the default behaviour set optimization.moduleIds to false and use the webpack.ids.DeterministicModuleIdsPlugin ``` But I can't find any description of this plugins __Author(s)__...
hi! for some reasons we must use `transform: translateX(xx);` on some wrapper element in our project, so degradation to `position: fixed;` [doesn't work](http://stackoverflow.com/questions/15194313/transform3d-not-working-with-position-fixed-children/15256339#15256339). Can you make option to move `sticky-wrap`...