dynst
dynst
https://bundlephobia.com/package/[email protected] This dependency is currently 91.1% of the bundle size. Shedding that would be an enormous win.
Can either removing encryption or just doing #1031 #1585 be on the roadmap for 0.35? The two libsodium packages together are more than 37% of the bundled size of stargate....
It's from Node v12 https://nodejs.org/en/blog/release/v12.7.0 so almost everything should support it by now. Webpack 5 added support in 2020. https://webpack.js.org/blog/2020-10-10-webpack-5-release/ so version 4 didn't have it. Rollup definitely has it....
> Technically, switching the internals of Mocha from CJS to ESM _shouldn't_ be a breaking change. `await import()` is possible in CommonJS, but `require()` doesn't exist in ESM. Won't the...
Webpack 5 is probably mature 4 years later now, right?
That's a warning about a (dynamic) `require()` call to a native Node.js module, which would break if executed in a browser and there's no polyfill, but that call never even...
They're stylistic changes, but in the long term, they're also potentially useful, because these are the same changes to the code that would be needed to convert the library to...
Why is there a `--stream` argument that's always passed to all the tests? And why is it in the workflow config, instead of in the root-level package.json, or individual packages'...
That does sound useful, at least when first writing the code. Added the missing unit tests to prevent potential future typos!
Was looking at replacing `karma` #1688 and [Vitest](https://www.npmjs.com/package/vitest) looked like the way to go, it's one simple tool for running all of the tests, in node and in browser. It...