rollup-watch

Watch files for changes and perform incremental rebuilds with Rollup

rollup-watch functionality is now included in Rollup itself
Last updated 9 years ago by rich_harris .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ npm install rollup-watch 
SYNC missed versions from official npm registry.

rollup-watch

This module is used by the Rollup command line interface to enable automatic incremental rebuilds.

Install it to your project like so...

npm install --save-dev rollup-watch

...then invoke it by adding the --watch flag (or -w) to the command that starts Rollup. In this example, npm run dev will create your bundle then recreate it whenever its sources change:

// package.json
{
  // ...
  "scripts": {
    "build": "rollup -c",
    "dev": "rollup -c -w"
  }
}

Options

You can specify watch options in your rollup.config.js file:

// rollup.config.js
export default {
  entry: 'src/main.js',
  ...,
  watch: {
    chokidar: {
      // if the chokidar option is given, rollup-watch will
      // use it instead of fs.watch. You will need to install
      // chokidar separately.
      //
      // this options object is passed to chokidar. if you
      // don't have any options, just pass `chokidar: true`
    },

    // include and exclude govern which files to watch. by
    // default, all dependencies will be watched
    exclude: ['node_modules/**']
  }
};

LICENSE

MIT

Current Tags

  • 4.3.1                                ...           latest (7 years ago)

18 Versions

  • 4.3.1 [deprecated]           ...           7 years ago
  • 4.3.0 [deprecated]           ...           7 years ago
  • 4.2.0 [deprecated]           ...           7 years ago
  • 4.1.0 [deprecated]           ...           7 years ago
  • 4.0.0 [deprecated]           ...           8 years ago
  • 3.2.2 [deprecated]           ...           8 years ago
  • 3.2.1 [deprecated]           ...           8 years ago
  • 3.2.0 [deprecated]           ...           8 years ago
  • 3.1.0 [deprecated]           ...           8 years ago
  • 3.0.0 [deprecated]           ...           8 years ago
  • 2.5.0 [deprecated]           ...           8 years ago
  • 2.4.0 [deprecated]           ...           9 years ago
  • 2.3.0 [deprecated]           ...           9 years ago
  • 2.2.0 [deprecated]           ...           9 years ago
  • 2.1.1 [deprecated]           ...           9 years ago
  • 2.1.0 [deprecated]           ...           9 years ago
  • 2.0.0 [deprecated]           ...           9 years ago
  • 1.0.0 [deprecated]           ...           9 years ago
Maintainers (1)
Downloads
Total 19
Today 0
This Week 0
This Month 18
Last Day 0
Last Week 18
Last Month 0
Dependencies (1)
Dev Dependencies (5)

© 2010 - cnpmjs.org x YWFE | Home | YWFE