rollup-watch icon indicating copy to clipboard operation
rollup-watch copied to clipboard

Fast incremental rebuilds with Rollup CLI

Results 9 rollup-watch issues
Sort by recently updated
recently updated
newest added

Receiving this error while trying to use [nanoid](https://github.com/ai/nanoid), on Rollup version 0.63.4. ``` [!] Error: Could not load crypto (imported by C:\.dev\js\profiles\node_modules\nanoid\random.js): ENOENT: no such file or directory, open 'crypto'...

Such a hook would be great and useful for this scenario: call `browser-sync ...` once rollup has bundled and starts watching for changes. Don't want `browser-sync` to open the browser...

The `close` handler when `stdin` is `end`ed is not being called. Calling `resume()` on `process.stdin` will enable that handler so it will be called properly. It should 'probably' be called...

Upon upgrading to v4.0.0, my watch scripts only fire on the first change. Downgrading to v3.2.2 fixes the issue. I don't know the cause of the issue & I will...

Use case: not sure if watch picked up my changes or not - the current console output makes it tricky to know if watch actually compiled. Probably more of a...

See https://github.com/rollup/rollup/issues/1112 – if we saved a JSON representation of the bundle to disk, restarting could be a bit quicker

I have config options that look like this: ```javascript { format: 'iife', plugins: [ babel({ babelrc: false, exclude: ['node_modules/**', 'bower_components/**'], presets: [ [ 'es2015', { modules: false } ], 'stage-0',...

When using rollup-watch directly, without the CLI (which I am doing because I need events to fire in response to build events), errors raised in plugins appear to halt the...

Hello! TL;DR: Could rollup-watch use stdout when logging basic info on watch/bundles and only stderr when an actual build error occurs? I'm running "rollup -w -c" with a child_process.spawn and...