nollup icon indicating copy to clipboard operation
nollup copied to clipboard

Rollup compatible development bundler for fast rebuilds and HMR.

Results 31 nollup issues
Sort by recently updated
recently updated
newest added

If you use \r\n instead of \n in main.js, then one extra \r appears in the generated code (before generateFile() call). The buggy code is somewhere else, but this fix...

This PR removes the 100ms wait before starting compilation of changed files and instead introduces a leading+trailing edge debounce + an md5 hash. The previous behavior was to wait until...

I'm getting an infinite loop when I'm using [@rollup/plugin-url](https://github.com/rollup/plugins/tree/master/packages/url) with Nollup (but not with Rollup). - @rollup/plugin-url 5.0.1 - nollup 0.12.0 - rollup 2.19.0 Here's a demo repository : [nollup-url-infinite-loop](https://github.com/bastienrobert/nollup-url-infinite-loop)...

Example: https://github.com/derolf/nollup-bug/tree/sourcemap `npm start` Chrome: Shows folder with "nollup://" files and the project sources Safari: "nollup://" is missing

I have the following watch option: ``` watch: { clearScreen: false, include: ['src', path.resolve(__dirname, '../test/dist')], }, ``` and while it works when I change stuff in `src`, it does not...

⚠️**I haven't tested this** ⚠️ use cosmiconfig to load cli configuration instead of using a manual/custom implementation closes issue #71

Some JavaScript engines (specifically [Hermes](https://github.com/facebook/hermes) and [QuickJS](https://bellard.org/quickjs/)) don't support accessing local variables from within an `eval` function call. For example: ``` const foo = "Hello World!" eval('console.log(foo)'); ``` Throws an...

Hi, I tried implementing a fast development loop for sapper using nollup but it seems that support for dynamic imports is not (yet?) present in nollup. A few specific observations:...

I am having a very weird. Some of the sourceURL references in my nolluped files contain a null-character at the beginning. Example: ``` //# sourceURL=commonjsHelpers.js'); ``` I was tracing the...