├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appveyor.yml ├── package.json ├── rollup.config.js ├── src ├── index.js └── utils │ └── sequence.js └── test ├── samples ├── basic │ └── main.js └── ignored │ ├── bar.js │ ├── foo.js │ └── main.js └── test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | dist 4 | test/_tmp 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/appveyor.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/sequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/src/utils/sequence.js -------------------------------------------------------------------------------- /test/samples/basic/main.js: -------------------------------------------------------------------------------- 1 | export default 42; 2 | -------------------------------------------------------------------------------- /test/samples/ignored/bar.js: -------------------------------------------------------------------------------- 1 | export default 'bar-1'; -------------------------------------------------------------------------------- /test/samples/ignored/foo.js: -------------------------------------------------------------------------------- 1 | export default 'foo-1'; -------------------------------------------------------------------------------- /test/samples/ignored/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/test/samples/ignored/main.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollup/rollup-watch/HEAD/test/test.js --------------------------------------------------------------------------------