kumavis

Results 250 comments of kumavis

eg `@ethereumjs/tx` only provides a "main" which points to the cjs build https://npmfs.com/package/@ethereumjs/tx/3.3.0/package.json#L16

for comparing 4byte collisions, preferring the one with the simplest signature (shortest name, fewest arguments) is a decent heuristic. tho not exactly sure how best to unify those two dimensions...

`[email protected]` only declares `react-dom` under `peerDependenciesMeta` and `devDependencies` :angry-fox:

gangs all here [devDependencies](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#devdependencies) [peerDependencies](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#peerdependencies) [peerDependenciesMeta](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#peerdependenciesmeta) [bundleDependencies](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#bundledependencies) [optionalDependencies](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#optionaldependencies)

luxon assigns to `toLocaleString` on an obj :crying_cat_face: https://npmfs.com/package/luxon/1.24.1/build/cjs-browser/luxon.js#L7081 however they are using class syntax in their src https://npmfs.com/package/luxon/1.26.0/src/datetime.js#L1503 so likely a result of using babel https://github.com/moment/luxon/blob/91c5f87e7eed66f09165419455f47809990bd4f8/tasks/build.js#L4 and could be...

`@formatjs/intl-utils` src also has the same `export hasOwnProperty` that ends up as a conflicting `exports.hasOwnProperty` assignment. may be `tsc` performing the esm->cjs transform

@AidenRourke is this only react or some additional react packages [heres what directly uses `@wry/context`](https://www.npmjs.com/browse/depended/@wry/context) was not familiar with wry :eyes: https://github.com/benjamn/wryware > A collection of packages that are probably...

@AidenRourke this global pollution should gracefully fail if you run lockdown before your dependencies that include `@wry/context`

> stock create react app lots of stuff in a stock CRA thanks for the report

with `overideTaming: 'min'` ``` [Error: boom at file:///home/xyz/Development/endo/packages/ses/abc.js:10:13 at ModuleJob.run (internal/modules/esm/module_job.js:170:25) at async Loader.import (internal/modules/esm/loader.js:178:24) at async Object.loadESM (internal/process/esm_loader.js:68:5)] ``` with `overideTaming: 'moderate'`**(default)** ``` {} ``` with `overideTaming: 'severe'` ```...