The Wayback Machine - https://web.archive.org/web/20210318092704/https://github.com/topics/rollup
Skip to content
#

rollup

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

tsdx
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(
marvinhagemeister
marvinhagemeister commented Oct 20, 2020

Just came across one of our client projects, which uses their own npm registry instead of the official one. By making it configurable via cli-flag like --registry https://my-registry.com we could support that use case.

I'm wondering if this is how we can make our npm plugin testable too! We could spin up a fake registry since we only ever download the tarball and use the --registry flag in

Improve this page

Add a description, image, and links to the rollup 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 rollup topic, visit your repo's landing page and select "manage topics."

Learn more