rollup
Here are 1,347 public repositories matching this topic...
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(-
Updated
Mar 31, 2019 - TypeScript
-
Updated
Feb 1, 2021 - JavaScript
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
-
Updated
Feb 15, 2021 - JavaScript
-
Updated
Jan 18, 2021 - TypeScript
-
Updated
Dec 12, 2020 - JavaScript
does this plugin support in-browser rollup setups?
i can't seem to get it to work (in a client-side setup without node).
in principle, however, rollup supports client-side bundling..
-
Updated
Jan 17, 2021 - JavaScript
-
Updated
Jan 12, 2021 - TypeScript
-
Updated
Feb 19, 2021 - TypeScript
-
Updated
Aug 12, 2017 - JavaScript
-
Updated
Feb 14, 2021 - TypeScript
-
Updated
Dec 31, 2020 - TypeScript
-
Updated
Nov 3, 2020 - JavaScript
-
Updated
Jun 6, 2020 - JavaScript
-
Updated
Feb 15, 2021 - JavaScript
-
Updated
Dec 11, 2020 - JavaScript
-
Updated
Dec 27, 2020 - TypeScript
-
Updated
Jan 12, 2021 - JavaScript
-
Updated
Jul 11, 2020 - JavaScript
-
Updated
Jan 24, 2021 - TypeScript
-
Updated
Feb 14, 2021 - JavaScript
-
Updated
Dec 31, 2020 - JavaScript
Improve this page
Add a description, image, and links to the rollup topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the rollup topic, visit your repo's landing page and select "manage topics."
Current Behavior
UMD build doesn't support code-splitting and dynamic imports (rollup/rollup#3490, rollup/rollup#3491) due to Rollup current limitations, and tsdx cli don't accept the format option
amdwhen creating build configSuggested Solution
Consider support AMD module format, o