Skip to content
#

bundle

Here are 1,049 public repositories matching this topic...

symfony
valscion
valscion commented May 23, 2018

We would like to avoid confusion like we have in webpack-contrib/webpack-bundle-analyzer#185

We could document statsFilename and reportFilename options allowing the use of an absolute file path like /path/to/folder so that people would know it's supported.

Let us know in this issue if you would like to contribute to this!

gdorsi
gdorsi commented Feb 2, 2021

Hello there!

I've encountered a bug with the transpiling of the rest parameters.

Pratically the transpiler with something like this:

export function brokenArgsRest(fn, ...args) {
  return function () {
    fn(...args);
  };
}

Will treat the arguments object in the wrong way:

function brokenArgsRest(fn) {
  return function () {
    fn.apply(void 0, [].slice.call(

Improve this page

Add a description, image, and links to the bundle topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the bundle topic, visit your repo's landing page and select "manage topics."

Learn more